whisper : fix typo (#1925)

pull/1943/head
zhouwg 2024-03-05 23:06:31 +08:00 committed by GitHub
parent f22d27a385
commit 897412b5b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View 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();
}