File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -4268,18 +4268,15 @@ const char * whisper_print_system_info(void) {
42684268 s += " FMA = " + std::to_string (ggml_cpu_has_fma ()) + " | " ;
42694269 s += " NEON = " + std::to_string (ggml_cpu_has_neon ()) + " | " ;
42704270 s += " ARM_FMA = " + std::to_string (ggml_cpu_has_arm_fma ()) + " | " ;
4271- s += " METAL = " + std::to_string (ggml_cpu_has_metal ()) + " | " ;
42724271 s += " F16C = " + std::to_string (ggml_cpu_has_f16c ()) + " | " ;
42734272 s += " FP16_VA = " + std::to_string (ggml_cpu_has_fp16_va ()) + " | " ;
42744273 s += " WASM_SIMD = " + std::to_string (ggml_cpu_has_wasm_simd ()) + " | " ;
4275- s += " BLAS = " + std::to_string (ggml_cpu_has_blas ()) + " | " ;
42764274 s += " SSE3 = " + std::to_string (ggml_cpu_has_sse3 ()) + " | " ;
42774275 s += " SSSE3 = " + std::to_string (ggml_cpu_has_ssse3 ()) + " | " ;
42784276 s += " VSX = " + std::to_string (ggml_cpu_has_vsx ()) + " | " ;
4279- s += " CUDA = " + std::to_string (ggml_cpu_has_cuda ()) + " | " ;
42804277 s += " COREML = " + std::to_string (whisper_has_coreml ()) + " | " ;
42814278 s += " OPENVINO = " + std::to_string (whisper_has_openvino ()) + " | " ;
4282- s += " CANN = " + std::to_string ( ggml_cpu_has_cann ()) ;
4279+
42834280 return s.c_str ();
42844281}
42854282
You can’t perform that action at this time.
0 commit comments