From 856c6da9c17bf41758d6347d9631f45b041abbf9 Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Thu, 23 Oct 2025 09:46:01 +0300 Subject: [PATCH] Fix experts mul node name (#857) Co-authored-by: Iwan Kawrakow --- src/llama-build-context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama-build-context.cpp b/src/llama-build-context.cpp index 3e55cc59..5a5e1f27 100644 --- a/src/llama-build-context.cpp +++ b/src/llama-build-context.cpp @@ -942,7 +942,7 @@ llm_expert_gating_func_type gating_op, if (!weight_before_ffn) { experts = ggml_mul(ctx, experts, weights); - cb(cur, "ffn_moe_weighted", il); + cb(experts, "ffn_moe_weighted", il); } if (n_expert_used == 1) {