Skip to content

Commit e8ca84d

Browse files
authored
fix
1 parent 2867524 commit e8ca84d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightllm/common/basemodel/layer_weights/meta_weights/fused_moe_weight_ep_redundancy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ def _fuse(self):
109109
self.w2[0] = qw2
110110
self.w2[1] = qw2_scale
111111
else:
112-
self.w1[0] = self._cuda(w1)
113-
self.w2[0] = self._cuda(w2)
112+
self.w1[0] = w1
113+
self.w2[0] = w2
114114
delattr(self, "w2_list")
115115
delattr(self, "experts_up_projs")
116116
delattr(self, "experts_gate_projs")

0 commit comments

Comments
 (0)