From c3719ab7c4e1bcc89e10cb04d86085cf7b9ebdbf Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Tue, 23 May 2023 04:30:05 +0000 Subject: 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 Change-Id: I1304292ef83008a61a2a72e03171d00d5fe13442 --- schema/tosa.fbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'schema') 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 { -- cgit v1.2.1