Skip to content

Commit 3f59942

Browse files
committed
Hmm...
1 parent 7348546 commit 3f59942

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/models/llm_build_qwen3next.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,7 @@ ggml_tensor * llm_build_qwen3next::build_qwen3next_linear_attn_layer(llm_graph_i
715715
// cb(conv_output_proper, "conv_output_proper", il);
716716

717717
conv_output_proper = ggml_cont(ctx0, ggml_transpose(ctx0, conv_output_proper));
718+
cb(conv_output_proper, "conv_output_pre_silu", il);
718719

719720
ggml_tensor * conv_output_silu = ggml_silu(ctx0, conv_output_proper);
720721
cb(conv_output_silu, "conv_output_silu", il);
@@ -867,7 +868,7 @@ ggml_tensor * llm_build_qwen3next::build_layer_ffn(ggml_tensor * cur, const llam
867868
cb(cur, "ffn_out", il);
868869
}
869870
return cur;
870-
};
871+
}
871872

872873
ggml_tensor * llm_build_qwen3next::softplus(ggml_tensor * alpha, ggml_tensor * dt_bias) {
873874
ggml_tensor * alpha_biased = ggml_add(ctx0, alpha, dt_bias); // a + dt_bias

0 commit comments

Comments
 (0)