Open chrisspen opened 10 months ago
Do you have to install the cuBLAS/cuDNN libraries for CUDA 11, or will it also work with the CUDA 12 versions?
You've to install the cuBLAS/cuDNN libraries for CUDA 11, libs for CUDA 12 won't work.
You can try to copy manually from -> https://github.com/Purfview/whisper-standalone-win/releases/tag/libs
If you have to use cuda 12 and want a quick hacky fix, one way to try is:
ln -s /usr/local/cuda/lib64/libcublas.so.12 /usr/local/cuda/lib64/libcublas.so.11
since ctranslate2 uses standard cublas apis, this usually won't produce an error. You can keep all other configs as-is.
ln -s /usr/local/cuda/lib64/libcublas.so.12 /usr/local/cuda/lib64/libcublas.so.11
can confirm presently working for me on Fedora 39 on python3.9 with cudnn-local-repo-rhel9-9.0.0-1.0-1.x86_64.rpm , nvhpc-24-1-24.1-1.x86_64
Do you have to install the cuBLAS/cuDNN libraries for CUDA 11, or will it also work with the CUDA 12 versions?
nvidia-smi
says my GPU supports CUDA 12.1, so can I get away with using the CUDA 12 libraries?I also installed CUDA with:
I see that's also no provided some Nvidia packages like
nvidia-cudnn
andlibcublas11
but if I try to install them, I get a ton of package conflicts like:Do I already have what I need or do I still need to install
cudnn-local-repo-ubuntu2204-8.9.7.29_1.0-1_amd64.deb
?