Whisper crash #2441
-
When I start Whisper on CUDA, I see such error. I tried .mp4, .mkv and .m4a files, result is the same. My graphics card is Radeon RX 7600, I already installed ROCm version 6.2 and installed pytorch with
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
The RX 7600 is not officially supported according to this AMD ROCm 6.2.4 system requirements page. https://rocm.docs.amd.com/projects/install-on-linux/en/latest/reference/system-requirements.html |
Beta Was this translation helpful? Give feedback.
-
Finally I solved this with env variable P. S. This solution helps me to start ollama models on GPU too. |
Beta Was this translation helpful? Give feedback.
-
It seems like you have to put the env variable HAS_OVERRIDE_GFX_VERSION set to a specific number, based upon your videoboard. In my case the env setted up to 10.3.0 works with the RX 6600. I spent the whole day here trying to figure out what was happening before finding the @viktorprogger solve, thank you so much my friend. |
Beta Was this translation helpful? Give feedback.
Finally I solved this with env variable
HSA_OVERRIDE_GFX_VERSION
set to11.0.0
. Whisper works on GPU, and I have no more problems.I still don't know why
11.0.2
doesn't work, but I'm glad I can use GPU for transcription.P. S. This solution helps me to start ollama models on GPU too.