Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NOCP][release/2.4] Skip failed unit tests in distributed/_composable/fully_shard/test_fully_shard_compile #1730

Open
wants to merge 1 commit into
base: release/2.4
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
FSDPTest,
TransformerWithSharedParams,
)
from torch.testing._internal.common_utils import run_tests, TEST_WITH_DEV_DBG_ASAN
from torch.testing._internal.common_utils import run_tests, TEST_WITH_DEV_DBG_ASAN, skipIfRocm
from torch.utils._triton import has_triton

if not dist.is_available():
Expand All @@ -39,6 +39,7 @@ def world_size(self) -> int:

@unittest.skipIf(not has_triton(), "Inductor+gpu needs triton and recent GPU arch")
@skip_if_lt_x_gpu(2)
@skipIfRocm # temp skip
def test_compile(self):
self.run_subtests(
{
Expand Down