blob: 36e53b6e27f6fb5147a4e30b6c5b7a81489941b7 [file] [log] [blame]
Jeremy Johnsone2b5e872023-09-14 17:02:09 +01001"""TOSA ref model compliance runner module."""
2# Copyright (c) 2023, ARM Limited.
3# SPDX-License-Identifier: Apache-2.0
4from runner.tosa_refmodel_sut_run import TosaSUTRunner as TosaRefRunner
5
6
7class TosaSUTRunner(TosaRefRunner):
8 """Compliance mode enabled ref model runner."""
9
10 def __init__(self, args, runnerArgs, testDirPath):
11 """Initialize the TosaTestRunner base class"""
12 super().__init__(args, runnerArgs, testDirPath)
13
14 # Override - Set compliance mode precise FP64 calculations
15 self.compliance = True
16
17 # All other functions inherited from refmodel_sut_run