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 99588a9..696b466 100644
--- a/verif/conformance/test_select.py
+++ b/verif/conformance/test_select.py
@@ -684,6 +684,12 @@ class SelectOperator(Operator):
name = "select"
+class SigmoidOperator(Operator):
+ """Test selector for the SIGMOID operator."""
+
+ name = "sigmoid"
+
+
class SliceOperator(Operator):
"""Test selector for the SLICE operator."""
@@ -703,6 +709,12 @@ class TableOperator(Operator):
name = "table"
+class TanhOperator(Operator):
+ """Test selector for the TANH operator."""
+
+ name = "tanh"
+
+
class TileOperator(Operator):
"""Test selector for the TILE operator."""