aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2023-05-18 01:13:41 +0000
committerEric Kunze <eric.kunze@arm.com>2023-05-18 01:14:53 +0000
commitf08956b10af531e382e1adf726f2196157f4caab (patch)
treecdb9716676cc6185b37a655221d20556deb02b96 /schema
parentab8d234bdc64896297ceceb7b97ce74a783ac7ae (diff)
downloadserialization_lib-f08956b10af531e382e1adf726f2196157f4caab.tar.gz
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 <eric.kunze@arm.com> Change-Id: Ibdf13d3ce672d3e8f062a7853d65a966ab5b0877
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs10
1 files changed, 5 insertions, 5 deletions
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
}