From: ddh0 Date: Wed, 30 Apr 2025 20:28:43 +0000 (-0500) Subject: fix typo: `n_ctx_pre_seq` -> `n_ctx_per_seq` (#13221) X-Git-Tag: upstream/0.0.5318~83 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=16a457facd996915652f6274384c87602b27d21a;p=pkg%2Fggml%2Fsources%2Fllama.cpp fix typo: `n_ctx_pre_seq` -> `n_ctx_per_seq` (#13221) --- diff --git a/src/llama-context.cpp b/src/llama-context.cpp index e49225aa..5a2eef9b 100644 --- a/src/llama-context.cpp +++ b/src/llama-context.cpp @@ -114,7 +114,7 @@ llama_context::llama_context( } if (n_ctx_per_seq > hparams.n_ctx_train) { - LLAMA_LOG_WARN("%s: n_ctx_pre_seq (%u) > n_ctx_train (%u) -- possible training context overflow\n", + LLAMA_LOG_WARN("%s: n_ctx_per_seq (%u) > n_ctx_train (%u) -- possible training context overflow\n", __func__, n_ctx_per_seq, hparams.n_ctx_train); }