Skip to content

Commit 16a457f

Browse files
authored
fix typo: n_ctx_pre_seq -> n_ctx_per_seq (#13221)
1 parent 3e168be commit 16a457f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llama-context.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ llama_context::llama_context(
114114
}
115115

116116
if (n_ctx_per_seq > hparams.n_ctx_train) {
117-
LLAMA_LOG_WARN("%s: n_ctx_pre_seq (%u) > n_ctx_train (%u) -- possible training context overflow\n",
117+
LLAMA_LOG_WARN("%s: n_ctx_per_seq (%u) > n_ctx_train (%u) -- possible training context overflow\n",
118118
__func__, n_ctx_per_seq, hparams.n_ctx_train);
119119
}
120120

0 commit comments

Comments
 (0)