Merge branch 'tazz4843:master' into fix/progress-callback-crash
This commit is contained in:
commit
f1a35221d2
2 changed files with 6 additions and 2 deletions
|
|
@ -75,8 +75,8 @@ All disabled by default unless otherwise specified.
|
||||||
* `openblas`: enable OpenBLAS support.
|
* `openblas`: enable OpenBLAS support.
|
||||||
* `metal`: enable Metal support. Implicitly enables hidden GPU flag at runtime.
|
* `metal`: enable Metal support. Implicitly enables hidden GPU flag at runtime.
|
||||||
* `vulkan`: enable Vulkan support. Implicitly enables hidden GPU flag at runtime.
|
* `vulkan`: enable Vulkan support. Implicitly enables hidden GPU flag at runtime.
|
||||||
* `whisper-cpp-log`: allows hooking into whisper.cpp's log output and sending it to the `log` backend. Requires calling
|
* `log_backend`: allows hooking into whisper.cpp's log output and sending it to the `log` backend. Requires calling
|
||||||
* `whisper-cpp-tracing`: allows hooking into whisper.cpp's log output and sending it to the `tracing` backend.
|
* `tracing_backend`: allows hooking into whisper.cpp's log output and sending it to the `tracing` backend.
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -280,6 +280,10 @@ fn main() {
|
||||||
println!("cargo:rustc-link-lib=static=ggml-cuda");
|
println!("cargo:rustc-link-lib=static=ggml-cuda");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if cfg!(feature = "openblas") {
|
||||||
|
println!("cargo:rustc-link-lib=static=ggml-blas");
|
||||||
|
}
|
||||||
|
|
||||||
println!(
|
println!(
|
||||||
"cargo:WHISPER_CPP_VERSION={}",
|
"cargo:WHISPER_CPP_VERSION={}",
|
||||||
get_whisper_cpp_version(&whisper_root)
|
get_whisper_cpp_version(&whisper_root)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue