aboutsummaryrefslogtreecommitdiff
path: root/verif/conformance/test_select.py
diff options
context:
space:
mode:
authorJames Ward <james.ward@arm.com>2022-11-23 11:00:47 +0000
committerEric Kunze <eric.kunze@arm.com>2022-12-13 21:22:43 +0000
commit71616fe89e17bf5a18ed156dc6f69f4241c8432d (patch)
tree4ccb93aaa472ec17becb9872de6754ad61bcae35 /verif/conformance/test_select.py
parent635bc99c8fd012e4e7b3dcc1dc72a9a0db6661fb (diff)
downloadreference_model-71616fe89e17bf5a18ed156dc6f69f4241c8432d.tar.gz
Create MI tests for EW Unary: ABS, CEIL, FLOOR, NEGATE
Signed-off-by: James Ward <james.ward@arm.com> Change-Id: I2ee6d4f706958b6261fd41dd245a3d01d3f8cecf
Diffstat (limited to 'verif/conformance/test_select.py')
-rw-r--r--verif/conformance/test_select.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/verif/conformance/test_select.py b/verif/conformance/test_select.py
index 2b8e7d2..99588a9 100644
--- a/verif/conformance/test_select.py
+++ b/verif/conformance/test_select.py
@@ -399,6 +399,12 @@ class CastOperator(Operator):
param_names = ["shape", "type", "output_type"]
+class CeilOperator(Operator):
+ """Test selector for the CEIL operator."""
+
+ name = "ceil"
+
+
class ClampOperator(Operator):
"""Test selector for the CLAMP operator."""
@@ -458,6 +464,12 @@ class EqualOperator(Operator):
name = "equal"
+class FloorOperator(Operator):
+ """Test selector for the FLOOR operator."""
+
+ name = "floor"
+
+
class FullyConnectedOperator(Operator):
"""Test selector for the FULLY_CONNECTED operator."""