aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-05-10 13:14:00 -0700
committerKevin Cheng <kevin.cheng@arm.com>2021-05-10 13:42:14 -0700
commita8b4eafda31fe41b99a46c09c131ac7295382570 (patch)
tree04185315fb537a2500394faec573a864f8b74811 /schema
parent2364dcd7241d730021bf68e000e5a6411b9f09d1 (diff)
downloadserialization_lib-a8b4eafda31fe41b99a46c09c131ac7295382570.tar.gz
Update serialization_lib to 0.22.0
- Remove IdentityN and Placeholder - Add Div Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: I2f01fe8d37a6d1cabba2101283059cb6ed678ec2
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs5
1 files changed, 2 insertions, 3 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index c02154d..d64a50c 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -64,6 +64,7 @@ enum Op:uint32 {
BITWISE_AND,
BITWISE_OR,
BITWISE_XOR,
+ DIV,
LOGICAL_AND,
LOGICAL_LEFT_SHIFT,
LOGICAL_RIGHT_SHIFT,
@@ -127,9 +128,7 @@ enum Op:uint32 {
// Data Nodes
CONST,
- PLACEHOLDER,
IDENTITY,
- IDENTITYN,
// Custom operations
CUSTOM,
@@ -271,7 +270,7 @@ table PadQuantInfo {
table Version {
_major: int32 = 0;
- _minor: int32 = 21;
+ _minor: int32 = 22;
_patch: int32 = 0;
_experimental: bool = false;
}