From 7be7165ca5168d768a08841658c805dd1bda49c7 Mon Sep 17 00:00:00 2001 From: TatWai Chong Date: Tue, 10 May 2022 17:26:20 -0700 Subject: 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 Change-Id: I425ab407e699159f75834f31ad2d48e206c71749 --- schema/tosa.fbs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'schema/tosa.fbs') 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 { -- cgit v1.2.1