aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2022-06-01 17:26:48 -0700
committerEric Kunze <eric.kunze@arm.com>2022-06-13 15:54:03 -0700
commit7ffa1ff137b573e775892836821976e190f28687 (patch)
tree7d39117a9ae9caf13f00b199de87ffe05576552b /schema
parent9a293aa4be98947c5d6fdb85798c6181e09b8b50 (diff)
downloadserialization_lib-7ffa1ff137b573e775892836821976e190f28687.tar.gz
Remove dilation from transpose_conv2d
The specification does not have dilation for transpose_conv2d. Removed dilation from the attributes for transpose. Rename outpad to out_pad for transpose conv2d to align with specification Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: Ifb0fb7121a6bf33601420366ce86f2f0b56353de
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs3
1 files changed, 1 insertions, 2 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index b0b219f..7830bd2 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -172,9 +172,8 @@ table ConvAttribute {
}
table TransposeConvAttribute {
- outpad: [int32];
+ out_pad: [int32];
stride: [int32];
- dilation: [int32];
output_shape: [int32];
}