Skip to content

Commit

Permalink
whisper : fix typo (ggerganov#1925)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouwg authored and jiahansu committed Apr 17, 2024
1 parent d6f908d commit 9c74550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whisper.cpp
Expand Up @@ -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();
}
Expand Down

0 comments on commit 9c74550

Please sign in to comment.