Skip to content

Commit 39ded1b

Browse files
committed
Fix regression
1 parent 2d1ce89 commit 39ded1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exllamav3/modules/block_sparse_mlp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def forward(
345345
# selected_experts, routing_weights = routing_ds3(bsz, self.routing_cfg, y, params)
346346
else:
347347
# selected_experts, routing_weights = routing(bsz, self.routing_cfg, y, params)
348-
selected_experts, routing_weights = ext.blocksparse_mlp_routing(bsz, self.routing_cfg, y, params, False)
348+
selected_experts, routing_weights = ext.blocksparse_mlp_routing(bsz, self.routing_cfg, y, params)
349349

350350
# Torch path
351351
if bsz > 1 or not self.is_quantized:

0 commit comments

Comments
 (0)