Open mirozahorak opened 1 year ago
Posting this as a solution that worked for me: I added to .bashrc:
export PATH=/usr/local/cuda/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Although this is a rust binding variant of this error, if you're using the whisper-rs crate and you enable the cuda feature you MAY need to:
export CUDACXX=/usr/local/cuda-12.0/bin/nvcc
Might help somebody, but to get the nvcc command I had to run: sudo apt install nvidia-cuda-toolkit
Posting this as a solution that worked for me: I added to .bashrc:
export PATH=/usr/local/cuda/bin${PATH:+:${PATH}} export LD_LIBRARY_PATH=/usr/local/cuda/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
thank you @mirozahorak
Might help somebody, but to get the nvcc command I had to run:
sudo apt install nvidia-cuda-toolkit
HELPED ME!!
Thanks to all involved for great progress in all areas! This project is helping us tremendously.
I am testing new GPU support on LINUX Ubuntu machine with 4090 installed and CUDA running without problem. However, on WHISPER_CUBLAS=1 make -j i get error below. Any ideas?