aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2023-05-23 04:30:05 +0000
committerEric Kunze <eric.kunze@arm.com>2023-05-23 04:50:52 +0000
commitc3719ab7c4e1bcc89e10cb04d86085cf7b9ebdbf (patch)
tree5403afc35e41cc16bddb829d8a10e8d01a4c0900 /schema
parentc93cb4a1ab192f920022f0cd092b9323fd1812e4 (diff)
downloadserialization_lib-c3719ab7c4e1bcc89e10cb04d86085cf7b9ebdbf.tar.gz
Change default value for draft version
Default draft = True means that a TOSA flatbuffer with no value stored for the draft flag is true. Serialized TOSA with draft = False are release versions. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: I1304292ef83008a61a2a72e03171d00d5fe13442
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index 449c4ea..eeed385 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -270,7 +270,7 @@ table Version {
_major: int32 = -1;
_minor: int32 = -1;
_patch: int32 = -1;
- _draft: bool = 255;
+ _draft: bool = true;
}
table TosaTensor {