Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarghi-nv committed Dec 9, 2024
1 parent 0635b77 commit a9d0c2d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ def runtest(rank: int, world_size: int):
@pytest.mark.skipif(
get_cudart_version() < 11080, reason="not compatible with CUDA < 11.8"
)
@pytest.mark.skipif(
not torch.cuda.is_available(), reason="PyTorch not installed with CUDA support"
)
def test_feature_storage_wholegraph_backend():
world_size = torch.cuda.device_count()
print("gpu count:", world_size)
Expand All @@ -94,6 +97,9 @@ def test_feature_storage_wholegraph_backend():
@pytest.mark.skipif(
get_cudart_version() < 11080, reason="not compatible with CUDA < 11.8"
)
@pytest.mark.skipif(
not torch.cuda.is_available(), reason="PyTorch not installed with CUDA support"
)
def test_feature_storage_wholegraph_backend_mg():
world_size = torch.cuda.device_count()
print("gpu count:", world_size)
Expand Down

0 comments on commit a9d0c2d

Please sign in to comment.