Skip to content

Commit a348c8e

Browse files
committed
whisper : adapt to new ggml (wip)
1 parent 4e1f516 commit a348c8e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/whisper.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)