From 51bd4f5166c50a89017307b55dee0f5bda096b7b Mon Sep 17 00:00:00 2001 From: Jerry Ge Date: Tue, 20 Feb 2024 11:21:19 -0800 Subject: Add Tosa Sin/Cos operators - Add Tosa Sin/Cos operators to reference_model - Add conformances tests Signed-off-by: Jerry Ge Change-Id: I3f597ddf5dac2c64d6dd6aa15781b40b8468eaa6 --- verif/conformance/test_select.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'verif/conformance/test_select.py') 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.""" -- cgit v1.2.1