Can I use cublas library without intalling cuda? In case affirmative, the library run on GPU or CPU?
CUBLAS requires a CUDA-enabled driver and GPU to be installed to run. If you want to run on the CPU, you should use the original BLAS libraries.
Thank you Simon!