aboutsummaryrefslogtreecommitdiff
path: root/include/attribute.def
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-10-15 15:49:19 -0700
committerKevin Cheng <kevin.cheng@arm.com>2021-10-27 10:43:44 -0700
commit38d214cfa4491f1956f28d7eff428a8ed07d824c (patch)
tree871d86c6bc442149159d021724c392a0b9256b51 /include/attribute.def
parente6563f52231c603b409638b22530d016757542c8 (diff)
downloadserialization_lib-38d214cfa4491f1956f28d7eff428a8ed07d824c.tar.gz
Changes for 0.23.0 release
- Remove RELUN op - Add pad_const to PAD op - Make padding as an attribute of PAD op - Make perm as an attribute of TRANSPOSE op - Make table as attribute in Table op - Fix typo in operator.def Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: Ifcaa4ad686578cf814345ede8e7f37f0a04fd8ea
Diffstat (limited to 'include/attribute.def')
-rw-r--r--include/attribute.def14
1 files changed, 11 insertions, 3 deletions
diff --git a/include/attribute.def b/include/attribute.def
index d77a687..2534cc4 100644
--- a/include/attribute.def
+++ b/include/attribute.def
@@ -42,9 +42,10 @@ DEF_ATTRIBUTE(TransposeConv, 4,
int32_t, V, dilation,
int32_t, V, output_shape)
-DEF_ATTRIBUTE(ReluN, 2,
- int32_t, S, max_int,
- float, S, max_fp)
+DEF_ATTRIBUTE(Pad, 3,
+ int32_t, V, padding,
+ int32_t, S, pad_const_int,
+ float, S, pad_const_fp)
DEF_ATTRIBUTE(Axis, 1,
int32_t, S, axis)
@@ -96,3 +97,10 @@ DEF_ATTRIBUTE(CondIf, 2,
DEF_ATTRIBUTE(WhileLoop, 2,
string, S, cond_branch,
string, S, body_branch)
+
+DEF_ATTRIBUTE(Transpose, 1,
+ int32_t, V, perm)
+
+DEF_ATTRIBUTE(Table, 1,
+ int32_t, V, table)
+