aboutsummaryrefslogtreecommitdiff
path: root/schema/tosa.fbs
diff options
context:
space:
mode:
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 {