From: zhouwg Date: Tue, 5 Mar 2024 15:06:31 +0000 (+0800) Subject: whisper : fix typo (#1925) X-Git-Tag: upstream/1.7.4~935 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=897412b5b6dcc21809bdb104096953bfb8ddc2b9;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp whisper : fix typo (#1925) --- diff --git a/whisper.cpp b/whisper.cpp index 2e0a6e2e..8359cad1 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -3852,7 +3852,7 @@ const char * whisper_print_system_info(void) { s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | "; s += "CUDA = " + std::to_string(ggml_cpu_has_cublas()) + " | "; s += "COREML = " + std::to_string(whisper_has_coreml()) + " | "; - s += "OPENVINO = " + std::to_string(whisper_has_openvino()) + " | "; + s += "OPENVINO = " + std::to_string(whisper_has_openvino()) ; return s.c_str(); }