From 71616fe89e17bf5a18ed156dc6f69f4241c8432d Mon Sep 17 00:00:00 2001 From: James Ward Date: Wed, 23 Nov 2022 11:00:47 +0000 Subject: Create MI tests for EW Unary: ABS, CEIL, FLOOR, NEGATE Signed-off-by: James Ward Change-Id: I2ee6d4f706958b6261fd41dd245a3d01d3f8cecf --- 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 2b8e7d2..99588a9 100644 --- a/verif/conformance/test_select.py +++ b/verif/conformance/test_select.py @@ -399,6 +399,12 @@ class CastOperator(Operator): param_names = ["shape", "type", "output_type"] +class CeilOperator(Operator): + """Test selector for the CEIL operator.""" + + name = "ceil" + + class ClampOperator(Operator): """Test selector for the CLAMP operator.""" @@ -458,6 +464,12 @@ class EqualOperator(Operator): name = "equal" +class FloorOperator(Operator): + """Test selector for the FLOOR operator.""" + + name = "floor" + + class FullyConnectedOperator(Operator): """Test selector for the FULLY_CONNECTED operator.""" -- cgit v1.2.1