@@ -1516,7 +1516,7 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
1516
1516
gen_grp.add_argument <bool , ParseOnOff>(args.strict_checks , " --strict_checks" )
1517
1517
.help (
1518
1518
" Controls whether VPR enforces some consistency checks strictly (as errors) or treats them as warnings."
1519
- " Usually these checks indicate an issue with either the targetted architecture, or consistency issues"
1519
+ " Usually these checks indicate an issue with either the targeted architecture, or consistency issues"
1520
1520
" with VPR's internal data structures/algorithms (possibly harming optimization quality)."
1521
1521
" In specific circumstances on specific architectures these checks may be too restrictive and can be turned off."
1522
1522
" However exercise extreme caution when turning this option off -- be sure you completely understand why the issue"
@@ -2902,8 +2902,8 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio
2902
2902
noc_grp.add_argument <int >(args.noc_sat_routing_num_workers , " --noc_sat_routing_num_workers" )
2903
2903
.help (
2904
2904
" The maximum number of parallel threads that the SAT solver can use to explore the solution space.\n "
2905
- " When set to 0, the number of parallel workers is set automatically to maximize parallelism. " )
2906
- . default_value ( " 0 " )
2905
+ " If not explicitly specified by the user, VPR will set the number parallel SAT solver workers to the value "
2906
+ " specified by -j command line option. " )
2907
2907
.show_in (argparse::ShowIn::HELP_ONLY);
2908
2908
2909
2909
noc_grp.add_argument <bool , ParseOnOff>(args.noc_sat_routing_log_search_progress , " --noc_sat_routing_log_search_progress" )
0 commit comments