mirror of https://github.com/lnis-uofu/SOFA.git
[Script] Bug fix in outputting post-pnr testbenches
This commit is contained in:
parent
8c6d122fa3
commit
5ae1424754
|
@ -69,6 +69,7 @@ logging.info("Converting pre-PnR testbench to post-PnR testbench...");
|
|||
for curr_pre_pnr_testbench_file in pre_pnr_testbench_files:
|
||||
logging.info("\nProcessing " + curr_pre_pnr_testbench_file + " testbench:\n")
|
||||
curr_post_pnr_testbench_file = re.sub("_autocheck_top_tb.v$", "_post_pnr_autocheck_top_tb.v", curr_pre_pnr_testbench_file)
|
||||
curr_post_pnr_testbench_file = re.sub("\/prepnr\/", "\/postpnr\/", curr_post_pnr_testbench_file)
|
||||
cmd = "python3 ./post_pnr_testbench_converter.py " \
|
||||
+ " --pre_pnr_testbench " + curr_pre_pnr_testbench_file \
|
||||
+ " --post_pnr_testbench " + curr_post_pnr_testbench_file
|
||||
|
|
Loading…
Reference in New Issue