From: Jürgen Schmied Date: Tue, 30 Jun 2026 15:57:14 +0000 (+0200) Subject: model : register t_layer_inp for qwen3next (#25141) X-Git-Tag: upstream/0.0.10438~588 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=4f31eedb0ccf546b7e8d6bb243b170f12522f54d;p=pkg%2Fggml%2Fsources%2Fllama.cpp model : register t_layer_inp for qwen3next (#25141) * Fix input assignment in layer processing loop Fix DFLASH for qwen-coder-next * add line break Added tensor for attention normalization in Qwen3 model. --- diff --git a/src/models/qwen3next.cpp b/src/models/qwen3next.cpp index 97200a440..09b66423d 100644 --- a/src/models/qwen3next.cpp +++ b/src/models/qwen3next.cpp @@ -121,6 +121,8 @@ llama_model_qwen3next::graph::graph(const llama_model & model, const llm_graph_p ggml_tensor * inp_out_ids = build_inp_out_ids(); for (int il = 0; il < n_layer; ++il) { + res->t_layer_inp[il] = inpL; + ggml_tensor * inpSA = inpL; cur = build_norm(inpL, model.layers[il].attn_norm, nullptr, LLM_NORM_RMS, il);