From 2dce0d022b5103f93bf4393e5cd9a3009fbf5add Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Tue, 12 Jan 2021 16:19:50 -0800 Subject: Remove aint8 type The aint8 type represented an asymmetrically quantized range. With the change to move scaling fully into the RESCALE operator, the aint8 and int8 types didn't have significant differences in their use with operators. Unifying to a single data type makes things simpler. Signed-off-by: Eric Kunze Change-Id: I3ee89cbdafdc61293ef1f1bec52398d744e716a1 --- chapters/ewise_unary.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chapters/ewise_unary.adoc') 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(input1, shape, index) in_t acc = appl_sub(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 -- cgit v1.2.1