From e4d6a1b99337f33cfaf343005e355ef7a68b2be9 Mon Sep 17 00:00:00 2001 From: Dominic Symes Date: Fri, 4 Nov 2022 18:00:03 +0000 Subject: Add Levels defintion Add definition of Level 1.0. Signed-off-by: Dominic Symes Change-Id: I1b34ae22396f273cc5ecdf99198fdbece6e2809c --- chapters/reduction.adoc | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'chapters/reduction.adoc') 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)); -- cgit v1.2.1