aboutsummaryrefslogtreecommitdiff
path: root/chapters/comparison.adoc
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2022-08-05 15:40:12 -0700
committerEric Kunze <eric.kunze@arm.com>2022-08-19 14:19:28 -0700
commit58098a7b1ffcf41da759f862deb753c82fe5b4b0 (patch)
tree75b61a482e23293b8af85adf6210f2d3e4e5695d /chapters/comparison.adoc
parent6361d1664c7b82ecc3afdd0eb87e96afea430f89 (diff)
downloadspecification-58098a7b1ffcf41da759f862deb753c82fe5b4b0.tar.gz
Machine parsable specification
This converts portions of the asciidoc specification into an xml document and schema. For the html and pdf outputs, the xml is converted to asciidoc files that are included into the existing specification. The xml allows future automated uses of the tosa specification while maintaining rough compatibility with the existing document. No significant functional changes are included in this change. Change-Id: I7f1f95c527638e270c157d58fcdec6a3510daea5 Signed-off-by: Eric Kunze <eric.kunze@arm.com>
Diffstat (limited to 'chapters/comparison.adoc')
-rw-r--r--chapters/comparison.adoc62
1 files changed, 3 insertions, 59 deletions
diff --git a/chapters/comparison.adoc b/chapters/comparison.adoc
index 5c27071..9bc28ad 100644
--- a/chapters/comparison.adoc
+++ b/chapters/comparison.adoc
@@ -13,15 +13,7 @@
Elementwise comparison operation
-*Arguments:*
-
-|===
-|Argument|Type|Name|Shape|Description
-
-|Input|in_t*|input1|shape1|Input tensor
-|Input|in_t*|input2|shape2|Input tensor with the same rank as input1
-|Output|out_t*|output|shape|Output tensor with broadcast shape if necessary
-|===
+include::{generated}/operators/EQUAL.adoc[]
*Operation Function:*
@@ -41,30 +33,11 @@ for_each(index in shape) {
}
----
-*Supported Data Types:*
-
-|===
-|Profile|Mode|in_t|out_t
-
-|Any|signed 32|int32_t|bool_t
-|MI, MT|fp16|fp16_t|bool_t
-|MI, MT|bf16|bf16_t|bool_t
-|MI, MT|fp32|fp32_t|bool_t
-|===
-
==== GREATER
Elementwise greater than comparison operation
-*Arguments:*
-
-|===
-|Argument|Type|Name|Shape|Description
-
-|Input|in_t*|input1|shape1|Input tensor
-|Input|in_t*|input2|shape2|Input tensor with the same rank as input1
-|Output|out_t*|output|shape|Output tensor with broadcast shape if necessary
-|===
+include::{generated}/operators/GREATER.adoc[]
*Operation Function:*
@@ -84,29 +57,11 @@ for_each(index in shape) {
}
----
-*Supported Data Types:*
-|===
-|Profile|Mode|in_t|out_t
-
-|Any|signed 32|int32_t|bool_t
-|MI, MT|fp16|fp16_t|bool_t
-|MI, MT|bf16|bf16_t|bool_t
-|MI, MT|fp32|fp32_t|bool_t
-|===
-
==== GREATER_EQUAL
Elementwise comparison operation
-*Arguments:*
-
-|===
-|Argument|Type|Name|Shape|Description
-
-|Input|in_t*|input1|shape1|Input tensor
-|Input|in_t*|input2|shape2|Input tensor with the same rank as input1
-|Output|out_t*|output|shape|Output tensor with broadcast shape if necessary
-|===
+include::{generated}/operators/GREATER_EQUAL.adoc[]
*Operation Function:*
@@ -125,14 +80,3 @@ for_each(index in shape) {
tensor_write<out_t>(output, shape, index, result);
}
----
-
-*Supported Data Types:*
-
-|===
-|Profile|Mode|in_t|out_t
-
-|Any|signed 32|int32_t|bool_t
-|MI, MT|fp16|fp16_t|bool_t
-|MI, MT|bf16|bf16_t|bool_t
-|MI, MT|fp32|fp32_t|bool_t
-|===