I have an old GPU GTX 870m.
I installed cupy by instructions, but nothing worked. At the same time, CUDA toolkit was installed successfully.
I try to use conda to install cupy and pip to install specific wheel version. It didn't help.
Easy sample don't work
import cupy
x = cupy.arange(6).reshape(2, 3).astype('f')
print(x.sum(axis=1))here
It displayed an error about problems with the driver
File "cupy\cuda\function.pyx", line 1, in init cupy.cuda.function
File "cupy\_core\_carray.pyx", line 1, in init cupy._core._carray
File "cupy\_core\internal.pyx", line 1, in init cupy._core.internal
File "cupy\cuda\memory.pyx", line 1, in init cupy.cuda.memory
ImportError: DLL load failed while importing driver
conda info shows:
virtual packages : __cuda=10.1=0
nvcc --version shows info about latest version.