From 637d1b014cce0e576b73f47965c53f75e338e44a Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Thu, 23 Oct 2025 09:44:44 +0300 Subject: [PATCH] Fix experts mul node name --- 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) {