aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2021-10-18 16:53:36 -0700
committerEric Kunze <eric.kunze@arm.com>2021-10-18 16:54:04 -0700
commita0266b0c2063db2bb61e90f5232bfc986b4145c1 (patch)
tree278d357fc08e20247f7db2246945e4f3328eb976
parent7c5f53273c20bbae0232b57451aa060ff1e96dbc (diff)
downloadspecification-a0266b0c2063db2bb61e90f5232bfc986b4145c1.tar.gz
Fix typo int_t to in_t
Change-Id: I495ed97896d8f560b9eb9ed7b05dd2ca1c564c73 Signed-off-by: Eric Kunze <eric.kunze@arm.com>
-rw-r--r--chapters/type_conversion.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapters/type_conversion.adoc b/chapters/type_conversion.adoc
index aa2218f..77af54a 100644
--- a/chapters/type_conversion.adoc
+++ b/chapters/type_conversion.adoc
@@ -98,7 +98,7 @@ Rescale quantized values into a new domain. This function scales by factor: mult
for_each(index in shape) {
ERROR_IF(in_t != int8_t && in_t != uint8_t && input_zp != 0);
ERROR_IF(out_t != int8_t && out_t != uint8_t && output_zp != 0);
- ERROR_IF(scale32 && int_t == int48_t);
+ ERROR_IF(scale32 && in_t == int48_t);
ERROR_IF(!scale32 && double_round);
int48_t value = tensor_read<in_t>(input, shape, index, input_zp);
int c = (per_channel) ? index[dims-1] : 0;