aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorTai Ly <tai.ly@arm.com>2024-03-13 18:52:45 +0000
committerTai Ly <tai.ly@arm.com>2024-03-13 19:25:43 +0000
commitad78daaf0fa1e41742cbed314459c3dbbb483c20 (patch)
treef27e56f497b796d36676b42bb713deb1af883a31 /schema
parent0b6d7c271af1e6593e6a2cf14b32acea765f4b64 (diff)
downloadserialization_lib-ad78daaf0fa1e41742cbed314459c3dbbb483c20.tar.gz
[serialization_lib] Add acc_type to Conv Attrs
This adds acc_type to ConvAttribute and TransposeConvAttribute Signed-off-by: Tai Ly <tai.ly@arm.com> Change-Id: I73bab71b2eb90f6451fadee21d5bed1811ecbfd7
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs2
1 files changed, 2 insertions, 0 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index 028765d..79b83b1 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -170,6 +170,7 @@ table ConvAttribute {
input_zp: int32;
weight_zp: int32;
local_bound: bool;
+ acc_type: DType;
}
table TransposeConvAttribute {
@@ -179,6 +180,7 @@ table TransposeConvAttribute {
input_zp: int32;
weight_zp: int32;
local_bound: bool;
+ acc_type: DType;
}
table PadAttribute {