aboutsummaryrefslogtreecommitdiff
path: root/chapters/reduction.adoc
diff options
context:
space:
mode:
authorDominic Symes <dominic.symes@arm.com>2022-11-04 18:00:03 +0000
committerEric Kunze <eric.kunze@arm.com>2022-12-05 19:18:51 +0000
commite4d6a1b99337f33cfaf343005e355ef7a68b2be9 (patch)
tree32ae772f418c53ad90e7f069caf59f51dfb7b6f0 /chapters/reduction.adoc
parent1cf84e95f85d510f55720fb98694530923ba9a1c (diff)
downloadspecification-e4d6a1b99337f33cfaf343005e355ef7a68b2be9.tar.gz
Add Levels defintion
Add definition of Level 1.0. Signed-off-by: Dominic Symes <dominic.symes@arm.com> Change-Id: I1b34ae22396f273cc5ecdf99198fdbece6e2809c
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));