aboutsummaryrefslogtreecommitdiff
path: root/verif/tosa_error_if.py
diff options
context:
space:
mode:
authorMatthew Haddon <matthew.haddon@arm.com>2021-10-11 18:12:58 +0100
committerEric Kunze <eric.kunze@arm.com>2021-10-18 17:13:12 +0000
commite807aae606a78d923a2565052f7c2179e3050650 (patch)
treefd541ef5bcae06355e66f6ee9ad6bc209c4f29c3 /verif/tosa_error_if.py
parentc4cf037c3944ca9f481c00cb5a7d2e96efe48d7c (diff)
downloadreference_model-e807aae606a78d923a2565052f7c2179e3050650.tar.gz
Add Negative tests for pad, reshape, slice, transpose
Signed-off-by: Matthew Haddon <matthew.haddon@arm.com> Change-Id: I659337aadfd0498bf88a95737f69c51efec797cc
Diffstat (limited to 'verif/tosa_error_if.py')
-rw-r--r--verif/tosa_error_if.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/verif/tosa_error_if.py b/verif/tosa_error_if.py
index 35a391e..93a35b3 100644
--- a/verif/tosa_error_if.py
+++ b/verif/tosa_error_if.py
@@ -45,5 +45,13 @@ class ErrorIf(object):
PoolingOutputShapeMismatch = "PoolingOutputShapeMismatch"
ScaleNotTrue = "ScaleNotTrue"
ScaleTrue = "ScaleTrue"
+ TensorSizeInputOutputMismatch = "TensorSizeInputOutputMismatch"
+ StartSmallerZero = "StartSmallerZero"
+ SizeSmallerEqualZero = "SizeSmallerEqualZero"
+ StartSizeOutsideBounds = "StartSizeOutsideBounds"
+ SizeOutputShapeMismatch = "SizeOutputShapeMismatch"
+ InputSizeStartLengthMismatch = "InputSizeStartLengthMismatch"
+ IndexOutsideBounds = "IndexOutsideBounds"
+ IndexUsedTwice = "IndexUsedTwice"