Skip to content

Commit dec7667

Browse files
committed
vpr: Add deprecated/experimental notes to VPR help
1 parent 624442c commit dec7667

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vpr/src/base/read_options.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,7 @@ static argparse::ArgumentParser create_arg_parser(std::string prog_name, t_optio
14121412
route_grp.add_argument<e_router_algorithm, ParseRouterAlgorithm>(args.RouterAlgorithm, "--router_algorithm")
14131413
.help(
14141414
"Specifies the router algorithm to use.\n"
1415-
" * breadth_first: focuses solely on routability\n"
1415+
" * breadth_first: focuses solely on routability [DEPRECATED, inferior quality & run-time]\n"
14161416
" * timing_driven: focuses on routability and circuit speed\n")
14171417
.default_value("timing_driven")
14181418
.choices({"breadth_first", "timing_driven"})
@@ -1474,8 +1474,8 @@ static argparse::ArgumentParser create_arg_parser(std::string prog_name, t_optio
14741474
route_timing_grp.add_argument<e_routing_budgets_algorithm, RouteBudgetsAlgorithm>(args.routing_budgets_algorithm, "--routing_budgets_algorithm")
14751475
.help(
14761476
"Controls how the routing budgets are created.\n"
1477-
" * slack: Sets the budgets depending on the amount slack between connections and the current delay values.\n"
1478-
" * criticality: Sets the minimum budgets to 0 and the maximum budgets as a function of delay and criticality (net delay/ pin criticality)\n"
1477+
" * slack: Sets the budgets depending on the amount slack between connections and the current delay values. [EXPERIMENTAL]\n"
1478+
" * criticality: Sets the minimum budgets to 0 and the maximum budgets as a function of delay and criticality (net delay/ pin criticality) [EXPERIMENTAL]\n"
14791479
" * disable: Removes the routing budgets, use the default VPR and ignore hold time constraints\n")
14801480
.default_value("disable")
14811481
.choices({"minimax", "scale_delay", "disable"})

0 commit comments

Comments
 (0)