-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cudnn ops64_9.dll is not found #1080
Comments
Can you try something? Try installing the following libraries into your virtual environment:
And then in your script running
|
Good. anyway
didn't work before because it installed the latest Now
works. I'm happy for it now anyway. |
So can you recap exactly what you did please? Like...did you install |
No problem. I used
This was a workaround follows #958, it was a valid workaround because CTranslate2 didn't support cuDNN 9. Now CTranslate2 is updated and makes another cuDNN element missing error with
|
Ok great...Torch 2.5.0 is the latest stable version...so basically, faster-whisper is ALREADY compatible with torch 2.5.0 (and the corresponding version of torchaudio)? And what version of CUDA are you running by chance? Did you install the individual libraries like I suggested or are you relying on a system-wide installation? Thanks again. |
I'm using CUDA 12.4 from the official nvidia site: https://developer.nvidia.com/cuda-12-4-0-download-archive And as far as I know, CUDA 12.6 also has no problem running with the latest |
I’m encountering an issue when running Faster Whisper in a Google Colab environment. The code crashes which might be related to the ctranslate2 with the following error: Unable to load any of {libcudnn_ops.so.9.1.0, libcudnn_ops.so.9.1, libcudnn_ops.so.9, libcudnn_ops.so} Could you advise on how to resolve this error when running Faster Whisper in Colab? |
+1 to the Colab error above. |
Downgrade ctranslate2: |
Can confirm, it works! Thank you! |
Yes you have to downgrade to
It is more of a CUDA 12.1 vs Colab uses CUDA 12.2 and |
im using |
I didn't understand your question, I'm sorry, because of the typos. "subsai"? "cudnn_ips..."? And are you doing a different setup...""but i had a different torch and cuda"? Can you clearly say what worked previously and what's not working now? I'm a little confused. |
Just a note about what I've experienced here:
Since OpenNMT/CTranslate2#1803 is merged and
ctranslate2
version is now bumped to 4.5.0,I got
cudnn ops64_9.dll is not found
error which means cuDNN version mismatch.This only happens with
torch <= 2.3.1
, fixed by upgrading totorch >= 2.4.0
. (Tested on Windows)It seems faster-whisper now needs
torch >= 2.4.0
with the latest CTranslate2 update.The text was updated successfully, but these errors were encountered: