From f08956b10af531e382e1adf726f2196157f4caab Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 18 May 2023 01:13:41 +0000 Subject: Modify TOSA schema to force version to be written Previously if the values were the default, they would not be written to the file Signed-off-by: Eric Kunze Change-Id: Ibdf13d3ce672d3e8f062a7853d65a966ab5b0877 --- schema/tosa.fbs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'schema') diff --git a/schema/tosa.fbs b/schema/tosa.fbs index f7224fb..449c4ea 100644 --- a/schema/tosa.fbs +++ b/schema/tosa.fbs @@ -267,10 +267,10 @@ table FFTAttribute { } table Version { - _major: int32 = 0; - _minor: int32 = 70; - _patch: int32 = 0; - _draft: bool = true; + _major: int32 = -1; + _minor: int32 = -1; + _patch: int32 = -1; + _draft: bool = 255; } table TosaTensor { @@ -301,7 +301,7 @@ table TosaRegion { } table TosaGraph { - version:Version; + version:Version (required); regions:[TosaRegion]; // regions array } -- cgit v1.2.1