I have a speech to text project built on faster-whisper/CT2. With the recent ROCm support release, I added AMD GPU support to my project.
My project has a pre-built windows exe via pyinstaller, so I made a new version that bundles the CTranslate2 ROCm Windows wheel. But the problem is that the wheel is built against ROCm 7.2 and the latest HIP SDK Installer for Windows only goes up to 7.1.1
I thought they might be compatible anyways, but it turns out that libhipblas.dll in 7.1.1 changed to hipblas.dll in 7.2, causing a crash when CT2 loads. I personally run a custom version of CT2 built to work with an older GPU, and for that ROCm version (6.2) the file is also named hipblas.dll
Would be great to have the window wheels be compatible with the latest HIP installer, since that allows my users to only use windows installers without dealing with python/pip/etc
I have a speech to text project built on faster-whisper/CT2. With the recent ROCm support release, I added AMD GPU support to my project.
My project has a pre-built windows exe via pyinstaller, so I made a new version that bundles the CTranslate2 ROCm Windows wheel. But the problem is that the wheel is built against ROCm 7.2 and the latest HIP SDK Installer for Windows only goes up to 7.1.1
I thought they might be compatible anyways, but it turns out that
libhipblas.dllin 7.1.1 changed tohipblas.dllin 7.2, causing a crash when CT2 loads. I personally run a custom version of CT2 built to work with an older GPU, and for that ROCm version (6.2) the file is also namedhipblas.dllWould be great to have the window wheels be compatible with the latest HIP installer, since that allows my users to only use windows installers without dealing with python/pip/etc