]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commit
readme : partial OpenCL GPU support via CLBlast (#863)
authorVulcan <redacted>
Wed, 3 May 2023 16:24:43 +0000 (21:54 +0530)
committerGitHub <redacted>
Wed, 3 May 2023 16:24:43 +0000 (19:24 +0300)
commit919e58b96ae509698344ead7ee0a51a150607b4c
tree82692aed98e7a9cabf6cb530312d90230d267d8d
parent05bef0f0e9bac95df37a866033dd27b6a057effd
readme : partial OpenCL GPU support via CLBlast (#863)

* ggml : CLBlast support as in llama.cpp

Building with CLBlast speeds up whisper.cpp ~2x on low end / older AMD APUs (CPU with integrated GPU) such as the A9.

Usage:
WHISPER_CLBLAST=1 make

* CMake/Makefile : CLBlast support as in llama.cpp

Building with CLBlast speeds up whisper.cpp ~2x on low end / older AMD APUs (CPU with integrated GPU) such as the A9.

Usage:
```
Makefile:
cd whisper.cpp
WHISPER_CLBLAST=1 make

CMake:
cd whisper.cpp ; mkdir build ; cd build
cmake -DWHISPER_CLBLAST=ON  ..
make
```

* Update README.md

Added OpenCL Build Instructions

* Instruction: Partial OpenCL GPU support via CLBlast

Added build instructions and examples for Make and CMake to support OpenCL enabled GPUs.
README.md