aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2023-09-15 17:19:50 +0000
committerJerry Ge <jerry.ge@arm.com>2023-09-15 18:39:42 +0000
commite7b8eb7f2f8cc61d4f4bef77c2379d3e166a9f37 (patch)
treeba015f39493bd785769516c025a0552ce65699e4
parentc0a60300951a59c33d2afaea0f6ca0889cabf340 (diff)
downloadserialization_lib-e7b8eb7f2f8cc61d4f4bef77c2379d3e166a9f37.tar.gz
Update Python table attribute to use int16vecs
Change-Id: Iba6e06e1f40c2f2c2ca753787f0f57bae6e66747 Signed-off-by: Jerry Ge <jerry.ge@arm.com>
-rw-r--r--python/serializer/tosa_serializer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/serializer/tosa_serializer.py b/python/serializer/tosa_serializer.py
index 22f9bc3..220bc2a 100644
--- a/python/serializer/tosa_serializer.py
+++ b/python/serializer/tosa_serializer.py
@@ -345,7 +345,7 @@ class TosaSerializerAttribute(TosaSerializerUnion):
self.utype = Attribute.Attribute().TableAttribute
self.optFcns = (a.Start, a.End)
- self.intvecs.append((a.AddTable, table))
+ self.int16vecs.append((a.AddTable, table))
def MatMulAttribute(self, A_zp, B_zp):
from tosa import MatMulAttribute as a, Attribute