From fd8090b71f0606012ecd951f36ab0d64d9fadaec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20du=20Hamel?= Date: Mon, 15 Jan 2024 18:02:24 +0100 Subject: [PATCH] fix usage format --- common/common.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index af9a853e3..02f9f6e31 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -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(" -tb N, --threads-batch N\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(" number of threads to use during batch and prompt processing (default: same as --threads-draft)\n"); printf(" -p PROMPT, --prompt PROMPT\n");