aboutsummaryrefslogtreecommitdiff
path: root/chapters/reduction.adoc
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2022-04-07 16:54:46 -0700
committerEric Kunze <eric.kunze@arm.com>2022-06-17 20:38:16 +0000
commit42229d03fe55c45f0ad2ba68f190f3d68a78ae79 (patch)
treefde2487db3fe2c4e8257beec9b54044fac9da931 /chapters/reduction.adoc
parentf9e5ba94f12a71f088c790f532cd62d33b8d25d0 (diff)
downloadspecification-42229d03fe55c45f0ad2ba68f190f3d68a78ae79.tar.gz
Initial work on floating-point type definition
Define operations in terms of common floating-point data types. Definitions for the data types are in the introduction. Added a section to describe status of the different profiles. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: Iac57026806acfb7913f40af61176322fb02b7cc1
Diffstat (limited to 'chapters/reduction.adoc')
-rw-r--r--chapters/reduction.adoc16
1 files changed, 12 insertions, 4 deletions
diff --git a/chapters/reduction.adoc b/chapters/reduction.adoc
index fdf30df..368d82e 100644
--- a/chapters/reduction.adoc
+++ b/chapters/reduction.adoc
@@ -136,7 +136,9 @@ for_each(index in shape1) {
|Any|signed 8|int8_t
|Any|signed 16|int16_t
|Any|signed 32|int32_t
-|MI, MT|floating-point|float_t
+|MI, MT|fp16|fp16_t
+|MI, MT|bf16|bf16_t
+|MI, MT|fp32|fp32_t
|===
==== REDUCE_MIN
@@ -179,7 +181,9 @@ for_each(index in shape1) {
|Any|signed 8|int8_t
|Any|signed 16|int16_t
|Any|signed 32|int32_t
-|MI, MT|floating-point|float_t
+|MI, MT|fp16|fp16_t
+|MI, MT|bf16|bf16_t
+|MI, MT|fp32|fp32_t
|===
==== REDUCE_PRODUCT
@@ -220,7 +224,9 @@ for_each(index in shape1) {
|===
|Profile|Mode|in_out_t
-|MI, MT|floating-point|float_t
+|MI, MT|fp16|fp16_t
+|MI, MT|bf16|bf16_t
+|MI, MT|fp32|fp32_t
|===
==== REDUCE_SUM
@@ -262,6 +268,8 @@ for_each(index in shape1) {
|Profile|Mode|in_out_t
|Any|signed 32|int32_t
-|MI, MT|floating-point|float_t
+|MI, MT|fp16|fp16_t
+|MI, MT|bf16|bf16_t
+|MI, MT|fp32|fp32_t
|===