aboutsummaryrefslogtreecommitdiff
path: root/verif/conformance/test_select.py
diff options
context:
space:
mode:
authorJames Ward <james.ward@arm.com>2022-12-12 13:02:44 +0000
committerJames Ward <james.ward@arm.com>2022-12-15 12:45:27 +0000
commitb45db9a696f5df7b233f374248f329c16ee7ae64 (patch)
treea01b74f62a38a9984f14b361f3d65d86aff66aa2 /verif/conformance/test_select.py
parent2a27c8f5508cff3c748074c204965e138a434bd9 (diff)
downloadreference_model-b45db9a696f5df7b233f374248f329c16ee7ae64.tar.gz
Create MI tests for Activation: SIGMOID, TANH
Signed-off-by: James Ward <james.ward@arm.com> Change-Id: I75d6280ecb5219d50c91d14029e90ff3a2f6eb06
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."""