Skip to content

Commit aefe2f1

Browse files
committed
address review comments
- Added better description on the user options - Added test with random_shuffle nodes reordering Signed-off-by: Alessandro Comodi <[email protected]>
1 parent d9d1ed8 commit aefe2f1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

vpr/src/base/read_options.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2099,7 +2099,12 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg
20992099
" architectures)\n"
21002100
" * map: An advanced lookahead which accounts for diverse wire type\n"
21012101
" * extended_map: A more advanced and extended lookahead which accounts for a more\n"
2102-
" exhaustive node sampling method")
2102+
" exhaustive node sampling method\n"
2103+
"\n"
2104+
" The extended map differs from the map lookahead in the lookahead computation.\n"
2105+
" It is better suited for architectures that have specialized routing for specific\n"
2106+
" kinds of connections, but note that the time and memory necessary to compute the\n"
2107+
" extended lookahead map are greater than the basic lookahead map.\n")
21032108
.default_value("map")
21042109
.show_in(argparse::ShowIn::HELP_ONLY);
21052110

vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_router_lookahead/config/config.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ script_params_common = -starting_stage vpr --route_chan_width 60
2828
script_params_list_add = --router_lookahead classic
2929
script_params_list_add = --router_lookahead map
3030
script_params_list_add = --router_lookahead extended_map
31+
script_params_list_add = --router_lookahead extended_map --reorder_rr_graph_nodes_algorithm random_shuffle

0 commit comments

Comments
 (0)