OpenNMT / CTranslate2

Fast inference engine for Transformer models
https://opennmt.net/CTranslate2
MIT License
3.2k stars 281 forks source link

Feature request: AMD GPU support with oneDNN AMD support #1072

Open santhoshtr opened 1 year ago

santhoshtr commented 1 year ago

Hi, CTranslate2 uses oneDNN. oneDNN latest versions has support for AMD GPU. It require Intel oneAPI DPC++. The same approach can potentially enable NVIDIA GPU support too.

It would help running the MT models on AMD GPUs. With Rocm, this would be a full opensource way to run MT models in GPUs.

Thanks

guillaumekln commented 1 year ago

Hello,

Currently we only use oneDNN for specific operators such as matrix multiplications and convolutions, but a full MT models contains many other operators (softmax, layer norm, gather, concat, etc.). Even though some of them are available in oneDNN, it would require quite some work to specialize all operations for AMD GPUs.

At this time I don't plan to work on this feature, but it would indeed be a nice one to have!

leuc commented 1 year ago

I wanted to try faster whisper on a Intel A770 dGPU 16GB. A complete use of oneDNN could also enable that hardware support.

towel commented 1 year ago

Migrating a transcription component to faster-whisper, and using an AMD GPU, I'd also appreciate faster-whisper with ROCm support even more.

phineas-pta commented 1 year ago

@towel did you manage to get faster-whisper working on AMD ?

CristianPi commented 1 year ago

any way to run with an amd gpu?

MidnightKittenCat commented 1 year ago

Any update on this?

guillaumekln commented 1 year ago

I still don't plan to work on this at this time, and as far as I know no one else is working on this. I expect it would be quite some work to have a complete ROCm support.

lenhone commented 12 months ago

I had a go at converting the existing cuda stuff to rocm a few months ago but could never get it to build, not surprising as I have zero C++ or cmakelists skills.

curand, cublas, cudnn, cuda, cub appear to map to hip with minor adjustments, but I could never get the cmakelists to include thrust (the version supplied by rocm) and it always halted compiling due to producing too many errors.

TheJKM commented 10 months ago

I started trying to port CTranslate2 to ROCm last weekend and decided to share my (non-working) results here. The code is available in the rocm Branch of my fork.

Basically, hipify was able to convert most of the code automatically. I added a new CMake config option to enable compiling with ROCm, and so far calling the HIP compiler works, however it breaks the other options and requires a CMake version new enough to have HIP language support.

Current issues are some CUDA library dependencies I did not look at yet, and the use of bfloat16 data type. While latest ROCm has a (according to this GH issue -> https://github.com/RadeonOpenCompute/ROCm/issues/2534) drop-in replacement for the CUDA bf16, it currently has some issues in missing operators. Therefore, I'm trying to completely disable bf16 for now, but without luck so far.

This work has right now just the goal of making it work, and not integrating HIP/ROCm into the (CMake) infrastructure.

In case someone wants to have a look at the code and help porting, feel free to look at my fork. Unfortunately, I don't expect to have much time in the near future for this project.

BBC-Esq commented 10 months ago

This is awesome dude. Wish I had programming experience to help with this, but alas I don't. I've been looking for ways to enable gpu acceleration for amd gpus using ctranslate2...Let me know if I can help in any way, whether it be by testing or what have you.

BBC-Esq commented 10 months ago

Have you gotten it to work at all yet?

MidnightKittenCat commented 10 months ago

Have you gotten it to work at all yet?

“I started trying to port CTranslate2 to ROCm last weekend and decided to share my (non-working) results here”

I believe that should answer your question.

commandline-be commented 8 months ago

I started trying to port CTranslate2 to ROCm last weekend and decided to share my (non-working) results here. The code is available in the rocm Branch of my fork.

Basically, hipify was able to convert most of the code automatically. I added a new CMake config option to enable compiling with ROCm, and so far calling the HIP compiler works, however it breaks the other options and requires a CMake version new enough to have HIP language support.

Current issues are some CUDA library dependencies I did not look at yet, and the use of bfloat16 data type. While latest ROCm has a (according to this GH issue -> ROCm/ROCm#2534) drop-in replacement for the CUDA bf16, it currently has some issues in missing operators. Therefore, I'm trying to completely disable bf16 for now, but without luck so far.

This work has right now just the goal of making it work, and not integrating HIP/ROCm into the (CMake) infrastructure.

In case someone wants to have a look at the code and help porting, feel free to look at my fork. Unfortunately, I don't expect to have much time in the near future for this project.

Thanks for sharing, much interested in the ripple effects this port may have for others projects.

There's now ROCM 6.0 available which I believe addresses specifically what you're referencing.

FYI: https://repo.radeon.com/amdgpu/6.0/ubuntu/dists/jammy/

I've tried all kinds of dumb uninformed stuff trying to get libretranslate to work with rocm to no avail. It depens on too recent cuda to be tricked by rocm. Latest pytorch+rocm5.7 also did not work out well.

https://rocm.docs.amd.com/projects/install-on-linux/en/latest/how-to/3rd-party/pytorch-install.html

commandline-be commented 8 months ago

So, would it make sense to create an experimental version of ctranslate2 using a more recnet oneDNN which does have AMD GPU support ?

from https://github.com/oneapi-src/oneDNN oneAPI Deep Neural Network Library (oneDNN) is an open-source cross-platform performance library of basic building blocks for deep learning applications. oneDNN is part of oneAPI. The library is optimized for Intel(R) Architecture Processors, Intel Graphics, and Arm 64-bit Architecture (AArch64)-based processors. oneDNN has experimental support for the following architectures: NVIDIA GPU, AMD GPU, OpenPOWER Power ISA (PPC64), IBMz* (s390x), and RISC-V.

https://github.com/oneapi-src/oneDNN?tab=readme-ov-file#system-requirements SYCL runtime with AMD GPU support requires oneAPI DPC++ Compiler with support for HIP AMD AMD ROCm, version 5.3 or later MIOpen, version 2.18 or later (optional if AMD ROCm includes the required version of MIOpen) rocBLAS, version 2.45.0 or later (optional if AMD ROCm includes the required version of rocBLAS)

https://github.com/oneapi-src/oneDNN/blob/main/src/gpu/amd/README.md Support for AMD backend is implemented via SYCL HIP backend. The feature is disabled by default. Users must enable it at build time with a CMake option DNNL_GPU_VENDOR=AMD. The AMD GPUs can be used via oneDNN engine abstraction. The engine should be created using dnnl::engine::kind::gpu engine kind or the user can provide a sycl::device objects that corresponds to AMD GPUs.

vince62s commented 8 months ago

As said in the Feb 2023 comment "Even though some of them are available in oneDNN, it would require quite some work to specialize all operations for AMD GPUs." Since no one is making those changes, it won't move on.

katzmike commented 5 months ago

I am not a developer but I work at AMD and handle developer relationships. We would like to assist with the effort to enable CTranslate2 for AMD dGPUs and iGPU. We will have engineers investigate, but we may also be able to provide hardware to the lead contributors of this effort. Please contact me via michael dot katz at amd dot com if this would help.

radna0 commented 2 months ago

is there any update on this?

kvrban commented 2 months ago

is there any update on this?

I suspect Lisa and Jensen have a deal that AMD only gets the crumbs from the AI pie. So there is nothing left for us peasant to continue paying the nvidia tax.

DDXDB commented 1 month ago

So, would it make sense to create an experimental version of ctranslate2 using a more recnet oneDNN which does have AMD GPU support ?

from https://github.com/oneapi-src/oneDNN oneAPI Deep Neural Network Library (oneDNN) is an open-source cross-platform performance library of basic building blocks for deep learning applications. oneDNN is part of oneAPI. The library is optimized for Intel(R) Architecture Processors, Intel Graphics, and Arm 64-bit Architecture (AArch64)-based processors. oneDNN has experimental support for the following architectures: NVIDIA GPU, AMD GPU, OpenPOWER Power ISA (PPC64), IBMz* (s390x), and RISC-V.

https://github.com/oneapi-src/oneDNN?tab=readme-ov-file#system-requirements SYCL runtime with AMD GPU support requires oneAPI DPC++ Compiler with support for HIP AMD AMD ROCm, version 5.3 or later MIOpen, version 2.18 or later (optional if AMD ROCm includes the required version of MIOpen) rocBLAS, version 2.45.0 or later (optional if AMD ROCm includes the required version of rocBLAS)

https://github.com/oneapi-src/oneDNN/blob/main/src/gpu/amd/README.md Support for AMD backend is implemented via SYCL HIP backend. The feature is disabled by default. Users must enable it at build time with a CMake option DNNL_GPU_VENDOR=AMD. The AMD GPUs can be used via oneDNN engine abstraction. The engine should be created using dnnl::engine::kind::gpu engine kind or the user can provide a sycl::device objects that corresponds to AMD GPUs.

Does that mean Intel ARC Gpus can also be supported?

chboishabba commented 1 month ago

https://bbs.archlinux.org/viewtopic.php?pid=2183865#p2183865

yeetmanpat commented 1 month ago

This has just been released: https://docs.scale-lang.com/

Could someone more technical see whether this toolkit would make running ctranslate2 on AMD possible?

genehand commented 1 month ago

For whisper.cpp at least, it now supports vulkan as a gpu backend. With home assistant this is working well for me through https://github.com/ser/wyoming-whisper-api-client

tannisroot commented 1 month ago

For whisper.cpp at least, it now supports vulkan as a gpu backend. With home assistant this is working well for me through https://github.com/ser/wyoming-whisper-api-client

Personally, on my hardware, even with GPU acceleration, whisper.cpp is way slower than faster-whisper using the same model and CPU, and the transcription time is also very unpredictable.

chboishabba commented 1 month ago

Try whisperx if you are able to use faster-whisper, it does distraction and has a better VAD...

On Fri, Aug 2, 2024, 2:10 PM Aleksandr Oleinikov @.***> wrote:

For whisper.cpp at least, it now supports vulkan as a gpu backend https://github.com/ggerganov/whisper.cpp/pull/2302. With home assistant this is working well for me through https://github.com/ser/wyoming-whisper-api-client

Personally, on my hardware, even with GPU acceleration, whisper.cpp is way slower than faster-whisper using the same model and CPU, and the transcription time is also very unpredictable.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2264500385, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3STLKCH2XVHLRM6NCLZPMBDVAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENRUGUYDAMZYGU . You are receiving this because you commented.Message ID: @.***>

chboishabba commented 1 month ago

Diarisation

On Fri, Aug 2, 2024, 3:21 PM Johl Brown @.***> wrote:

Try whisperx if you are able to use faster-whisper, it does distraction and has a better VAD...

On Fri, Aug 2, 2024, 2:10 PM Aleksandr Oleinikov @.***> wrote:

For whisper.cpp at least, it now supports vulkan as a gpu backend https://github.com/ggerganov/whisper.cpp/pull/2302. With home assistant this is working well for me through https://github.com/ser/wyoming-whisper-api-client

Personally, on my hardware, even with GPU acceleration, whisper.cpp is way slower than faster-whisper using the same model and CPU, and the transcription time is also very unpredictable.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2264500385, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3STLKCH2XVHLRM6NCLZPMBDVAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENRUGUYDAMZYGU . You are receiving this because you commented.Message ID: @.***>

tannisroot commented 1 month ago

whisperx

I don't believe there is a way to hook it up to the Wyoming protocol, which is my sole usecase for it.

genehand commented 1 month ago

Personally, on my hardware, even with GPU acceleration, whisper.cpp is way slower than faster-whisper using the same model and CPU, and the transcription time is also very unpredictable.

Alright with rocm 6.2 supporting my gpu now I was curious to do a quick test. Using the medium model and this test file, here's what I'm seeing:

project backend beam size transcribe time
faster-whisper cpu 5 1m26.002s
whisper.cpp vulkan 5 1m24.906s
whisper.cpp rocm 5 59.834s
faster-whisper rocm 5 37.649s

This is with an i5-10400F and RX5700 using code adapted from the readme:

model_size = "medium"
model = WhisperModel(model_size, device="cpu", compute_type="int8", cpu_threads=12)
segments, info = model.transcribe("tests/data/physicsworks.wav", beam_size=5, language="en")

Edit: Lowered cpu_threads from the default 16 with improved results. Edit 2: Added faster-whisper with @arlo-phoenix's fork

commandline-be commented 1 month ago

I am not a developer but I work at AMD and handle developer relationships. We would like to assist with the effort to enable CTranslate2 for AMD dGPUs and iGPU. We will have engineers investigate, but we may also be able to provide hardware to the lead contributors of this effort. Please contact me via michael dot katz at amd dot com if this would help.

can a first be to test this against Zluda? https://github.com/vosen/ZLUDA ( run CUDA on AMD)

I look forward to being able to run ctranslate2 with GPU acceleration without requiring to buy an nvidia

arlo-phoenix commented 1 month ago

I ported CTranslate2 over to ROCm. My fork is here: https://github.com/arlo-phoenix/CTranslate2-rocm and install instructions can be found under README_ROCM.md. I also wrote about the issues I had and the libraries using CT2 I tested.

Status Tracker

Instead of using oneDNN I just hipified the repo and extracted HIP to CUDA function mapping to create a preprocessor solution similar to projects like llama.cpp. Besides the listed stuff it is feature complete and works very well. I included some benchmark scripts with the file from https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2267170398 (@genehand would be nice if you could try this and add the numbers to a table!). On my RX6800 I'm getting 11s-12s with faster_whisper and 4.2s with whisperX. For RDNA this should now be the fastest working whisper inference solution :)

Btw should we split issues up? This is two combined into one. I personally believe porting all operators to oneDNN is far too much effort and might not even lead to good performance. This repo hipified quite well, I was able to use simple defines from HIP to CUDA functions for the majority of the project. I only had to rewrite the conv1d operator from scratch since hipDNN isn't maintained anymore.

BBC-Esq commented 1 month ago

@arlo-phoenix Can you add the "issues" tab on your github so we can communicate that way? I'm possibly interested in incorporating this into my projects.

yeetmanpat commented 4 weeks ago

Thanks @arlo-phoenix I've successfully installed it. Using your benchmark I get 8-9 seconds on faster_whisper with an RX 7800 XT. I tried testing with whisperx but cannot get it to work, I get OSError: libtorch_cuda.so no such file.

chboishabba commented 4 weeks ago

Did you install pytorch with CUDA?

eg.

pip install torch==2.3.1 torchvision==0.18.1 torchaudio==2.3.1 --index-url https://download.pytorch.org/whl/cu118

https://pytorch.org/get-started/locally/

On Thu, Aug 8, 2024 at 7:08 AM yeetmanpat @.***> wrote:

Thanks @arlo-phoenix https://github.com/arlo-phoenix I've successfully installed it. Using your benchmark I get 8-9 seconds on faster_whisper with an RX 7800 XT. I tried testing with whisperx but cannot get it to work, I get OSError: libtorch_cuda.so no such file.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2274350144, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3WC77TQ3NWXXICG4NTZQKEFLAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENZUGM2TAMJUGQ . You are receiving this because you commented.Message ID: @.***>

chboishabba commented 4 weeks ago

Sorry just read you're using RX 7800, you will need pytorch-rocm which is only available on linux

pip install torch==2.3.1 torchvision==0.18.1 torchaudio==2.3.1 --index-url https://download.pytorch.org/whl/rocm6.0

On Thu, Aug 8, 2024 at 7:08 AM yeetmanpat @.***> wrote:

Thanks @arlo-phoenix https://github.com/arlo-phoenix I've successfully installed it. Using your benchmark I get 8-9 seconds on faster_whisper with an RX 7800 XT. I tried testing with whisperx but cannot get it to work, I get OSError: libtorch_cuda.so no such file.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2274350144, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3WC77TQ3NWXXICG4NTZQKEFLAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENZUGM2TAMJUGQ . You are receiving this because you commented.Message ID: @.***>

genehand commented 3 weeks ago

(@genehand would be nice if you could try this and add the numbers to a table!). On my RX6800 I'm getting 11s-12s with faster_whisper and 4.2s with whisperX. For RDNA this should now be the fastest working whisper inference solution :)

Nice! I’m traveling now but will definitely try that out after the weekend. 👏

BBC-Esq commented 3 weeks ago

Any idea if this will work on WSL on Windows?

arlo-phoenix commented 3 weeks ago

I updated my fork to work with ROCm 6.2, install instructions are still here (there's some regression? / not well documented change for MIOpen GetWorkspaceSize which makes it return 0 causing the following functions to trigger fallbacks which caused a significant slowdown. I don't think this is the correct solution, but just reusing the last workspace size worked in my short time testing.) I also enabled the use of the AsyncAllocator in CT2 (had a CUDA_VERSION guard that I missed) which improved faster-whisper consistency and speed (whisperX is almost 6% faster now because of this).


I tried testing with whisperx but cannot get it to work, I get OSError: libtorch_cuda.so no such file.

@yeetmanpat as @chboishabba said that's a typical torch error. I added install instructions for whisperX that worked for me.


Nice! I’m traveling now but will definitely try that out after the weekend. 👏

@genehand Nice. But just as a warning, I realized it might not work after all since this relies on MIOpen which depends on composable_kernel which afaik isn't made / tuned for RDNA 1. It's still worth a try though.


Any idea if this will work on WSL on Windows?

depends on your GPU. ROCm WSL is officially only supported on RX7800W+ (source). This doesn't have as many dependencies as pytorch, but it's still up there. If you can't run pytorch you likely can't run this.

chboishabba commented 3 weeks ago

Amazing to have ROCm support for ct2, if anyone is able to assist regarding older cards supporting newer ROCm versions, this would massively increase the number of AMD cards able to run ML apps. I can get whisper to run on gpu using below docker but ran into issues with ct2, tested a few months ago...

I'm running on RX580 which was highly sought after during GPU shortages of COVID... I believe latest supported ROCm for gfx803 and gfx900 is 5.4.2

https://github.com/jrcichra/rocm-pytorch-gfx803 https://wiki.archlinux.org/title/AMD_Radeon_Instinct_MI25#ROCm

On Sat, Aug 10, 2024 at 11:10 PM Arlo Phoenix @.***> wrote:

I updated my fork to work with ROCm 6.2, install instructions are still here https://github.com/arlo-phoenix/CTranslate2-rocm/blob/rocm/README_ROCM.md (there's some regression? / not well documented change for MIOpen GetWorkspaceSize which makes it return 0 causing the following functions to trigger fallbacks which caused a significant slowdown. I don't think this is the correct solution, but just reusing the last workspace size worked in my short time testing.) I also enabled the use of the AsyncAllocator in CT2 (had a CUDA_VERSION guard that I missed) which improved faster-whisper consistency and speed (whisperX is almost 6% faster now because of this).

@yeetmanpat https://github.com/yeetmanpat as @chboishabba https://github.com/chboishabba said that's a typical torch error. I added install instructions https://github.com/arlo-phoenix/CTranslate2-rocm/blob/rocm/README_ROCM.md#whisperX for whisperX that worked for me.

Nice! I’m traveling now but will definitely try that out after the weekend. 👏

@genehand https://github.com/genehand Nice. But just as a warning, I realized it might not work after all since this relies on MIOpen which depends on composable_kernel which afaik isn't made / tuned for RDNA 1. It's still worth a try though.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2281675853, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3UOYFGSKAY6H4IIK63ZQYGLXAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEOBRGY3TKOBVGM . You are receiving this because you were mentioned.Message ID: @.***>

genehand commented 3 weeks ago

I realized it might not work after all since this relies on MIOpen which depends on composable_kernel which afaik isn't made / tuned for RDNA 1. It's still worth a try though.

Updated the table with faster-whisper results (includes loading the model) 😄 So far I'm not able to run whisperx, after messing with batch_size and HSA_OVERRIDE_GFX_VERSION I'm still running into what sounds like what you mentioned:

RuntimeError: HIP error: invalid device function
HIP kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect.
For debugging consider passing AMD_SERIALIZE_KERNEL=3
Compile with `TORCH_USE_HIP_DSA` to enable device-side assertions.
chboishabba commented 3 weeks ago

This is a rocm version error, check your drivers and that you have rocm-pytorch eg from my link above

I get HSA override error because rx580 isn't supported by rocm6 so I don't think it shows as a device.

You can test it's a torch error with torch.cuda.is_enabled() will show true even with AMD cards if rocm is working

On Wed, Aug 14, 2024, 3:37 AM Gene Hand @.***> wrote:

I realized it might not work after all since this relies on MIOpen which depends on composable_kernel which afaik isn't made / tuned for RDNA 1. It's still worth a try though.

Updated the table with faster-whisper results (includes loading the model) 😄 So far I'm not able to run whisperx, after messing with batch_size and HSA_OVERRIDE_GFX_VERSION I'm still running into what sounds like what you mentioned:

RuntimeError: HIP error: invalid device function HIP kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect. For debugging consider passing AMD_SERIALIZE_KERNEL=3 Compile with TORCH_USE_HIP_DSA to enable device-side assertions.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2286779934, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3WVKFR3KKTKV5YLKATZRI77HAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEOBWG43TSOJTGQ . You are receiving this because you were mentioned.Message ID: @.***>

chboishabba commented 3 weeks ago

Sorry is_available() I think

On Wed, Aug 14, 2024, 11:36 AM Johl Brown @.***> wrote:

This is a rocm version error, check your drivers and that you have rocm-pytorch eg from my link above

I get HSA override error because rx580 isn't supported by rocm6 so I don't think it shows as a device.

You can test it's a torch error with torch.cuda.is_enabled() will show true even with AMD cards if rocm is working

On Wed, Aug 14, 2024, 3:37 AM Gene Hand @.***> wrote:

I realized it might not work after all since this relies on MIOpen which depends on composable_kernel which afaik isn't made / tuned for RDNA 1. It's still worth a try though.

Updated the table with faster-whisper results (includes loading the model) 😄 So far I'm not able to run whisperx, after messing with batch_size and HSA_OVERRIDE_GFX_VERSION I'm still running into what sounds like what you mentioned:

RuntimeError: HIP error: invalid device function HIP kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect. For debugging consider passing AMD_SERIALIZE_KERNEL=3 Compile with TORCH_USE_HIP_DSA to enable device-side assertions.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2286779934, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3WVKFR3KKTKV5YLKATZRI77HAVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEOBWG43TSOJTGQ . You are receiving this because you were mentioned.Message ID: @.***>

Bazza-63 commented 2 weeks ago

Probably not possible but if MIOpen were to removed, would it compile on windows? Or do all ctranslate2 models require it?

Donkey545 commented 2 weeks ago

For those interested in this thread, I made use of @arlo-phoenix 's fork to build a Wyoming Faster Whisper for ROCm container.

Check it out here if you are interested. I don't have much hardware to test with, so All I have tested is my APU.

chboishabba commented 2 weeks ago

Very cool I will be testing this on RX580. Cards of that age strike a good balance between power/compute/cost for many entry level users. Not sure if I already mentioned but there is a patch by I think xuhuisheng on GitHub for rocm on gfx803 and a few docker images floating around with the patches...

On Sun, Aug 18, 2024, 5:43 AM Dominic Lopriore @.***> wrote:

For those interested in this thread, I made use of @arlo-phoenix https://github.com/arlo-phoenix 's fork to build a Wyoming Faster Whisper for ROCm container.

Check it out here https://github.com/Donkey545/wyoming-faster-whisper-rocm if you are interested. I don't have much hardware to test with, so All I have tested is my APU.

— Reply to this email directly, view it on GitHub https://github.com/OpenNMT/CTranslate2/issues/1072#issuecomment-2294957108, or unsubscribe https://github.com/notifications/unsubscribe-auth/AGM4B3X5LKMAXET3FRUEASTZR6RV7AVCNFSM6AAAAAAUWK5BQ6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEOJUHE2TOMJQHA . You are receiving this because you were mentioned.Message ID: @.***>