Replies: 5 comments 16 replies
-
Same problem here |
Beta Was this translation helpful? Give feedback.
-
Same here |
Beta Was this translation helpful? Give feedback.
-
This is because triton does not provide Windows binary, and I'm not sure if it's planned to do so. I should probably not print the warning on platforms other than x86_64 linux.. |
Beta Was this translation helpful? Give feedback.
-
I use ubuntu, CUDA 11.7 and have the same issue +1 |
Beta Was this translation helpful? Give feedback.
-
I seem to have found a fix for the problem, here are the steps I followed:
Note I don't know if version 12.1 is really needed, but I installed it because pytorch comes with CUDA 12.1 support 🤷♂️ UPD: Still works with newer versions, including the latest (12.4)
export PATH="$PATH:/usr/local/cuda/bin"
sudo reboot When I installed all this - the error did not go away, BUT - I found a solution!
sudo apt update
sudo apt install libnvidia-extra-530 After that the error with Triton disappeared :) |
Beta Was this translation helpful? Give feedback.
-
i use 3060ti 8g gpu ,win10. cuda 11.7
when i use --word_timestamps True ,it will show this twice :
C:\Users\xx\AppData\Local\Programs\Python\Python310\lib\site-packages\whisper\timing.py:42: UserWarning: Failed to launch Triton kernels, likely due to missing CUDA toolkit; falling back to a slower median kernel implementation...
warnings.warn(
C:\Users\xx\AppData\Local\Programs\Python\Python310\lib\site-packages\whisper\timing.py:146: UserWarning: Failed to launch Triton kernels, likely due to missing CUDA toolkit; falling back to a slower DTW implementation...
But the task can be executed and the correct srt can be obtained. How to fix this warning?
Beta Was this translation helpful? Give feedback.
All reactions