cuda.core 1.0.1 Release Notes#
Released on May 12, 2026
Fixes and enhancements#
Fixed
ImportErrorwhen importingcuda.corewithcuda-bindings13.0.x due to an unavailable driver function (cuDevSmResourceSplit). (#2063, #2064)When iterating over MIG devices with
cuda.core.system.Device.mig.get_all_devices, only available MIG devices will be returned. Previously, if any MIG device was unavailable, an exception would be raised. (#2065)When converting an NVML device (
cuda.core.system.Device) to a CUDA device (cuda.core.Device), usingcuda.core.system.Device.to_cuda_device, if the device does not have a matching CUDA device, aRuntimeErrorwill be raised. Previously, acuda.core.system.InvalidArgumentErrorwould be raised. For example, this may happen for physical devices on a MIG system.