Skip to content
Open
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
6 changes: 6 additions & 0 deletions tests/unittest/_torch/modules/moe/test_moe_comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -2613,6 +2613,12 @@ def test_moe_comm_non_divisible_ep(self, mpi_pool_executor, group: CommTestGroup
_run_full_test_group(mpi_pool_executor, group)

@pytest.mark.threadleak(enabled=False)
@pytest.mark.skip(
reason=(
"Temporarily waived pending NCCL-EP CUDA-graph replay fix: "
"https://nvbugspro.nvidia.com/bug/6523820"
)
)
@pytest.mark.parametrize("mpi_pool_executor", [2], indirect=True)
def test_nccl_ep_cuda_graph_replay_uses_updated_routing(self, mpi_pool_executor) -> None:
"""Verify LL CUDA graph replay reads routing written after capture."""
Expand Down
Loading