From 206fc84a0eaf7e265194968cf4b08debf83a29e2 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Wed, 10 Jul 2019 15:12:51 -0600 Subject: [PATCH] minor fix in fpga_flow --- fpga_flow/scripts/fpga_flow.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpga_flow/scripts/fpga_flow.pl b/fpga_flow/scripts/fpga_flow.pl index 8ee3801a9..49eda2e33 100644 --- a/fpga_flow/scripts/fpga_flow.pl +++ b/fpga_flow/scripts/fpga_flow.pl @@ -1790,7 +1790,7 @@ sub run_vpr_in_flow($ $ $ $ $ $ $ $ $ $ $ $) { my ($fix_chan_width) = ($benchmarks_ptr->{$benchmark_file}->{fix_route_chan_width}); # Remove previous route results if (-e $vpr_route) { - system(rm $vpr_route); + system("rm $vpr_route"); } # Keep increase min_chan_width until route success &run_std_vpr($abc_blif_out,$benchmark,$vpr_arch,$vpr_net,$vpr_place,$vpr_route,$fix_chan_width,$vpr_log,$act_file);