Skip to content

Commit 06d0a3d

Browse files
authored
[Bug fix] use correct func path in deepseek (#5496)
Signed-off-by: Xuchun Shang <[email protected]>
1 parent 22c2a79 commit 06d0a3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/sglang/srt/models/deepseek.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
170170
shared_output = self.shared_experts(hidden_states)
171171
# router_logits: (num_tokens, n_experts)
172172
router_logits, _ = self.gate(hidden_states)
173-
final_hidden_states = fused_moe(
173+
final_hidden_states = fused_moe.fused_moe(
174174
hidden_states,
175175
self.w1,
176176
self.w2,

0 commit comments

Comments
 (0)