aboutsummaryrefslogtreecommitdiff
path: root/python/serializer
diff options
context:
space:
mode:
authorSuraj Sudhir <suraj.sudhir@arm.com>2024-03-14 23:44:54 +0000
committerSuraj Sudhir <suraj.sudhir@arm.com>2024-04-18 13:34:37 -0700
commit50256e168c3e759f03445bb872d0a43da1a6ba30 (patch)
tree474368349820f4b241b75a3db174cbccc6ae583f /python/serializer
parent57d781883142db8a45fe98ac1a1dfacc49cba78a (diff)
downloadserialization_lib-50256e168c3e759f03445bb872d0a43da1a6ba30.tar.gz
Remove TRANSPOSE_CONV2D out_shape argument
Change-Id: I1a52c596ea225355fe505f783d875a01023ff63e
Diffstat (limited to 'python/serializer')
-rw-r--r--python/serializer/tosa_serializer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/serializer/tosa_serializer.py b/python/serializer/tosa_serializer.py
index bbfb37e..be3cdea 100644
--- a/python/serializer/tosa_serializer.py
+++ b/python/serializer/tosa_serializer.py
@@ -190,7 +190,7 @@ class TosaSerializerAttribute(TosaSerializerUnion):
self.ints.append((a.AddAccType, acc_type))
def TransposeConvAttribute(
- self, outpad, stride, output_shape, input_zp, weight_zp, local_bound, acc_type
+ self, outpad, stride, input_zp, weight_zp, local_bound, acc_type
):
from tosa import TransposeConvAttribute as a, Attribute
@@ -199,7 +199,6 @@ class TosaSerializerAttribute(TosaSerializerUnion):
self.intvecs.append((a.AddOutPad, outpad))
self.intvecs.append((a.AddStride, stride))
- self.intvecs.append((a.AddOutputShape, output_shape))
self.ints.append((a.AddInputZp, input_zp))
self.ints.append((a.AddWeightZp, weight_zp))
self.bools.append((a.AddLocalBound, local_bound))