Skip to content

Commit df30781

Browse files
authored
Update arg.cpp
1 parent d8077e9 commit df30781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/arg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1521,7 +1521,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex
15211521
).set_examples({LLAMA_EXAMPLE_MAIN, LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_LOOKUP}));
15221522
add_opt(common_arg(
15231523
{"-t", "--threads"}, "N",
1524-
string_format("number of CPU threads to use during generation (default: %d, use all available.)", params.cpuparams.n_threads),
1524+
string_format("number of CPU threads to use during generation (default: %d)", params.cpuparams.n_threads),
15251525
[](common_params & params, int value) {
15261526
params.cpuparams.n_threads = value;
15271527
if (params.cpuparams.n_threads <= 0) {

0 commit comments

Comments
 (0)