Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/unittest/_torch/modules/test_fused_moe.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,7 @@ def per_rank_test_fused_moe_alltoall_fp8_blockwise(job_id):
)
alltoall_model.to("cuda")
alltoall_model.load_weights([weights])
alltoall_model.post_load_weights()

# Use DeepGemmFusedMoE as reference
ref_model = DeepGemmFusedMoE(
Expand All @@ -755,6 +756,7 @@ def per_rank_test_fused_moe_alltoall_fp8_blockwise(job_id):
)
ref_model.to("cuda")
ref_model.load_weights([weights])
ref_model.post_load_weights()

# Evaluate the outputs on variant sequence lengths
m = MAX_NUM_TOKENS
Expand Down
Loading