This commit is contained in:
DrEmixam 2026-08-16 15:23:05 -07:00 committed by GitHub
commit 36798dd1cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -89,6 +89,7 @@ if (CMAKE_SYSTEM_NAME MATCHES "Linux")
option(WHISPER_COMMON_FFMPEG "whisper: examples link with ffmpeg libs in order to decode more audio formats" 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

@ -340,6 +340,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
```
## AMD ROCm GPU support