summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorHenk Poley <HenkPoley@gmail.com>2023-10-28 12:16:33 +0200
committerGitHub <noreply@github.com>2023-10-28 13:16:33 +0300
commit177461104b454163473dced2a5038f4e016cdb7e (patch)
tree7e072dd02f3478db2459ca19579437cc65c1ae02 /common
parentfdee152e4eebb78c191df0b074857111d7f2aba7 (diff)
common : print that one line of the syntax help *also* to standard output (#3823)
Diffstat (limited to 'common')
-rw-r--r--common/common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common.cpp b/common/common.cpp
index 44bb7661..c0d4924e 100644
--- a/common/common.cpp
+++ b/common/common.cpp
@@ -743,7 +743,7 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
#endif // GGML_USE_CUBLAS
#endif
printf(" --verbose-prompt print prompt before generation\n");
- fprintf(stderr, " --simple-io use basic IO for better compatibility in subprocesses and limited consoles\n");
+ printf(" --simple-io use basic IO for better compatibility in subprocesses and limited consoles\n");
printf(" --lora FNAME apply LoRA adapter (implies --no-mmap)\n");
printf(" --lora-scaled FNAME S apply LoRA adapter with user defined scaling S (implies --no-mmap)\n");
printf(" --lora-base FNAME optional model to use as a base for the layers modified by the LoRA adapter\n");