aboutsummaryrefslogtreecommitdiff
path: root/include/attribute.def
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 /include/attribute.def
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 'include/attribute.def')
-rw-r--r--include/attribute.def20
1 files changed, 8 insertions, 12 deletions
diff --git a/include/attribute.def b/include/attribute.def
index 86361a4..9e4c461 100644
--- a/include/attribute.def
+++ b/include/attribute.def
@@ -34,21 +34,19 @@ DEF_ATTRIBUTE(Pool, 6,
int32_t, S, output_zp,
DType, S, accum_dtype)
-DEF_ATTRIBUTE(Conv, 6,
+DEF_ATTRIBUTE(Conv, 5,
int32_t, V, pad,
int32_t, V, stride,
int32_t, V, dilation,
int32_t, S, input_zp,
- int32_t, S, weight_zp,
- DType, S, accum_dtype)
+ int32_t, S, weight_zp)
-DEF_ATTRIBUTE(TransposeConv, 6,
+DEF_ATTRIBUTE(TransposeConv, 5,
int32_t, V, out_pad,
int32_t, V, stride,
int32_t, V, output_shape,
int32_t, S, input_zp,
- int32_t, S, weight_zp,
- DType, S, accum_dtype)
+ int32_t, S, weight_zp)
DEF_ATTRIBUTE(Pad, 3,
int32_t, V, padding,
@@ -109,15 +107,13 @@ DEF_ATTRIBUTE(Transpose, 1,
DEF_ATTRIBUTE(Table, 1,
int16_t, V, table)
-DEF_ATTRIBUTE(MatMul, 3,
+DEF_ATTRIBUTE(MatMul, 2,
int32_t, S, a_zp,
- int32_t, S, b_zp,
- DType, S, accum_dtype)
+ int32_t, S, b_zp)
-DEF_ATTRIBUTE(FullyConnected, 3,
+DEF_ATTRIBUTE(FullyConnected, 2,
int32_t, S, input_zp,
- int32_t, S, weight_zp,
- DType, S, accum_dtype)
+ int32_t, S, weight_zp)
DEF_ATTRIBUTE(Negate, 2,
int32_t, S, input1_zp,