aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-08-31 16:04:40 -0700
committerKevin Cheng <kevin.cheng@arm.com>2021-08-31 17:23:15 -0700
commit79a4199be5b87eb6220b6688b02f5f6cbebb6131 (patch)
tree01ac992667773b5b3506a4a3fed1a3fad85088ab /schema
parentab905ec865a9f4889e6818ce1c4bc934cff2070d (diff)
downloadserialization_lib-79a4199be5b87eb6220b6688b02f5f6cbebb6131.tar.gz
Adding Conv attribute to Conv3d.
- Rename attribute: Pool2d, Conv2d, TransposeConv2d -> Pool, Conv, TransposeConv Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: If47dfd1ffc57843018d81d674e4386212fd8d4b4
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs12
1 files changed, 6 insertions, 6 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index daf6475..6e84b22 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -139,9 +139,9 @@ enum Op:uint32 {
}
union Attribute {
- Pool2dAttribute,
- Conv2dAttribute,
- TransposeConv2dAttribute,
+ PoolAttribute,
+ ConvAttribute,
+ TransposeConvAttribute,
ReluNAttribute,
AxisAttribute,
ReshapeAttribute,
@@ -156,19 +156,19 @@ union Attribute {
WhileLoopAttribute,
}
-table Pool2dAttribute {
+table PoolAttribute {
padding: [int32];
kernel: [int32];
stride: [int32];
}
-table Conv2dAttribute {
+table ConvAttribute {
padding: [int32];
stride: [int32];
dilation: [int32];
}
-table TransposeConv2dAttribute {
+table TransposeConvAttribute {
outpad: [int32];
stride: [int32];
dilation: [int32];