We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc9e77 commit 3566c1dCopy full SHA for 3566c1d
cuda_bindings/tests/nvml/test_device.py
@@ -153,7 +153,8 @@ def test_set_power_management_limit(all_devices):
153
154
def test_set_temperature_threshold(all_devices):
155
for device in all_devices:
156
- with unsupported_before(device, nvml.DeviceArch.MAXWELL):
+ # Docs say supported on MAXWELL or newer
157
+ with unsupported_before(device, None):
158
temp = nvml.device_get_temperature_threshold(
159
device, nvml.TemperatureThresholds.TEMPERATURE_THRESHOLD_ACOUSTIC_CURR
160
)
0 commit comments