From b97cb1d46690321235f814e5a52cb8186380bce3 Mon Sep 17 00:00:00 2001 From: Kevin Cheng Date: Thu, 14 Oct 2021 11:53:39 -0700 Subject: 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 Change-Id: I70cb07832fdf66c6bde3d18aadf1f3646765887e --- schema/tosa.fbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'schema') 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 { -- cgit v1.2.1