aboutsummaryrefslogtreecommitdiff
path: root/serialization/tosa_generated.h
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-01-22 17:21:02 -0800
committerKevin Cheng <kevin.cheng@arm.com>2021-02-01 14:19:58 -0800
commit3a4785772a0f076e2e9653ad70dbb2fc412ac302 (patch)
tree5260a30572f8359421a410ba4f2cc7512e1e773c /serialization/tosa_generated.h
parente2e13cda4c71f9d72935107bbea9a97df779e347 (diff)
downloadreference_model-3a4785772a0f076e2e9653ad70dbb2fc412ac302.tar.gz
Remove AINT8
- Updated C and Py serialization libraries, updated licence files - Removed AINT8 from TOSA reference tests Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Signed-off-by: Jared Smolens <jared.smolens@arm.com> Change-Id: I860bfeaad5a075e50f569c8f6861927ebacf1378
Diffstat (limited to 'serialization/tosa_generated.h')
-rw-r--r--serialization/tosa_generated.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/serialization/tosa_generated.h b/serialization/tosa_generated.h
index fad0520..f2796af 100644
--- a/serialization/tosa_generated.h
+++ b/serialization/tosa_generated.h
@@ -1,5 +1,5 @@
-// Copyright (c) 2020, ARM Limited.
+// Copyright (c) 2020-2021, ARM Limited.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -74,23 +74,21 @@ struct TosaGraph;
enum DType {
DType_UNKNOWN = 0,
DType_BOOL = 1,
- DType_AINT8 = 2,
- DType_UINT8 = 3,
- DType_INT4 = 4,
- DType_INT8 = 5,
- DType_INT16 = 6,
- DType_INT32 = 7,
- DType_INT48 = 8,
- DType_FLOAT = 9,
+ DType_UINT8 = 2,
+ DType_INT4 = 3,
+ DType_INT8 = 4,
+ DType_INT16 = 5,
+ DType_INT32 = 6,
+ DType_INT48 = 7,
+ DType_FLOAT = 8,
DType_MIN = DType_UNKNOWN,
DType_MAX = DType_FLOAT
};
-inline const DType (&EnumValuesDType())[10] {
+inline const DType (&EnumValuesDType())[9] {
static const DType values[] = {
DType_UNKNOWN,
DType_BOOL,
- DType_AINT8,
DType_UINT8,
DType_INT4,
DType_INT8,
@@ -106,7 +104,6 @@ inline const char * const *EnumNamesDType() {
static const char * const names[] = {
"UNKNOWN",
"BOOL",
- "AINT8",
"UINT8",
"INT4",
"INT8",