forked from verilog-to-routing/vtr-verilog-to-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_reg_test.py
executable file
·328 lines (273 loc) · 10.5 KB
/
run_reg_test.py
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#!/usr/bin/env python3
"""
Module for running regression tests
"""
from pathlib import Path
import sys
import argparse
import textwrap
import subprocess
from collections import OrderedDict
from prettytable import PrettyTable
# pylint: disable=wrong-import-position, import-error
sys.path.insert(0, str(Path(__file__).resolve().parent / "vtr_flow/scripts/python_libs"))
sys.path.insert(0, str(Path(__file__).resolve().parent / "vtr_flow/scripts"))
from run_vtr_task import vtr_command_main as run_vtr_task
from vtr import RawDefaultHelpFormatter, paths
# pylint: enable=wrong-import-position, import-error
BASIC_VERBOSITY = 1
def vtr_command_argparser(prog=None):
""" Parses the arguments of run_reg_test """
description = textwrap.dedent(
"""
Runs one or more VTR regression tests.
"""
)
epilog = textwrap.dedent(
"""
Examples
--------
Run the regression test 'vtr_reg_strong':
%(prog)s vtr_reg_strong
Run the regression tests 'vtr_reg_basic' and 'vtr_reg_strong':
%(prog)s vtr_reg_basic vtr_reg_strong
Run regression tests 'vtr_reg_basic' and 'vtr_reg_strong'
with 8 parallel workers:
%(prog)s vtr_reg_basic vtr_reg_strong -j8
"""
)
parser = argparse.ArgumentParser(
prog=prog, description=description, epilog=epilog, formatter_class=RawDefaultHelpFormatter,
)
#
# Major arguments
#
parser.add_argument(
"reg_test", nargs="+", help="Regression tests to be run",
)
parser.add_argument(
"-create_golden",
default=False,
action="store_true",
help="Create golden reference results for the associated tasks",
)
parser.add_argument(
"-check_golden",
default=False,
action="store_true",
help="Check golden reference results for the associated tasks",
)
parser.add_argument(
"-parse", default=False, action="store_true", help="Only run the parse tests.",
)
parser.add_argument(
"-display_qor",
default=False,
action="store_true",
help="Displays the previous Qor test results",
)
parser.add_argument(
"-script",
default="run_vtr_flow.py",
help="Determines what flow script is used for the tests",
)
parser.add_argument(
"-skip_qor", default=False, action="store_true", help="Skips running the Qor tests",
)
parser.add_argument(
"-j",
default=1,
type=int,
metavar="NUM_PROC",
help="How many processors to use for execution.",
)
parser.add_argument(
"-calc_geomean",
default=False,
action="store_true",
help="Enable the calculation of the task geomeans.",
)
parser.add_argument(
"-show_failures",
default=False,
action="store_true",
help="Produce additional debug output",
)
parser.add_argument(
"-long_task_names", default=False, action="store_true", help="Display long task names",
)
return parser
def vtr_command_main(arg_list, prog=None):
"""
Run the given regression tests
"""
# Load the arguments
args = vtr_command_argparser(prog).parse_args(arg_list)
total_num_func_failures = 0
total_num_qor_failures = 0
tests_run = False
for reg_test in args.reg_test:
num_func_failures = 0
num_qor_failures = 0
if args.parse:
tests_run = True
num_qor_failures = parse_single_test(collect_task_list(reg_test))
elif args.check_golden:
tests_run = True
num_qor_failures = parse_single_test(collect_task_list(reg_test), check=True)
elif args.create_golden:
# Create golden results
num_qor_failures = 0
parse_single_test(collect_task_list(reg_test), create=True)
elif args.calc_geomean:
# Calculate geo mean values
num_qor_failures = 0
parse_single_test(collect_task_list(reg_test), calculate=True)
elif args.display_qor:
num_qor_failures = display_qor(reg_test)
elif reg_test.startswith("odin"):
total_num_func_failures += run_odin_test(args, reg_test)
else:
# Run any ODIN tests
print_header("Verilog-to-Routing Regression Testing")
tests_run = True
# Collect the task lists
vtr_task_list_files = collect_task_list(reg_test)
# Run the actual tasks, recording functionality failures
if vtr_task_list_files:
num_func_failures += run_tasks(args, vtr_task_list_files)
# Check against golden results
if not args.skip_qor and vtr_task_list_files:
num_qor_failures += parse_single_test(
vtr_task_list_files, check=True, calculate=True
)
print("\nTest '{}' had {} qor test failures".format(reg_test, num_qor_failures))
print("\nTest '{}' had {} run failures\n".format(reg_test, num_func_failures))
total_num_func_failures += num_func_failures
total_num_qor_failures += num_qor_failures
# Final summary
if (
tests_run
and total_num_func_failures == 0
and (total_num_qor_failures == 0 or args.skip_qor)
):
print("All tests passed")
elif tests_run and total_num_func_failures != 0 or total_num_qor_failures != 0:
print("Error: {} tests failed".format(total_num_func_failures + total_num_qor_failures))
sys.exit(total_num_func_failures + total_num_qor_failures)
def display_qor(reg_test):
""" Display the qor tests script files to be run outside of this script """
test_dir = paths.regression_tests_path / reg_test
if not (test_dir / "qor_geomean.txt").is_file():
print("QoR results do not exist ({}/qor_geomean.txt)".format(str(test_dir)))
return 1
print_header("{} QoR Results".format(reg_test))
with (test_dir / "qor_geomean.txt").open("r") as results:
# create list of desired values, their unit and how to display them.
data = OrderedDict()
data["revision"] = ["", "{}"]
data["date"] = ["", "{}"]
data["total_runtime"] = [" s", "%.3f"]
data["total_wirelength"] = [" units", "%.0f"]
data["num_clb"] = [" blocks", "%.2f"]
data["min_chan_width"] = [" tracks", "%.3f"]
data["crit_path_delay"] = [" ns", "%.3f"]
positions = OrderedDict()
position = 0
# get positions of headers that we want in the qor results
for header in results.readline().split():
if header in data:
positions[header] = position
position += 1
table = PrettyTable()
table.field_names = list(data.keys())
for line in results.readlines():
info = line.split()
row = []
for key, values in data.items():
if len(info) - 1 < positions[key]:
row += [""]
else:
if values[1] == "{}" or not info[positions[key]].isnumeric():
row += [("{}".format(info[positions[key]])) + values[0]]
else:
row += [(values[1] % float(info[positions[key]])) + values[0]]
table.add_row(row)
print(table)
return 0
def run_odin_test(args, test_name):
""" Run ODIN II test with given test name """
odin_reg_script = [
str(paths.odin_verify_path),
"--clean",
"-C",
str(paths.odin_output_on_error_path),
"--nb_of_process",
str(args.j),
"--test",
"{}/regression_test/benchmark/".format(str(paths.odin_path)),
]
if test_name == "odin_reg_full":
odin_reg_script[-1] += "suite/full_suite"
elif test_name == "odin_reg_syntax":
odin_reg_script[-1] += "task/syntax"
elif test_name == "odin_reg_arch":
odin_reg_script[-1] += "task/arch_sweep"
elif test_name == "odin_reg_operators":
odin_reg_script[-1] += "task/operators"
elif test_name == "odin_reg_large":
odin_reg_script[-1] += "task/large"
elif test_name == "odin_reg":
odin_reg_script[-1] += "task/full"
elif test_name == "odin_reg_micro":
odin_reg_script[-1] += "suite/light_suite"
else:
raise IOError("Test does not exist: {}".format(test_name))
odin_root = str(Path(odin_reg_script[0]).resolve().parent)
result = subprocess.call(odin_reg_script, cwd=odin_root)
assert result is not None
if result != 0:
# Error
print("FAILED test '{}'".format(test_name))
return 1
# Pass
print("PASSED test '{}'".format(test_name))
return 0
def collect_task_list(reg_test):
""" create a list of task files """
task_list_filepath = paths.tasks_path / "regression_tests" / reg_test / "task_list.txt"
if not task_list_filepath.is_file():
raise IOError("Test does not exist: {}".format(reg_test))
return str(task_list_filepath)
def run_tasks(args, task_lists):
"""Call 'run_vtr_task' with all the required arguments in the command"""
print_header("Running {}".format(args.reg_test[0]), "-", False)
vtr_task_cmd = ["-l"] + [task_lists]
vtr_task_cmd += ["-j", str(args.j), "-script", args.script]
if args.show_failures:
vtr_task_cmd += ["-show_failures"]
if not args.long_task_names:
vtr_task_cmd += ["-short_task_names"]
# Exit code is number of failures
print("scripts/run_vtr_task.py {} \n".format(" ".join(map(str, vtr_task_cmd))))
return run_vtr_task(vtr_task_cmd)
def parse_single_test(task_lists, check=True, calculate=True, create=False):
""" parse the test results """
vtr_task_cmd = ["-l"] + [task_lists]
if check:
vtr_task_cmd += ["-check_golden"]
if calculate:
vtr_task_cmd += ["-calc_geomean"]
if create:
vtr_task_cmd += ["-create_golden"]
# Exit code is number of failures
return run_vtr_task(vtr_task_cmd)
def print_header(heading, divider="=", print_first_line=True):
""" Print heading formated in the center of two lines """
if print_first_line:
print(divider * len(heading) * 2)
print(" " * int((len(heading) / 2)), end="")
print(heading)
print(divider * len(heading) * 2)
if __name__ == "__main__":
vtr_command_main(sys.argv[1:])