Spaces:
Running
Running
minor : flag "ARM FMA" -> "ARM_FMA"
Browse files- whisper.cpp +1 -1
whisper.cpp
CHANGED
|
@@ -2555,7 +2555,7 @@ const char * whisper_print_system_info(void) {
|
|
| 2555 |
s += "AVX2 = " + std::to_string(ggml_cpu_has_avx2()) + " | ";
|
| 2556 |
s += "AVX512 = " + std::to_string(ggml_cpu_has_avx512()) + " | ";
|
| 2557 |
s += "NEON = " + std::to_string(ggml_cpu_has_neon()) + " | ";
|
| 2558 |
-
s += "
|
| 2559 |
s += "F16C = " + std::to_string(ggml_cpu_has_f16c()) + " | ";
|
| 2560 |
s += "FP16_VA = " + std::to_string(ggml_cpu_has_fp16_va()) + " | ";
|
| 2561 |
s += "WASM_SIMD = " + std::to_string(ggml_cpu_has_wasm_simd()) + " | ";
|
|
|
|
| 2555 |
s += "AVX2 = " + std::to_string(ggml_cpu_has_avx2()) + " | ";
|
| 2556 |
s += "AVX512 = " + std::to_string(ggml_cpu_has_avx512()) + " | ";
|
| 2557 |
s += "NEON = " + std::to_string(ggml_cpu_has_neon()) + " | ";
|
| 2558 |
+
s += "ARM_FMA = " + std::to_string(ggml_cpu_has_arm_fma()) + " | ";
|
| 2559 |
s += "F16C = " + std::to_string(ggml_cpu_has_f16c()) + " | ";
|
| 2560 |
s += "FP16_VA = " + std::to_string(ggml_cpu_has_fp16_va()) + " | ";
|
| 2561 |
s += "WASM_SIMD = " + std::to_string(ggml_cpu_has_wasm_simd()) + " | ";
|