Skip to content

Commit 759d350

Browse files
committed
[document] add router_profiler_astar_fac to command line doc
1 parent 164b453 commit 759d350

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

doc/src/vpr/command_line_usage.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1298,6 +1298,13 @@ The following options are only valid when the router is in timing-driven mode (t
12981298

12991299
**Default:** ``1.2``
13001300

1301+
.. option:: --router_profiler_astar_fac <float>
1302+
Controls the directedness of the timing-driven router's exploration when doing router delay profiling.
1303+
The router delay profiling step is currently used to calculate the place delay matrix lookup.
1304+
Values between 1 and 2 are resonable; higher values trade some quality for reduced run-time.
1305+
1306+
**Default:** ``1.2``
1307+
13011308
.. option:: --max_criticality <float>
13021309

13031310
Sets the maximum fraction of routing cost that can come from delay (vs. coming from routability) for any net.

vpr/src/base/read_options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1889,7 +1889,7 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
18891889
"What algorithm should be used to compute the place delta matrix.\n"
18901890
"\n"
18911891
" * astar : Find delta delays between OPIN's and IPIN's using\n"
1892-
" the router with the current --astar_fac.\n"
1892+
" the router with the current --router_profiler_astar_fac.\n"
18931893
" * dijkstra : Use Dijkstra's algorithm to find all shortest paths \n"
18941894
" from sampled OPIN's to all IPIN's.\n")
18951895
.default_value("astar")

0 commit comments

Comments
 (0)