aboutsummaryrefslogtreecommitdiff
path: root/include/operator.def
diff options
context:
space:
mode:
authorKevin Cheng <kevin.cheng@arm.com>2021-05-10 13:14:00 -0700
committerKevin Cheng <kevin.cheng@arm.com>2021-05-10 13:42:14 -0700
commita8b4eafda31fe41b99a46c09c131ac7295382570 (patch)
tree04185315fb537a2500394faec573a864f8b74811 /include/operator.def
parent2364dcd7241d730021bf68e000e5a6411b9f09d1 (diff)
downloadserialization_lib-a8b4eafda31fe41b99a46c09c131ac7295382570.tar.gz
Update serialization_lib to 0.22.0
- Remove IdentityN and Placeholder - Add Div Signed-off-by: Kevin Cheng <kevin.cheng@arm.com> Change-Id: I2f01fe8d37a6d1cabba2101283059cb6ed678ec2
Diffstat (limited to 'include/operator.def')
-rw-r--r--include/operator.def3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/operator.def b/include/operator.def
index 80ae547..0329dd2 100644
--- a/include/operator.def
+++ b/include/operator.def
@@ -49,6 +49,7 @@ DEF_OPERATOR(arithmetic_right_shift, ARITHMETIC_RIGHT_SHIFT, ArithmeticRightS
DEF_OPERATOR(bitwise_and, BITWISE_AND, BitwiseAnd, None, None)
DEF_OPERATOR(bitwise_or, BITWISE_OR, BitwiseOr, None, None)
DEF_OPERATOR(bitwise_xor, BITWISE_XOR, BitwiseXor, None, None)
+DEF_OPERATOR(div, DIV, Div, None, None)
DEF_OPERATOR(logical_and, LOGICAL_AND, LogicalAnd, None, None)
DEF_OPERATOR(logical_left_shift, LOGICAL_LEFT_SHIFT, LogicalLeftShift, None, None)
DEF_OPERATOR(logical_right_shift, LOGICAL_RIGHT_SHIFT, LogicalRightShift, None, None)
@@ -112,9 +113,7 @@ DEF_OPERATOR(rescale, RESCALE, Rescale,
/* data nodes */
DEF_OPERATOR(const, CONST, Const, None, None)
-DEF_OPERATOR(placeholder, PLACEHOLDER, Placeholder, None, None)
DEF_OPERATOR(identity, IDENTITY, Identity, None, None)
-DEF_OPERATOR(identityn, IDENTITYN, IdentityN, None, None)
/* custom operations */
DEF_OPERATOR(custom, CUSTOM, Custom, None, None)