Merge 2e1fb518d1f93ce878afc2941c37fc05b7870382 into 2c502b3c009bc4b1465fdf3d0213cefab42d829d

This commit is contained in:
DrEmixam 2025-04-02 13:20:40 -04:00 committed by GitHub
commit ac444b586f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -88,6 +88,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Linux")
option(WHISPER_FFMPEG "whisper: support building and linking with ffmpeg libs (avcodec, swresample, ...)" OFF)
endif()
option(GGML_VULKAN "ggml: support for Vulkan" OFF)
option(WHISPER_COREML "whisper: enable Core ML framework" OFF)
option(WHISPER_COREML_ALLOW_FALLBACK "whisper: allow non-CoreML fallback" OFF)
option(WHISPER_OPENVINO "whisper: support for OpenVINO" OFF)

View File

@ -330,6 +330,11 @@ Now build `whisper.cpp` with Vulkan support:
cmake -B build -DGGML_VULKAN=1
cmake --build build -j --config Release
```
with cmake
```
cmake -B build -DGGML_VULKAN=1
cmake --build build -j --config Release
```
## BLAS CPU support via OpenBLAS