fix typo: `n_ctx_pre_seq` -> `n_ctx_per_seq` (#13221)

This commit is contained in:
ddh0 2025-04-30 15:28:43 -05:00 committed by GitHub
parent 3e168bede4
commit 16a457facd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ llama_context::llama_context(
} }
if (n_ctx_per_seq > hparams.n_ctx_train) { 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); __func__, n_ctx_per_seq, hparams.n_ctx_train);
} }