aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorJames Ward <james.ward@arm.com>2023-01-20 16:03:50 +0000
committerJames Ward <james.ward@arm.com>2023-01-23 18:23:02 +0000
commitea00fd0f76c39c650eececc1d640126584357095 (patch)
tree32807a6fd39a7eaa9c5d3843f03cc0122959b4c4 /schema
parentc15f7d52aa4f360eba2344449baa418b7608ac7c (diff)
downloadserialization_lib-ea00fd0f76c39c650eececc1d640126584357095.tar.gz
Remove accumulator attributes from all but AVG_POOL2D
* Also add missing CustomAttribute.py (flatbuffers generated file) Signed-off-by: James Ward <james.ward@arm.com> Change-Id: Ib71847e03d622995dd86afcb6ec9ed2bc147ee7a
Diffstat (limited to 'schema')
-rw-r--r--schema/tosa.fbs4
1 files changed, 0 insertions, 4 deletions
diff --git a/schema/tosa.fbs b/schema/tosa.fbs
index e4a2498..abc735f 100644
--- a/schema/tosa.fbs
+++ b/schema/tosa.fbs
@@ -158,7 +158,6 @@ table ConvAttribute {
dilation: [int32];
input_zp: int32;
weight_zp: int32;
- accum_dtype: DType;
}
table TransposeConvAttribute {
@@ -167,7 +166,6 @@ table TransposeConvAttribute {
output_shape: [int32];
input_zp: int32;
weight_zp: int32;
- accum_dtype: DType;
}
table PadAttribute {
@@ -246,13 +244,11 @@ table TableAttribute {
table MatMulAttribute {
a_zp: int32;
b_zp: int32;
- accum_dtype: DType;
}
table FullyConnectedAttribute {
input_zp: int32;
weight_zp: int32;
- accum_dtype: DType;
}
table NegateAttribute {