aboutsummaryrefslogtreecommitdiff
path: root/verif/conformance/test_select.py
diff options
context:
space:
mode:
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."""