]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
whisper : fix typo (#1925)
authorzhouwg <redacted>
Tue, 5 Mar 2024 15:06:31 +0000 (23:06 +0800)
committerGitHub <redacted>
Tue, 5 Mar 2024 15:06:31 +0000 (17:06 +0200)
whisper.cpp

index 2e0a6e2e044c7cd75706dd6667261e4e21cdd78b..8359cad1208b9e94759d231eaccb7709c046492e 100644 (file)
@@ -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();
 }