From a8b4eafda31fe41b99a46c09c131ac7295382570 Mon Sep 17 00:00:00 2001 From: Kevin Cheng Date: Mon, 10 May 2021 13:14:00 -0700 Subject: Update serialization_lib to 0.22.0 - Remove IdentityN and Placeholder - Add Div Signed-off-by: Kevin Cheng Change-Id: I2f01fe8d37a6d1cabba2101283059cb6ed678ec2 --- schema/tosa.fbs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'schema') 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; } -- cgit v1.2.1