Skip to content

Astar Profiler Document #2538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions doc/src/vpr/command_line_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1298,6 +1298,13 @@ The following options are only valid when the router is in timing-driven mode (t

**Default:** ``1.2``

.. option:: --router_profiler_astar_fac <float>
Controls the directedness of the timing-driven router's exploration when doing router delay profiling of an architecture.
The router delay profiling step is currently used to calculate the place delay matrix lookup.
Values between 1 and 2 are resonable; higher values trade some quality for reduced run-time.

**Default:** ``1.2``

.. option:: --max_criticality <float>

Sets the maximum fraction of routing cost that can come from delay (vs. coming from routability) for any net.
Expand Down
4 changes: 2 additions & 2 deletions vpr/src/base/read_options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1889,7 +1889,7 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
"What algorithm should be used to compute the place delta matrix.\n"
"\n"
" * astar : Find delta delays between OPIN's and IPIN's using\n"
" the router with the current --astar_fac.\n"
" the router with the current --router_profiler_astar_fac.\n"
" * dijkstra : Use Dijkstra's algorithm to find all shortest paths \n"
" from sampled OPIN's to all IPIN's.\n")
.default_value("astar")
Expand Down Expand Up @@ -2479,7 +2479,7 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
route_timing_grp.add_argument(args.router_profiler_astar_fac, "--router_profiler_astar_fac")
.help(
"Controls the directedness of the timing-driven router's exploration"
" when doing router delay profiling."
" when doing router delay profiling of an architecture."
" The router delay profiling step is currently used to calculate the place delay matrix lookup."
" Values between 1 and 2 are resonable; higher values trade some quality for reduced run-time")
.default_value("1.2")
Expand Down
Loading