Skip to content

Commit 139ff4b

Browse files
committed
Remove duplicate option in print_usage()
1 parent 50e2ecf commit 139ff4b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/imatrix/imatrix.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
static void print_usage(int, char ** argv) {
2727
LOG("\nexample usage:\n");
2828
LOG("\n %s \\\n"
29-
" -m model.gguf -f some-text.txt [-o imatrix.gguf] [--process-output] [--no-ppl] \\\n"
30-
" [--chunk 123] [--output-frequency 10] [--save-frequency 0] [--show-statistics] \\\n"
31-
" [--no-ppl] [--in-file imatrix-prev-0.gguf --in-file imatrix-prev-1.gguf ...] \\\n"
32-
" [--parse-special] [...]\n" , argv[0]);
29+
" -m model.gguf -f some-text.txt [-o imatrix.gguf] [--no-ppl] \\\n"
30+
" [--process-output] [--chunk 123] [--save-frequency 0] [--output-frequency 10] \\\n"
31+
" [--in-file imatrix-prev-0.gguf --in-file imatrix-prev-1.gguf ...] [--parse-special] \\\n"
32+
" [--show-statistics] [...]\n" , argv[0]);
3333
LOG("\n");
3434
}
3535

0 commit comments

Comments
 (0)