fix usage format

This commit is contained in:
Stéphane du Hamel 2024-01-15 18:02:24 +01:00
parent 92edbe48b8
commit fd8090b71f

View file

@ -845,7 +845,8 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
printf(" -t N, --threads N number of threads to use during generation (default: %d)\n", params.n_threads); printf(" -t N, --threads N number of threads to use during generation (default: %d)\n", params.n_threads);
printf(" -tb N, --threads-batch N\n"); printf(" -tb N, --threads-batch N\n");
printf(" number of threads to use during batch and prompt processing (default: same as --threads)\n"); printf(" number of threads to use during batch and prompt processing (default: same as --threads)\n");
printf(" -td N, --threads-draft N number of threads to use during generation (default: %d)\n", params.n_threads); printf(" -td N, --threads-draft N");
printf(" number of threads to use during generation (default: %d)\n", params.n_threads_draft);
printf(" -tbd N, --threads-batch-draft N\n"); printf(" -tbd N, --threads-batch-draft N\n");
printf(" number of threads to use during batch and prompt processing (default: same as --threads-draft)\n"); printf(" number of threads to use during batch and prompt processing (default: same as --threads-draft)\n");
printf(" -p PROMPT, --prompt PROMPT\n"); printf(" -p PROMPT, --prompt PROMPT\n");