From 96b8d55655f117ceea89c952c3b267c2ecd502b6 Mon Sep 17 00:00:00 2001 From: ddh0 Date: Wed, 30 Apr 2025 15:22:55 -0500 Subject: [PATCH] fix typo: `n_ctx_pre_seq` -> `n_ctx_per_seq` --- src/llama-context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama-context.cpp b/src/llama-context.cpp index e49225aa22433..5a2eef9b784a1 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); }