aboutsummaryrefslogtreecommitdiff
path: root/chapters/reduction.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'chapters/reduction.adoc')
-rw-r--r--chapters/reduction.adoc12
1 files changed, 0 insertions, 12 deletions
diff --git a/chapters/reduction.adoc b/chapters/reduction.adoc
index 3746460..713404c 100644
--- a/chapters/reduction.adoc
+++ b/chapters/reduction.adoc
@@ -15,8 +15,6 @@ Reduce a tensor along the given axis with a logical AND operation
include::{generated}/operators/REDUCE_ALL.adoc[]
-*Operation Function:*
-
[source,c]
----
ERROR_IF(axis < 0 || axis >= rank(shape1));
@@ -42,8 +40,6 @@ Reduce a tensor along the given axis with a logical OR operation
include::{generated}/operators/REDUCE_ANY.adoc[]
-*Operation Function:*
-
[source,c]
----
ERROR_IF(axis < 0 || axis >= rank(shape1));
@@ -69,8 +65,6 @@ Reduce a tensor along the given axis with a maximum operation
include::{generated}/operators/REDUCE_MAX.adoc[]
-*Operation Function:*
-
[source,c]
----
ERROR_IF(axis < 0 || axis >= rank(shape1));
@@ -94,8 +88,6 @@ Reduce a tensor along the given axis with a minimum operation
include::{generated}/operators/REDUCE_MIN.adoc[]
-*Operation Function:*
-
[source,c]
----
ERROR_IF(axis < 0 || axis >= rank(shape1));
@@ -119,8 +111,6 @@ Reduce a tensor along the given axis by computing the product of the axis.
include::{generated}/operators/REDUCE_PRODUCT.adoc[]
-*Operation Function:*
-
[source,c]
----
ERROR_IF(axis < 0 || axis >= rank(shape1));
@@ -144,8 +134,6 @@ Reduce a tensor along the given axis by computing the sum of the axis.
include::{generated}/operators/REDUCE_SUM.adoc[]
-*Operation Function:*
-
[source,c]
----
ERROR_IF(axis < 0 || axis >= rank(shape1));