From a02e042eb9f105e83bb9eed0e9db123d562c3891 Mon Sep 17 00:00:00 2001 From: pudepiedj Date: Wed, 4 Oct 2023 11:01:57 +0100 Subject: [PATCH] Corrected typo --- examples/parallel/parallel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/parallel/parallel.cpp b/examples/parallel/parallel.cpp index f0e49249b..25ca2d063 100644 --- a/examples/parallel/parallel.cpp +++ b/examples/parallel/parallel.cpp @@ -399,7 +399,7 @@ int main(int argc, char ** argv) { LOG_TEE("\n%s: n_parallel = %d, n_sequences = %d, cont_batching = %d, system tokens = %d\n", __func__, n_clients, n_seq, cont_batching, n_tokens_system); if (params.prompt_file.empty()) { - params.prompt_file = "used build-in defaults"; + params.prompt_file = "used built-in defaults"; } printf("External prompt file: \033[32m%s\033[0m\n", params.prompt_file.c_str()); printf("Model and path used: \033[32m%s\033[0m\n\n", params.model.c_str());