aboutsummaryrefslogtreecommitdiff
path: root/verif/runner/tosa_refmodel_compliance_sut_run.py
diff options
context:
space:
mode:
Diffstat (limited to 'verif/runner/tosa_refmodel_compliance_sut_run.py')
-rw-r--r--verif/runner/tosa_refmodel_compliance_sut_run.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/verif/runner/tosa_refmodel_compliance_sut_run.py b/verif/runner/tosa_refmodel_compliance_sut_run.py
new file mode 100644
index 0000000..36e53b6
--- /dev/null
+++ b/verif/runner/tosa_refmodel_compliance_sut_run.py
@@ -0,0 +1,17 @@
+"""TOSA ref model compliance runner module."""
+# Copyright (c) 2023, ARM Limited.
+# SPDX-License-Identifier: Apache-2.0
+from runner.tosa_refmodel_sut_run import TosaSUTRunner as TosaRefRunner
+
+
+class TosaSUTRunner(TosaRefRunner):
+ """Compliance mode enabled ref model runner."""
+
+ def __init__(self, args, runnerArgs, testDirPath):
+ """Initialize the TosaTestRunner base class"""
+ super().__init__(args, runnerArgs, testDirPath)
+
+ # Override - Set compliance mode precise FP64 calculations
+ self.compliance = True
+
+ # All other functions inherited from refmodel_sut_run