From b79c7d19af28899abb6b821640ea365fd27516a1 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Fri, 12 Nov 2021 15:05:46 -0800 Subject: Insert missing close bracket in ADD pseudocode Change-Id: Ifec04d98b81b351efe110d5a07259f69df4f3014 --- chapters/ewise_binary.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/chapters/ewise_binary.adoc b/chapters/ewise_binary.adoc index 4173aab..c624437 100644 --- a/chapters/ewise_binary.adoc +++ b/chapters/ewise_binary.adoc @@ -35,6 +35,7 @@ for_each(index in shape) { in_t value2 = tensor_read(input2, shape2, index2); in_t result = apply_add(value1, value2); tensor_write(output, shape, index, result); +} ---- *Supported Data Types:* -- cgit v1.2.1