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.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/verif/conformance/test_select.py b/verif/conformance/test_select.py
index 061a109..72a4e84 100644
--- a/verif/conformance/test_select.py
+++ b/verif/conformance/test_select.py
@@ -496,6 +496,13 @@ class ExpOperator(Operator):
name = "exp"
+class FFT2DOperator(Operator):
+ """Test selector for the FFT2D operator."""
+
+ name = "fft2d"
+ param_names = ["shape", "type", "inverse"]
+
+
class FloorOperator(Operator):
"""Test selector for the FLOOR operator."""
@@ -729,6 +736,12 @@ class ReverseOperator(Operator):
param_names = ["shape", "type", "axis"]
+class RFFT2DOperator(Operator):
+ """Test selector for the RFFT2D operator."""
+
+ name = "rfft2d"
+
+
class RsqrtOperator(Operator):
"""Test selector for the RSQRT operator."""