aboutsummaryrefslogtreecommitdiff
path: root/verif/tosa_ref_run.py
blob: 098f39b1903c2a4e7b5bf58632a10da6a9a7140e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os

# 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.
#    You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.

import os
import json
import shlex
import subprocess
from tosa_test_runner import TosaTestRunner, run_sh_command


class TosaRefRunner(TosaTestRunner):
    def __init__(self, args, runnerArgs, testDir):
        super().__init__(args, runnerArgs, testDir)

    def runModel(self):
        # Build up the TOSA reference command line
        # Uses arguments from the argParser args, not the runnerArgs
        args = self.args

        ref_cmd = [
            args.ref_model_path,
            "-Ctest_desc={}".format(os.path.join(self.testDir, "desc.json")),
        ]

        if args.ref_debug:
            ref_cmd.extend(["-dALL", "-l{}".format(args.ref_debug)])

        if args.ref_intermediates:
            ref_cmd.extend(["-Ddump_intermediates=1"])

        expectedFailure = self.testDesc["expected_failure"]

        try:
            run_sh_command(self.args, ref_cmd)
            if expectedFailure:
                result = TosaTestRunner.Result.UNEXPECTED_PASS
            else:
                result = TosaTestRunner.Result.EXPECTED_PASS
        except Exception as e:
            if expectedFailure:
                result = TosaTestRunner.Result.EXPECTED_FAILURE
            else:
                result = TosaTestRunner.Result.UNEXPECTED_FAILURE

        return result