Skip to content

Commit bb55021

Browse files
set default values for --router_initial_acc_cost_chan_congestion_weight and --router_initial_acc_cost_chan_congestion_threshold so that the realted feature is enabled by default
1 parent a392361 commit bb55021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/base/read_options.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2892,14 +2892,14 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
28922892
.help("Utilization threshold above which initial accumulated routing cost (acc_cost) "
28932893
"is increased to penalize congested channels. Used to bias routing away from "
28942894
"highly utilized regions during early routing iterations.")
2895-
.default_value("100.0")
2895+
.default_value("0.5")
28962896
.show_in(argparse::ShowIn::HELP_ONLY);
28972897

28982898
route_timing_grp.add_argument<double>(args.router_initial_acc_cost_chan_congestion_weight, "--router_initial_acc_cost_chan_congestion_weight")
28992899
.help("Weight applied to the excess channel utilization (above threshold) "
29002900
"when computing the initial accumulated cost (acc_cost)of routing resources. "
29012901
"Higher values make the router more sensitive to early congestion.")
2902-
.default_value("1.0")
2902+
.default_value("0.5")
29032903
.show_in(argparse::ShowIn::HELP_ONLY);
29042904

29052905
route_timing_grp.add_argument(args.router_max_convergence_count, "--router_max_convergence_count")

0 commit comments

Comments
 (0)