From e7b8eb7f2f8cc61d4f4bef77c2379d3e166a9f37 Mon Sep 17 00:00:00 2001 From: Jerry Ge Date: Fri, 15 Sep 2023 17:19:50 +0000 Subject: Update Python table attribute to use int16vecs Change-Id: Iba6e06e1f40c2f2c2ca753787f0f57bae6e66747 Signed-off-by: Jerry Ge --- python/serializer/tosa_serializer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1