We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4079dd commit 1e23bf8Copy full SHA for 1e23bf8
cuda_core/tests/test_memory.py
@@ -396,9 +396,9 @@ def test_vmm_allocator_policy_configuration():
396
if not device.properties.virtual_memory_management_supported:
397
pytest.skip("Virtual memory management is not supported on this device")
398
399
- # Skip if GPU Direct RDMA is supported (we want to test the unsupported case)
+ # Skip if GPU Direct RDMA is not supported
400
if not device.properties.gpu_direct_rdma_supported:
401
- pytest.skip("This test requires a device that doesn't support GPU Direct RDMA")
+ pytest.skip("This test requires a device that supports GPU Direct RDMA")
402
403
# Test with custom VMM config
404
custom_config = VirtualMemoryResourceOptions(
0 commit comments