whisper.cpp/ggml
stone c4ca35ee50 ggml-backend : add disable_backends parameter to skip specific backends
Allow selectively disabling GPU backends by passing a comma-separated
list of backend names (e.g. "vulkan,opencl") via the new
ggml_backend_load_all_from_path_with_disable() function and the
disable_backends field in whisper_context_params.

This is useful when certain backends are available but cause issues
(driver bugs, unsupported hardware features, etc.) and should be
skipped without recompiling.

Example usage:
  whisper_context_params params = whisper_context_default_params();
  params.disable_backends = "vulkan,opencl";
  struct whisper_context * ctx = whisper_init_from_file_with_params(path, params);
2026-03-31 17:03:27 +02:00
..
cmake cmake : remove unused file (ggml/1419) 2026-02-08 09:29:10 +02:00
include ggml-backend : add disable_backends parameter to skip specific backends 2026-03-31 17:03:27 +02:00
src ggml-backend : add disable_backends parameter to skip specific backends 2026-03-31 17:03:27 +02:00
.gitignore
CMakeLists.txt ggml : bump version to 0.9.8 (ggml/1442) 2026-03-18 15:18:24 +02:00