Make antirez GGUFs run at least (#2254)

This commit is contained in:
Forkoz 2026-08-04 13:00:19 +00:00 committed by GitHub
parent f8b5664c18
commit 0a93e73a72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -1295,7 +1295,8 @@ ggml_cgraph * llm_build_context::build_deepseek4() {
}
const int n_layer_begin = is_mtp ? n_layer - hparams.nextn_predict_layers : 0;
for (int il = n_layer_begin; il < n_layer; ++il) {
const int n_layer_end = is_mtp ? n_layer : n_layer - hparams.nextn_predict_layers;
for (int il = n_layer_begin; il < n_layer_end; ++il) {
auto cur = ds4_attention(gf, ctx0, *this, inpL,
&append_csa_state, &append_csa_score,