Skip to content
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions tests/unittests/image/test_ms_ssim.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ def _run_ms_ssim_ddp(rank: int, world_size: int, free_port: int):
cleanup_ddp()


@pytest.mark.DDP
@pytest.mark.skipif(not torch.cuda.is_available(), reason="test requires cuda")
@pytest.mark.skipif(_IS_WINDOWS, reason="DDP not supported on Windows")
def test_ms_ssim_reduction_none_ddp():
Expand Down
1 change: 1 addition & 0 deletions tests/unittests/image/test_ssim.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ def _run_ssim_ddp(rank: int, world_size: int, free_port: int):
cleanup_ddp()


@pytest.mark.DDP
@pytest.mark.skipif(not torch.cuda.is_available(), reason="test requires cuda")
@pytest.mark.skipif(_IS_WINDOWS, reason="DDP not supported on Windows")
def test_ssim_reduction_none_ddp():
Expand Down
Loading