aboutsummaryrefslogtreecommitdiff
path: root/verif/conformance/test_select.py
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2024-02-20 11:21:19 -0800
committerEric Kunze <eric.kunze@arm.com>2024-03-05 18:47:09 +0000
commit51bd4f5166c50a89017307b55dee0f5bda096b7b (patch)
tree84aa5e9bd1dc02856ae10a18f0a923e3c8efbf55 /verif/conformance/test_select.py
parent1408795800719139e26bafcece88bfc07582576d (diff)
downloadreference_model-51bd4f5166c50a89017307b55dee0f5bda096b7b.tar.gz
Add Tosa Sin/Cos operators
- Add Tosa Sin/Cos operators to reference_model - Add conformances tests Signed-off-by: Jerry Ge <jerry.ge@arm.com> Change-Id: I3f597ddf5dac2c64d6dd6aa15781b40b8468eaa6
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 55eef58..58d3f9f 100644
--- a/verif/conformance/test_select.py
+++ b/verif/conformance/test_select.py
@@ -848,6 +848,18 @@ class RsqrtOperator(Operator):
name = "rsqrt"
+class CosOperator(Operator):
+ """Test selector for the COS operator."""
+
+ name = "cos"
+
+
+class SinOperator(Operator):
+ """Test selector for the SIN operator."""
+
+ name = "sin"
+
+
class ScatterOperator(Operator):
"""Test selector for the SCATTER operator."""