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 4408aef commit e5e30e8Copy full SHA for e5e30e8
1 file changed
cuda_bindings/tests/nvml/test_device.py
@@ -94,7 +94,8 @@ def test_device_get_performance_modes(all_devices):
94
@pytest.mark.skipif(cuda_version_less_than(13010), reason="Introduced in 13.1")
95
def test_device_get_unrepairable_memory_flag(all_devices):
96
for device in all_devices:
97
- status = nvml.device_get_unrepairable_memory_flag_v1(device)
+ with unsupported_before(device, None):
98
+ status = nvml.device_get_unrepairable_memory_flag_v1(device)
99
assert isinstance(status, int)
100
101
0 commit comments