]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commit
build : CLBlast support as in llama.cpp (#862)
authorVulcan <redacted>
Tue, 2 May 2023 19:50:32 +0000 (01:20 +0530)
committerGitHub <redacted>
Tue, 2 May 2023 19:50:32 +0000 (22:50 +0300)
commit05bef0f0e9bac95df37a866033dd27b6a057effd
tree5c2e32a9e8c2a323ff84c069eab855283ea00ff8
parent5974c8facd998bfc506fce73bd9b226a1062db00
build : CLBlast support as in llama.cpp  (#862)

* 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
```
CMakeLists.txt
Makefile