aboutsummaryrefslogtreecommitdiff
path: root/verif/tosa_error_if.py
diff options
context:
space:
mode:
authorMatthew Haddon <matthew.haddon@arm.com>2021-10-13 11:30:30 +0100
committerEric Kunze <eric.kunze@arm.com>2021-11-09 15:11:29 +0000
commitbb5676f55df0d14be7e07981c39645971a587ed2 (patch)
tree504be59a83169347331acac32afcf17ab59ca656 /verif/tosa_error_if.py
parent25fbe521a1d64b4edc985386fc493683f1a08e60 (diff)
downloadreference_model-bb5676f55df0d14be7e07981c39645971a587ed2.tar.gz
Add ERROR_IF checks to operators without specific ERROR_IFs
* Operators implemented: sigmoid, tanh, arthmetic_right_shift, mul, table, select, equal, greater, greater_equal, concat, reverse, tile, scatter, gather, case * Note that over the course of implementation some specific ERROR_IF checks have been added for some of the above operators Change-Id: I80595e6eb9a3e5efd1cc6fd7aa28bbc2dd614980 Signed-off-by: Matthew Haddon <matthew.haddon@arm.com> Signed-off-by: Les Bell <les.bell@arm.com> Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com>
Diffstat (limited to 'verif/tosa_error_if.py')
-rw-r--r--verif/tosa_error_if.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/verif/tosa_error_if.py b/verif/tosa_error_if.py
index 93a35b3..9fcc374 100644
--- a/verif/tosa_error_if.py
+++ b/verif/tosa_error_if.py
@@ -53,5 +53,8 @@ class ErrorIf(object):
InputSizeStartLengthMismatch = "InputSizeStartLengthMismatch"
IndexOutsideBounds = "IndexOutsideBounds"
IndexUsedTwice = "IndexUsedTwice"
+ MaxSmallerMin = "MaxSmallerMin"
+ ConcatInputRankMismatch = "ConcatInputRankMismatch"
+ ConcatInputDimMismatch = "ConcatInputDimMismatch"