Merge remote-tracking branch 'fork/dev'

This commit is contained in:
Christian Meter 2025-01-28 14:12:52 +01:00
commit 263d5fd702
No known key found for this signature in database
GPG key ID: DC36932EEAE54549
4 changed files with 15 additions and 6 deletions

View file

@ -105,8 +105,6 @@ pub struct SystemInfo {
pub avx2: bool,
pub fma: bool,
pub f16c: bool,
pub blas: bool,
pub cuda: bool,
}
impl Default for SystemInfo {
@ -117,8 +115,6 @@ impl Default for SystemInfo {
avx2: whisper_rs_sys::ggml_cpu_has_avx2() != 0,
fma: whisper_rs_sys::ggml_cpu_has_fma() != 0,
f16c: whisper_rs_sys::ggml_cpu_has_f16c() != 0,
blas: whisper_rs_sys::ggml_cpu_has_blas() != 0,
cuda: whisper_rs_sys::ggml_cpu_has_cuda() != 0,
}
}
}