2025-01-20 20:24:09 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
|
|
|
|
#
|
|
|
|
|
# Copyright 2025 by Wilson Snyder. This program is free software; you
|
|
|
|
|
# can redistribute it and/or modify it under the terms of either the GNU
|
|
|
|
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
|
# Version 2.0.
|
|
|
|
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
|
|
|
|
|
|
|
|
import vltest_bootstrap
|
|
|
|
|
|
|
|
|
|
test.scenarios('vlt_all')
|
|
|
|
|
test.init_benchmarksim()
|
|
|
|
|
test.cycles = (int(test.benchmark) if test.benchmark else 1000000)
|
|
|
|
|
test.sim_time = test.cycles * 10 + 1000
|
|
|
|
|
|
2025-03-24 23:39:29 +01:00
|
|
|
THREADS = int(os.environ["THREADS"]) if "THREADS" in os.environ else 4
|
|
|
|
|
HIER_BLOCK_THREADS = int(
|
|
|
|
|
os.environ["HIER_BLOCK_THREADS"]) if "HIER_BLOCK_THREADS" in os.environ else 2
|
|
|
|
|
|
|
|
|
|
config_file = test.t_dir + "/" + test.name + ".vlt"
|
|
|
|
|
|
|
|
|
|
test.compile(
|
|
|
|
|
benchmarksim=1,
|
|
|
|
|
v_flags2=[
|
|
|
|
|
config_file, "+define+SIM_CYCLES=" + str(test.cycles), "--prof-exec", "--hierarchical",
|
|
|
|
|
"--stats", "-Wno-UNOPTFLAT",
|
|
|
|
|
(f"-DWORKERS={HIER_BLOCK_THREADS}" if test.vltmt and HIER_BLOCK_THREADS > 1 else "")
|
|
|
|
|
],
|
|
|
|
|
threads=(THREADS if test.vltmt else 1))
|
2025-01-20 20:24:09 +01:00
|
|
|
|
|
|
|
|
test.file_grep(test.obj_dir + "/V" + test.name + "__hier.dir/V" + test.name + "__stats.txt",
|
2025-03-24 23:39:29 +01:00
|
|
|
r'Optimizations, Hierarchical DPI wrappers with costs\s+(\d+)', 6)
|
|
|
|
|
|
|
|
|
|
if test.vltmt:
|
|
|
|
|
test.file_grep(test.obj_dir + "/V" + test.name + "__hier.dir/V" + test.name + "__stats.txt",
|
|
|
|
|
r'Optimizations, Thread schedule count\s+(\d+)', 4)
|
|
|
|
|
test.file_grep(test.obj_dir + "/V" + test.name + "__hier.dir/V" + test.name + "__stats.txt",
|
|
|
|
|
r'Optimizations, Thread schedule total tasks\s+(\d+)', 10)
|
2025-01-20 20:24:09 +01:00
|
|
|
|
|
|
|
|
test.execute(all_run_flags=[
|
|
|
|
|
"+verilator+prof+exec+start+2",
|
|
|
|
|
" +verilator+prof+exec+window+2",
|
|
|
|
|
" +verilator+prof+exec+file+" + test.obj_dir + "/profile_exec.dat",
|
|
|
|
|
" +verilator+prof+vlt+file+" + test.obj_dir + "/profile.vlt"]) # yapf:disable
|
|
|
|
|
|
|
|
|
|
test.run(cmd=[
|
|
|
|
|
os.environ["VERILATOR_ROOT"] + "/bin/verilator_gantt", test.obj_dir +
|
|
|
|
|
"/profile_exec.dat", "--vcd " + test.obj_dir + "/profile_exec.vcd", "| tee " + test.obj_dir +
|
|
|
|
|
"/gantt.log"
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
test.passes()
|