Skip to content

Commit f8f8e32

Browse files
committed
Fix typos found by copilot
1 parent 78bbd69 commit f8f8e32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cuda_core/cuda/core/experimental/system/device.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ cdef class Device:
227227
`DeviceArchitecture.name == "Ampere"`. If the device returns an
228228
architecture that is unknown to NVML then `DeviceArchitecture.name ==
229229
"Unknown"` is reported, whereas an architecture that is unknown to
230-
cude.core.system is reported as `DeviceArchitecutre.name == "Unlisted"`.
230+
cuda.core.system is reported as `DeviceArchitecture.name == "Unlisted"`.
231231
"""
232232
return DeviceArchitecture(nvml.device_get_architecture(self._handle))
233233

cuda_core/tests/system/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010

1111

1212
skip_if_nvml_unsupported = pytest.mark.skipif(
13-
not NVML_SUPPORTED, reason="NVML support requires cuda.bindings version 12.9.5 or 13.1.1 or later"
13+
not NVML_SUPPORTED, reason="NVML support requires cuda.bindings version 12.9.5+ or 13.1.1+"
1414
)

0 commit comments

Comments
 (0)