aboutsummaryrefslogtreecommitdiff
path: root/verif/tosa_error_if.py
diff options
context:
space:
mode:
authorMatthew Haddon <matthew.haddon@arm.com>2021-10-11 09:38:10 +0100
committerEric Kunze <eric.kunze@arm.com>2021-10-18 17:13:12 +0000
commitc4cf037c3944ca9f481c00cb5a7d2e96efe48d7c (patch)
tree5b22dfc335c00ceb0eab5db36a96841584aadd1f /verif/tosa_error_if.py
parentc202521d6943a04e910e0daf5cca86dee536b5c0 (diff)
downloadreference_model-c4cf037c3944ca9f481c00cb5a7d2e96efe48d7c.tar.gz
Add negative testing support to fully_connected, matmul, argmax
Change-Id: I75f2a4ab6790dcbdfaec064f42f601d8f44da70b Signed-off-by: Matthew Haddon <matthew.haddon@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 5e219cc..35a391e 100644
--- a/verif/tosa_error_if.py
+++ b/verif/tosa_error_if.py
@@ -31,9 +31,12 @@ class ErrorIf(object):
ChannelMismatch = "ChannelMismatch"
RankMismatch = "RankMismatch"
InputZeroPointNotZero = "InputZeroPointNotZero"
+ WeightZeroPointNotZero = "WeightZeroPointNotZero"
OutputZeroPointNotZero = "OutputZeroPointNotZero"
AxisSmallerZero = "AxisSmallerZero"
AxisLargerRank = "AxisLargerRank"
+ ArgmaxOutputShapeMismatch = "ArgmaxOutputShapeMismatch"
+ ArgmaxOutputRankMismatch = "ArgmaxOutputRankMismatch"
ShapeOfAxisNotOne = "ShapeOfAxisNotOne"
KernelSmallerOne = "KernelSmallerOne"
StrideSmallerOne = "StrideSmallerOne"