aboutsummaryrefslogtreecommitdiff
path: root/chapters/ewise_unary.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'chapters/ewise_unary.adoc')
-rw-r--r--chapters/ewise_unary.adoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chapters/ewise_unary.adoc b/chapters/ewise_unary.adoc
index 8cdce3d..c9b0922 100644
--- a/chapters/ewise_unary.adoc
+++ b/chapters/ewise_unary.adoc
@@ -1,7 +1,7 @@
//
// This confidential and proprietary software may be used only as
// authorised by a licensing agreement from ARM Limited
-// (C) COPYRIGHT 2020 ARM Limited
+// (C) COPYRIGHT 2020-2021 ARM Limited
// ALL RIGHTS RESERVED
// The entire notice above must be reproduced on all authorised
// copies and copies may only be made to the extent permitted
@@ -76,7 +76,7 @@ for_each (index in shape) {
|===
|Profile|Mode|in_t
-|Any|signed 8|aint8
+|Any|signed 8|int8
|Any|signed 16|int16
|Any|signed 32|int32
|===
@@ -259,8 +259,8 @@ Elementwise negation operation
[source,c]
----
-assert(in_t == aint8_t || input_zp == 0) // Zero point only for asymmetric int8
-assert(in_t == aint8_t || output_zp == 0) // Zero point only for asymmetric int8
+assert(in_t == int8_t || input_zp == 0) // Zero point only for int8
+assert(in_t == int8_t || output_zp == 0) // Zero point only for int8
for_each (index in shape) {
in_t value1 = tensor_read<in_t>(input1, shape, index)
in_t acc = appl_sub<in_t>(0, value1 - input1_zp)
@@ -274,7 +274,7 @@ for_each (index in shape) {
|===
|Profile|Mode|in_t
-|Any|signed 8|aint8
+|Any|signed 8|int8
|Any|signed 16|int16
|Any|signed 32|int32
|MI, MT|float|float