Skip to content

Commit e1ffb05

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 ca4f2d1 commit e1ffb05

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
@@ -2094,7 +2094,12 @@ argparse::ArgumentParser create_arg_parser(std::string prog_name, t_options& arg
20942094
" architectures)\n"
20952095
" * map: An advanced lookahead which accounts for diverse wire type\n"
20962096
" * extended_map: A more advanced and extended lookahead which accounts for a more\n"
2097-
" exhaustive node sampling method")
2097+
" exhaustive node sampling method\n"
2098+
"\n"
2099+
" The extended map differs from the map lookahead in the lookahead computation.\n"
2100+
" It is better suited for architectures that have specialized routing for specific\n"
2101+
" kinds of connections, but note that the time and memory necessary to compute the\n"
2102+
" extended lookahead map are greater than the basic lookahead map.\n")
20982103
.default_value("map")
20992104
.show_in(argparse::ShowIn::HELP_ONLY);
21002105

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)