From: zhouwg Date: Tue, 5 Mar 2024 15:06:31 +0000 (+0800) Subject: whisper : fix typo (whisper/1925) X-Git-Tag: upstream/0.0.1642~874 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=8b5f92eade32b385116d7be48657db737cd6570a;p=pkg%2Fggml%2Fsources%2Fggml whisper : fix typo (whisper/1925) --- diff --git a/examples/whisper/whisper.cpp b/examples/whisper/whisper.cpp index 3ac5f329..3459dd6e 100644 --- a/examples/whisper/whisper.cpp +++ b/examples/whisper/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(); }