The nvcuda backend is broken as python-cuda 13 reorganized its internal structure.
Trying to use the nvcuda backend results in an error "cuda-python not installed".
However, the real reason is that KT imports modules that no longer exist in python-cuda 13.0.1:
|
from cuda import cuda, cudart, nvrtc |
Results in:
>>> from cuda import cuda, cudart, nvrtc
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name 'cuda' from 'cuda' (unknown location)