We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79ad986 commit a199e2bCopy full SHA for a199e2b
2 files changed
cuda_bindings/tests/nvml/test_nvlink.py
@@ -12,7 +12,7 @@ def test_nvlink_get_link_count(all_devices):
12
for device in all_devices:
13
fields = nvml.FieldValue(0)
14
assert len(nvml.device_get_field_values(device, fields)) == 0
15
-
+
16
assert len(nvml.device_get_field_values(device, [])) == 0
17
18
fields = nvml.FieldValue(1)
cuda_core/tests/system/test_system_device.py
@@ -360,7 +360,7 @@ def test_field_values():
360
# TODO: Are there any fields that return double's? It would be good to
361
# test those.
362
363
- assert len(device.get_field_values([])) == 0
+ assert len(device.get_field_values([])) == 0
364
365
field_ids = [
366
system.FieldId.DEV_TOTAL_ENERGY_CONSUMPTION,
0 commit comments