FLOW: fixed display flag
This commit is contained in:
parent
7d5dbab304
commit
33bbe0ec48
|
@ -596,7 +596,7 @@ def run_pro_blif_3arg():
|
||||||
def collect_files_for_vpr():
|
def collect_files_for_vpr():
|
||||||
# Sanitize provided Benchmark option
|
# Sanitize provided Benchmark option
|
||||||
if len(args.benchmark_files) > 1:
|
if len(args.benchmark_files) > 1:
|
||||||
logger.error("Expecting Single Benchmark BLif file.")
|
logger.error("Expecting Single Benchmark Blif file.")
|
||||||
if not os.path.isfile(args.benchmark_files[0] or ""):
|
if not os.path.isfile(args.benchmark_files[0] or ""):
|
||||||
clean_up_and_exit("Provided Blif file not found")
|
clean_up_and_exit("Provided Blif file not found")
|
||||||
shutil.copy(args.benchmark_files[0], args.top_module+".blif")
|
shutil.copy(args.benchmark_files[0], args.top_module+".blif")
|
||||||
|
@ -721,6 +721,9 @@ def run_standard_vpr(bench_blif, fixed_chan_width, logfile, route_only=False):
|
||||||
]
|
]
|
||||||
if not args.disp:
|
if not args.disp:
|
||||||
command += ["--disp", "off"]
|
command += ["--disp", "off"]
|
||||||
|
else:
|
||||||
|
command += ["--disp", "on"]
|
||||||
|
|
||||||
if route_only:
|
if route_only:
|
||||||
command += ["--route"]
|
command += ["--route"]
|
||||||
# Power options
|
# Power options
|
||||||
|
|
Loading…
Reference in New Issue