Skip to content

Commit 5f5521b

Browse files
Fix parameter order in GPT-OSS weight loading function for non-MXFP4 weights (#29506)
Signed-off-by: Filipp Fisin <[email protected]> Co-authored-by: Cyrus Leung <[email protected]>
1 parent b2c1d29 commit 5f5521b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/model_executor/models/gpt_oss.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,8 +647,8 @@ def load_weights(self, weights: Iterable[tuple[str, torch.Tensor]]) -> set[str]:
647647
)
648648
else:
649649
return self._load_weights_other(
650-
ep_rank_start,
651650
ep_rank_end,
651+
ep_rank_start,
652652
heads_per_rank,
653653
head_start,
654654
weights,

0 commit comments

Comments
 (0)