From 33bbe0ec489805098101b10f713cc4d9e140f25f Mon Sep 17 00:00:00 2001 From: Andrew Lukefahr Date: Tue, 6 Oct 2020 15:09:22 -0400 Subject: [PATCH] FLOW: fixed display flag --- openfpga_flow/scripts/run_fpga_flow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openfpga_flow/scripts/run_fpga_flow.py b/openfpga_flow/scripts/run_fpga_flow.py index 46b242a75..223b20190 100644 --- a/openfpga_flow/scripts/run_fpga_flow.py +++ b/openfpga_flow/scripts/run_fpga_flow.py @@ -596,7 +596,7 @@ def run_pro_blif_3arg(): def collect_files_for_vpr(): # Sanitize provided Benchmark option 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 ""): clean_up_and_exit("Provided Blif file not found") 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: command += ["--disp", "off"] + else: + command += ["--disp", "on"] + if route_only: command += ["--route"] # Power options