Skip to content

Commit 62f83f4

Browse files
committed
Fix test
1 parent 260c34f commit 62f83f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cuda_core/tests/system/test_system_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ def test_nvlink():
770770
max_links = _device.NvlinkInfo.max_links
771771
assert isinstance(max_links, int)
772772
assert max_links > 0
773-
if nvml_version >= (3, 13) and cuda_bindings_version > (13, 3, 1):
773+
if nvml_version >= (13, 3) and cuda_bindings_version > (13, 3, 1):
774774
assert max_links == 36
775775
else:
776776
assert max_links == 18

0 commit comments

Comments
 (0)