aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2021-11-12 15:02:19 -0800
committerEric Kunze <eric.kunze@arm.com>2021-11-12 15:02:19 -0800
commit63e7937f5f6d64f377a4276c844dc7bfce4e0ea3 (patch)
tree1bdd3ab3ed2a423dc14654ac15f4038d87499db4
parentd15d02dda92d301c88f2b59e94e2a65bff3cc50b (diff)
downloadspecification-63e7937f5f6d64f377a4276c844dc7bfce4e0ea3.tar.gz
Fix spelling mistake in SELECT
shpae3->shape3 Change-Id: I981edd50409cb5bac0fd8793a1bf578f20cc0574
-rw-r--r--chapters/ewise_ternary.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapters/ewise_ternary.adoc b/chapters/ewise_ternary.adoc
index c6babbc..751c093 100644
--- a/chapters/ewise_ternary.adoc
+++ b/chapters/ewise_ternary.adoc
@@ -31,7 +31,7 @@ Elementwise select of the output based on a condition.
for_each(index in shape) {
index1 = apply_broadcast(shape, shape1, index);
index2 = apply_broadcast(shape, shape2, index);
- index3 = apply_broadcast(shape, shpae3, index);
+ index3 = apply_broadcast(shape, shape3, index);
cmp_t value1 = tensor_read<cmp_t>(input1, shape1, index1);
in_t value2 = tensor_read<in_t>(input2, shape2, index2);
in_t value3 = tensor_read<in_t>(input3, shape3, index3);