Skip to content

Commit c9fcf98

Browse files
authored
Merge pull request #2538 from verilog-to-routing/astar_profiler_doc
Astar Profiler Document
2 parents 164b453 + c145633 commit c9fcf98

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

doc/src/vpr/command_line_usage.rst

+7
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 of an architecture.
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

+2-2
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")
@@ -2479,7 +2479,7 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
24792479
route_timing_grp.add_argument(args.router_profiler_astar_fac, "--router_profiler_astar_fac")
24802480
.help(
24812481
"Controls the directedness of the timing-driven router's exploration"
2482-
" when doing router delay profiling."
2482+
" when doing router delay profiling of an architecture."
24832483
" The router delay profiling step is currently used to calculate the place delay matrix lookup."
24842484
" Values between 1 and 2 are resonable; higher values trade some quality for reduced run-time")
24852485
.default_value("1.2")

0 commit comments

Comments
 (0)