From 7ffa1ff137b573e775892836821976e190f28687 Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Wed, 1 Jun 2022 17:26:48 -0700 Subject: 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 Change-Id: Ifb0fb7121a6bf33601420366ce86f2f0b56353de --- schema/tosa.fbs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'schema') 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]; } -- cgit v1.2.1