aboutsummaryrefslogtreecommitdiff
path: root/verif/tosa_ref_run.py
diff options
context:
space:
mode:
authorJared Smolens <jared.smolens@arm.com>2021-03-04 11:18:54 -0800
committerJared Smolens <jared.smolens@arm.com>2021-03-04 13:21:03 -0800
commit2a76ad2368f4684a8391fe69f51e52356524bf15 (patch)
treec05d26b964e2006c4c88d00facab17ee110f7f2c /verif/tosa_ref_run.py
parentdf8626976df6c779bb30df9c5ceef689462109c0 (diff)
downloadreference_model-2a76ad2368f4684a8391fe69f51e52356524bf15.tar.gz
Update DTypes for TOSA ops, test rig fixes
- Updated DTypes and expected failures for TOSA ops, particularly missing int8/int16 tests for Conv, FullyConnected, MatMul - Fixed a bug where unexpected failures were incorrectly categorized as passes Change-Id: I2763626317cedad9f3723f748986bb59a32f2e42 Signed-off-by: Jared Smolens <jared.smolens@arm.com>
Diffstat (limited to 'verif/tosa_ref_run.py')
-rw-r--r--verif/tosa_ref_run.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/verif/tosa_ref_run.py b/verif/tosa_ref_run.py
index 99f504b..2035147 100644
--- a/verif/tosa_ref_run.py
+++ b/verif/tosa_ref_run.py
@@ -1,6 +1,6 @@
import os
-# Copyright (c) 2020, ARM Limited.
+# Copyright (c) 2020-2021, ARM Limited.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -61,6 +61,6 @@ class TosaRefRunner(TosaTestRunner):
if expectedFailure:
result = TosaTestRunner.Result.EXPECTED_FAILURE
else:
- result = TosaTestRunner.Result.EXPECTED_PASS
+ result = TosaTestRunner.Result.UNEXPECTED_FAILURE
return result