Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMake/Makefile : CLBlast support as in llama.cpp #862

Merged
merged 4 commits into from May 2, 2023

Commits on May 2, 2023

  1. 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
    trholding committed May 2, 2023
    Configuration menu
    Copy the full SHA
    b190873 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c57fa3 View commit details
    Browse the repository at this point in the history
  3. 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
    ```
    trholding committed May 2, 2023
    Configuration menu
    Copy the full SHA
    f232047 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3c20b77 View commit details
    Browse the repository at this point in the history