mirror of https://github.com/lnis-uofu/SOFA.git
Update MSIM/common/run_post_pnr_msim_task.py
Co-authored-by: Ashton Snelgrove <ashton.snelgrove@utah.edu>
This commit is contained in:
parent
2f741ecc15
commit
77dfb469b5
|
@ -70,7 +70,7 @@ threads = []
|
|||
for testbench_file in testbench_files:
|
||||
# Find testbench name
|
||||
testbench_name = re.findall("(\w+)_include_netlists.v", os.path.basename(testbench_file))[0]
|
||||
process = threading.Thread(target=run_post_pnr_msim_test.run_msim, args=(testbench_file, msim_task_dir_abspath + "/" + testbench_name, testbench_name + "_autocheck_top_tb",))
|
||||
process = multiprocessing.Process(target=run_post_pnr_msim_test.run_msim, args=(testbench_file, msim_task_dir_abspath + "/" + testbench_name, testbench_name + "_autocheck_top_tb",))
|
||||
process.start()
|
||||
threads.append(process)
|
||||
|
||||
|
|
Loading…
Reference in New Issue