From ad78daaf0fa1e41742cbed314459c3dbbb483c20 Mon Sep 17 00:00:00 2001 From: Tai Ly Date: Wed, 13 Mar 2024 18:52:45 +0000 Subject: [serialization_lib] Add acc_type to Conv Attrs This adds acc_type to ConvAttribute and TransposeConvAttribute Signed-off-by: Tai Ly Change-Id: I73bab71b2eb90f6451fadee21d5bed1811ecbfd7 --- schema/tosa.fbs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'schema') 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 { -- cgit v1.2.1