From b45db9a696f5df7b233f374248f329c16ee7ae64 Mon Sep 17 00:00:00 2001 From: James Ward Date: Mon, 12 Dec 2022 13:02:44 +0000 Subject: Create MI tests for Activation: SIGMOID, TANH Signed-off-by: James Ward Change-Id: I75d6280ecb5219d50c91d14029e90ff3a2f6eb06 --- 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 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.""" -- cgit v1.2.1