aboutsummaryrefslogtreecommitdiff
path: root/chapters/comparison.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'chapters/comparison.adoc')
-rw-r--r--chapters/comparison.adoc3
1 files changed, 0 insertions, 3 deletions
diff --git a/chapters/comparison.adoc b/chapters/comparison.adoc
index 4ef52d6..f4da361 100644
--- a/chapters/comparison.adoc
+++ b/chapters/comparison.adoc
@@ -17,7 +17,6 @@ include::{generated}/operators/EQUAL.adoc[]
[source,c++]
----
-ERROR_IF(shape != broadcast_shape(shape1, shape2));
for_each(index in shape) {
dim_t index1 = apply_broadcast(shape, shape1, index);
dim_t index2 = apply_broadcast(shape, shape2, index);
@@ -40,7 +39,6 @@ include::{generated}/operators/GREATER.adoc[]
[source,c++]
----
-ERROR_IF(shape != broadcast_shape(shape1, shape2));
for_each(index in shape) {
dim_t index1 = apply_broadcast(shape, shape1, index);
dim_t index2 = apply_broadcast(shape, shape2, index);
@@ -63,7 +61,6 @@ include::{generated}/operators/GREATER_EQUAL.adoc[]
[source,c++]
----
-ERROR_IF(shape != broadcast_shape(shape1, shape2));
for_each(index in shape) {
dim_t index1 = apply_broadcast(shape, shape1, index);
dim_t index2 = apply_broadcast(shape, shape2, index);