From 678e3181ba3a0e9893aedbb58f24c60a83a0d662 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Mon, 16 Sep 2019 21:22:13 -0600 Subject: [PATCH 1/2] Made compact_routing_hierarchy options uncond --- openfpga_flow/scripts/run_fpga_flow.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openfpga_flow/scripts/run_fpga_flow.py b/openfpga_flow/scripts/run_fpga_flow.py index e1cec5bb8..a4ae24e18 100644 --- a/openfpga_flow/scripts/run_fpga_flow.py +++ b/openfpga_flow/scripts/run_fpga_flow.py @@ -659,6 +659,9 @@ def run_standard_vpr(bench_blif, fixed_chan_width, logfile, route_only=False): if args.vpr_use_tileable_route_chan_width: command += ["--use_tileable_route_chan_width"] + if args.vpr_fpga_x2p_compact_routing_hierarchy: + command += ["--fpga_x2p_compact_routing_hierarchy"] + # FPGA_Spice Options if (args.power and args.vpr_fpga_spice): command += ["--fpga_spice"] @@ -668,8 +671,6 @@ def run_standard_vpr(bench_blif, fixed_chan_width, logfile, route_only=False): if args.vpr_fpga_x2p_sim_window_size: command += ["--fpga_x2p_sim_window_size", args.vpr_fpga_x2p_sim_window_size] - if args.vpr_fpga_x2p_compact_routing_hierarchy: - command += ["--fpga_x2p_compact_routing_hierarchy"] if args.vpr_fpga_spice_sim_mt_num: command += ["--fpga_spice_sim_mt_num", From 169732ccc1dace6357d61a2831aaa6283ccdd593 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Tue, 17 Sep 2019 22:09:37 -0600 Subject: [PATCH 2/2] Added verbose option in VVP output --- openfpga_flow/scripts/run_fpga_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfpga_flow/scripts/run_fpga_flow.py b/openfpga_flow/scripts/run_fpga_flow.py index a4ae24e18..9cb187b94 100644 --- a/openfpga_flow/scripts/run_fpga_flow.py +++ b/openfpga_flow/scripts/run_fpga_flow.py @@ -854,7 +854,7 @@ def run_netlists_verification(): command += [tb_top_autochecked] run_command("iverilog_verification", "iverilog_output.txt", command) - vvp_command = ["vvp", "-Ns", compiled_file] + vvp_command = ["vvp", "-Nvs", compiled_file] output = run_command("vvp_verification", "vvp_sim_output.txt", vvp_command) if "Succeed" in output: logger.info("VVP Simulation Successful")