Skip to content

Commit f4a8850

Browse files
committed
add skip parameter to routing and remove sb_count
1 parent ea09e80 commit f4a8850

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/Compiler/CompilerOpenFPGA_ql.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2348,7 +2348,6 @@ std::tuple<std::string, std::string> CompilerOpenFPGA_ql::BaseVprCommandLEGACY(Q
23482348
vpr_options += " --preserve_output_pin_connections off";
23492349
vpr_options += " --annotated_rr_graph on";
23502350
vpr_options += " --remove_dangling_nodes off";
2351-
vpr_options += " --sb_count_dir sb_count";
23522351
// this is always enabled in the default Aurora flow, so don't add here.
23532352
// if that is removed, only then uncomment this.
23542353
// vpr_options += " --allow_dangling_combinational_nodes on";
@@ -2733,7 +2732,6 @@ CommandWrapperPtr CompilerOpenFPGA_ql::BaseVprCommand(QLDeviceTarget device_targ
27332732
command->append("--preserve_output_pin_connections off");
27342733
command->append("--annotated_rr_graph on");
27352734
command->append("--remove_dangling_nodes off");
2736-
command->append("--sb_count_dir sb_count");
27372735
// this is always enabled in the default Aurora flow, so don't add here.
27382736
// if that is removed, only then uncomment this.
27392737
// command->append("--allow_dangling_combinational_nodes on");
@@ -9569,6 +9567,7 @@ CommandWrapperPtr CompilerOpenFPGA_ql::getRoutingCommand()
95699567
command->append(vpr_found_router_initial_acc_cost_chan_congestion_weight_param_string);
95709568
}
95719569

9570+
command->append("--skip_sync_clustering_and_routing_results on");
95729571
command->append("--route");
95739572

95749573
return command;

0 commit comments

Comments
 (0)