From 897412b5b6dcc21809bdb104096953bfb8ddc2b9 Mon Sep 17 00:00:00 2001 From: zhouwg <6889919+zhouwg@users.noreply.github.com> Date: Tue, 5 Mar 2024 23:06:31 +0800 Subject: [PATCH] whisper : fix typo (#1925) --- whisper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whisper.cpp b/whisper.cpp index 2e0a6e2..8359cad 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(); }