aboutsummaryrefslogtreecommitdiff
path: root/chapters/data_nodes.adoc
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2021-02-17 19:23:39 -0800
committerEric Kunze <eric.kunze@arm.com>2021-03-08 10:06:31 -0800
commit1e9ba65f263a15f1f9cf9b9484047ea51237187a (patch)
treebf1eb0f43d24b207612e6e8a87799a211ba155a4 /chapters/data_nodes.adoc
parent54ff87d31637c97958ac49e40312e9b6de0a8f1a (diff)
downloadspecification-1e9ba65f263a15f1f9cf9b9484047ea51237187a.tar.gz
Consistency cleanup
Attempt to get consistent across the pseudocode. Change the data types to all be intN_t instead of some cases of intN. Use float_t as the general floating point data type. Be consistent on use of the term "floating-point" Move general pseudocode helpers to their own section. Change-Id: Ie77666cd3ee438c71f39c62b9c424fe687b0bb51 Signed-off-by: Eric Kunze <eric.kunze@arm.com>
Diffstat (limited to 'chapters/data_nodes.adoc')
-rw-r--r--chapters/data_nodes.adoc42
1 files changed, 21 insertions, 21 deletions
diff --git a/chapters/data_nodes.adoc b/chapters/data_nodes.adoc
index 87b0b9b..7afa984 100644
--- a/chapters/data_nodes.adoc
+++ b/chapters/data_nodes.adoc
@@ -27,11 +27,11 @@ A node containing constant data for use as the input to an operation. May hold d
|===
|Profile|Mode|out_t
-|Any|Boolean|bool
-|Any|signed 8|int8
-|Any|signed 16|int16
-|Any|signed 32|int32
-|MI, MT|float|float
+|Any|Boolean|bool_t
+|Any|signed 8|int8_t
+|Any|signed 16|int16_t
+|Any|signed 32|int32_t
+|MI, MT|floating-point|float_t
|===
==== IDENTITY
@@ -52,11 +52,11 @@ Returns a tensor with the same shape, type, and contents as the input.
|===
|Profile|Mode|in_t
-|Any|Boolean|bool
-|Any|signed 8|int8
-|Any|signed 16|int16
-|Any|signed 32|int32
-|MI, MT|float|float
+|Any|Boolean|bool_t
+|Any|signed 8|int8_t
+|Any|signed 16|int16_t
+|Any|signed 32|int32_t
+|MI, MT|floating-point|float_t
|===
==== IDENTITYN
@@ -77,11 +77,11 @@ Returns a list of tensors with the same shape, type, and contents as the input l
|===
|Profile|Mode|in_t
-|Any|Boolean|bool
-|Any|signed 8|int8
-|Any|signed 16|int16
-|Any|signed 32|int32
-|MI, MT|float|float
+|Any|Boolean|bool_t
+|Any|signed 8|int8_t
+|Any|signed 16|int16_t
+|Any|signed 32|int32_t
+|MI, MT|floating-point|float_t
|===
==== PLACEHOLDER
@@ -100,10 +100,10 @@ A node where data will be inserted into the network at runtime. Generally used f
|===
|Profile|Mode|out_t
-|Any|Boolean|bool
-|Any|unsigned 8|uint8
-|Any|signed 8|int8
-|Any|signed 16|int16
-|Any|signed 32|int32
-|MI, MT|float|float
+|Any|Boolean|bool_t
+|Any|unsigned 8|uint8_t
+|Any|signed 8|int8_t
+|Any|signed 16|int16_t
+|Any|signed 32|int32_t
+|MI, MT|floating-point|float_t
|===