Skip to content

Commit a0a746a

Browse files
committed
[vpr][CLI] set skip_sync default value to false
1 parent 499e83e commit a0a746a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vpr/src/base/read_options.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3098,7 +3098,9 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
30983098
analysis_grp.add_argument<bool, ParseOnOff>(args.skip_sync_clustering_and_routing_results, "--skip_sync_clustering_and_routing_results")
30993099
.help(
31003100
"Select to skip the synchronization on clustering results based on routing optimization results."
3101-
"Note that when this sync-up is disabled, clustering results may be wrong (leading to incorrect bitstreams)!");
3101+
"Note that when this sync-up is disabled, clustering results may be wrong (leading to incorrect bitstreams)!")
3102+
.default_value("off")
3103+
.show_in(argparse::ShowIn::HELP_ONLY);
31023104

31033105
analysis_grp.add_argument<bool, ParseOnOff>(args.generate_net_timing_report, "--generate_net_timing_report")
31043106
.help(

0 commit comments

Comments
 (0)