aboutsummaryrefslogtreecommitdiff
path: root/verif/tests/tosa_dummy_sut_run.py
diff options
context:
space:
mode:
authorJeremy Johnson <jeremy.johnson@arm.com>2022-09-15 10:38:17 +0100
committerEric Kunze <eric.kunze@arm.com>2022-11-19 00:42:57 +0000
commite4b08ffbe457c8932740e3171964cf2e7cd69b4f (patch)
treeeaa7a48d1de8e1819398c63110e99f993c0aa847 /verif/tests/tosa_dummy_sut_run.py
parent52460a8b21e3691cd56b22e62986fa24012b8e68 (diff)
downloadreference_model-e4b08ffbe457c8932740e3171964cf2e7cd69b4f.tar.gz
Initial set up of Main Inference conformance test gen
tosa-verif-build-tests - option for setting FP values range - option for recursively finding tests - change from os.path to Path tosa_verif_result_check - option to supply FP tolerance - output difference and max tolerance on contents mismatch - change from os.path to Path MI conformance - contains examples of AVG_POOL2D and CONV2D tests Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com> Change-Id: I8e1645cd8f10308604400ea53eef723ca163eed7
Diffstat (limited to 'verif/tests/tosa_dummy_sut_run.py')
-rw-r--r--verif/tests/tosa_dummy_sut_run.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/verif/tests/tosa_dummy_sut_run.py b/verif/tests/tosa_dummy_sut_run.py
index fffcfa1..344aa2d 100644
--- a/verif/tests/tosa_dummy_sut_run.py
+++ b/verif/tests/tosa_dummy_sut_run.py
@@ -7,9 +7,9 @@ from runner.tosa_test_runner import TosaTestRunner
class TosaSUTRunner(TosaTestRunner):
"""TOSA dummy SUT runner."""
- def __init__(self, args, runnerArgs, testDir):
+ def __init__(self, args, runnerArgs, testDirPath):
"""Initialize using the given test details."""
- super().__init__(args, runnerArgs, testDir)
+ super().__init__(args, runnerArgs, testDirPath)
def runTestGraph(self):
"""Nothing run as this is a dummy SUT that does nothing."""