From 42229d03fe55c45f0ad2ba68f190f3d68a78ae79 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 7 Apr 2022 16:54:46 -0700 Subject: 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 Change-Id: Iac57026806acfb7913f40af61176322fb02b7cc1 --- chapters/comparison.adoc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'chapters/comparison.adoc') diff --git a/chapters/comparison.adoc b/chapters/comparison.adoc index 67f3506..5c27071 100644 --- a/chapters/comparison.adoc +++ b/chapters/comparison.adoc @@ -47,7 +47,9 @@ for_each(index in shape) { |Profile|Mode|in_t|out_t |Any|signed 32|int32_t|bool_t -|MI, MT|floating-point|float_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 @@ -87,7 +89,9 @@ for_each(index in shape) { |Profile|Mode|in_t|out_t |Any|signed 32|int32_t|bool_t -|MI, MT|floating-point|float_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 @@ -128,5 +132,7 @@ for_each(index in shape) { |Profile|Mode|in_t|out_t |Any|signed 32|int32_t|bool_t -|MI, MT|floating-point|float_t|bool_t +|MI, MT|fp16|fp16_t|bool_t +|MI, MT|bf16|bf16_t|bool_t +|MI, MT|fp32|fp32_t|bool_t |=== -- cgit v1.2.1