]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
fix typo: `n_ctx_pre_seq` -> `n_ctx_per_seq` (#13221)
authorddh0 <redacted>
Wed, 30 Apr 2025 20:28:43 +0000 (15:28 -0500)
committerGitHub <redacted>
Wed, 30 Apr 2025 20:28:43 +0000 (21:28 +0100)
src/llama-context.cpp

index e49225aa22433ef04261c09d6ef82d5fddb0bc4e..5a2eef9b784a12a71d49707a26c02b8f6c1f5b46 100644 (file)
@@ -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);
     }