aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-10-14 11:53:39 -0700
committerKevin Cheng <kevin.cheng@arm.com>2021-10-19 09:06:57 -0700
commitb97cb1d46690321235f814e5a52cb8186380bce3 (patch)
tree137bc8121ee88771a00fdb197d54b113ed036276 /schema
parent6b078cac3ff2b33fd6d01c5e849424fbd9b2ac58 (diff)
downloadserialization_lib-b97cb1d46690321235f814e5a52cb8186380bce3.tar.gz
Both serializer and schema carry version info now
- version number now encoded in serializer as well - rename experimental to draft - rename internal function from FreezeBuilder/InitWithBuf to Serialize/Deserialize Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: I70cb07832fdf66c6bde3d18aadf1f3646765887e
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index 6e84b22..2e77fe5 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -270,9 +270,9 @@ table PadQuantInfo {
table Version {
_major: int32 = 0;
- _minor: int32 = 22;
+ _minor: int32 = 23;
_patch: int32 = 0;
- _experimental: bool = false;
+ _draft: bool = true;
}
table TosaTensor {