From a539c6a2a7f36287f3e9caaf4170d39b1eb878ce Mon Sep 17 00:00:00 2001 From: tangxifan Date: Wed, 3 Jul 2019 14:11:14 -0600 Subject: [PATCH] bug fixing in fpga_flow.pl --- fpga_flow/scripts/fpga_flow.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fpga_flow/scripts/fpga_flow.pl b/fpga_flow/scripts/fpga_flow.pl index fe81f3b39..23cb76067 100644 --- a/fpga_flow/scripts/fpga_flow.pl +++ b/fpga_flow/scripts/fpga_flow.pl @@ -1476,6 +1476,9 @@ sub run_vpr_route($ $ $ $ $ $ $ $ $) if (($fix_chan_width > 0)||($fix_chan_width == 0)) { $chan_width_opt = "-route_chan_width $fix_chan_width"; } + if ("on" eq $opt_ptr->{vpr_use_tileable_route_chan_width}) { + $chan_width_opt = $chan_width_opt." --use_tileable_route_chan_width"; + } my ($vpr_spice_opts) = (""); if (("on" eq $opt_ptr->{power})&&("on" eq $opt_ptr->{vpr_fpga_spice})) {