Skip to content

[release/2.5] [WHL] skip test if no hipcc #2057

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

Merged
merged 2 commits into from
Apr 29, 2025
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 test/test_cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
TestCase,
)
from torch.utils.checkpoint import checkpoint_sequential
from torch.utils.cpp_extension import ROCM_HOME
from torch.utils.viz._cycles import observe_tensor_cycles


Expand Down Expand Up @@ -4375,6 +4376,7 @@ def test_mempool_id(self):
# increments the id
self.assertTrue(abs(pool2[1] - pool1[1]) > 0)

@unittest.skipIf(TEST_WITH_ROCM and not ROCM_HOME, "ROCm requires hipcc compiler")
def test_mempool_with_allocator(self):
pool = torch.cuda.MemPool()

Expand Down