]> git.djapps.eu Git - pkg/ggml/sources/ggml/commitdiff
whisper : fix typo (whisper/1925)
authorzhouwg <redacted>
Tue, 5 Mar 2024 15:06:31 +0000 (23:06 +0800)
committerGeorgi Gerganov <redacted>
Fri, 8 Mar 2024 09:54:33 +0000 (11:54 +0200)
examples/whisper/whisper.cpp

index 3ac5f32925b9e61a46403600f7c03379521bf510..3459dd6efcb5781cd148623a1d972ab09ece23f5 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();
 }