Skip to content

Commit 3566c1d

Browse files
committed
Fix tests on even more hardware
1 parent 6fc9e77 commit 3566c1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cuda_bindings/tests/nvml/test_device.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,8 @@ def test_set_power_management_limit(all_devices):
153153

154154
def test_set_temperature_threshold(all_devices):
155155
for device in all_devices:
156-
with unsupported_before(device, nvml.DeviceArch.MAXWELL):
156+
# Docs say supported on MAXWELL or newer
157+
with unsupported_before(device, None):
157158
temp = nvml.device_get_temperature_threshold(
158159
device, nvml.TemperatureThresholds.TEMPERATURE_THRESHOLD_ACOUSTIC_CURR
159160
)

0 commit comments

Comments
 (0)