From e4b08ffbe457c8932740e3171964cf2e7cd69b4f Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Thu, 15 Sep 2022 10:38:17 +0100 Subject: 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 Change-Id: I8e1645cd8f10308604400ea53eef723ca163eed7 --- verif/runner/tosa_refmodel_sut_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'verif/runner/tosa_refmodel_sut_run.py') diff --git a/verif/runner/tosa_refmodel_sut_run.py b/verif/runner/tosa_refmodel_sut_run.py index 6acaaf4..95f6e7b 100644 --- a/verif/runner/tosa_refmodel_sut_run.py +++ b/verif/runner/tosa_refmodel_sut_run.py @@ -21,9 +21,9 @@ class TosaRefReturnCode(IntEnum): class TosaSUTRunner(TosaTestRunner): """TOSA Reference Model 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): """Run the test on the reference model.""" -- cgit v1.2.1