aboutsummaryrefslogtreecommitdiff
path: root/schema/tosa.fbs
diff options
context:
space:
mode:
authorTatWai Chong <tatwai.chong@arm.com>2022-05-10 17:26:20 -0700
committerTatWai Chong <tatwai.chong@arm.com>2022-06-07 09:45:49 -0700
commit7be7165ca5168d768a08841658c805dd1bda49c7 (patch)
tree757c55dd628dd8e97f7426d822ef116ada791aae /schema/tosa.fbs
parent4102773d83e236448130b43b1747621ace00160f (diff)
downloadserialization_lib-7be7165ca5168d768a08841658c805dd1bda49c7.tar.gz
Align the serialization schema with TOSA 0.24.0 specification
The operators are pool, conv, reshape, slice, transpose, and table. Signed-off-by: TatWai Chong <tatwai.chong@arm.com> Change-Id: I425ab407e699159f75834f31ad2d48e206c71749
Diffstat (limited to 'schema/tosa.fbs')
-rw-r--r--schema/tosa.fbs12
1 files changed, 6 insertions, 6 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index 4267adf..f519d1c 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -160,13 +160,13 @@ union Attribute {
}
table PoolAttribute {
- padding: [int32];
+ pad: [int32];
kernel: [int32];
stride: [int32];
}
table ConvAttribute {
- padding: [int32];
+ pad: [int32];
stride: [int32];
dilation: [int32];
}
@@ -189,11 +189,11 @@ table AxisAttribute {
}
table ReshapeAttribute {
- shape: [int32];
+ new_shape: [int32];
}
table SliceAttribute {
- begin: [int32];
+ start: [int32];
size: [int32];
}
@@ -247,11 +247,11 @@ table WhileLoopAttribute {
}
table TransposeAttribute {
- perm: [int32];
+ perms: [int32];
}
table TableAttribute {
- table: [int32];
+ table: [int16];
}
union QuantInfo {