zhouwg commited on
Commit
a0acef0
·
unverified ·
1 Parent(s): c1b258d

whisper : fix typo (#1925)

Browse files
Files changed (1) hide show
  1. whisper.cpp +1 -1
whisper.cpp CHANGED
@@ -3852,7 +3852,7 @@ const char * whisper_print_system_info(void) {
3852
  s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
3853
  s += "CUDA = " + std::to_string(ggml_cpu_has_cublas()) + " | ";
3854
  s += "COREML = " + std::to_string(whisper_has_coreml()) + " | ";
3855
- s += "OPENVINO = " + std::to_string(whisper_has_openvino()) + " | ";
3856
 
3857
  return s.c_str();
3858
  }
 
3852
  s += "VSX = " + std::to_string(ggml_cpu_has_vsx()) + " | ";
3853
  s += "CUDA = " + std::to_string(ggml_cpu_has_cublas()) + " | ";
3854
  s += "COREML = " + std::to_string(whisper_has_coreml()) + " | ";
3855
+ s += "OPENVINO = " + std::to_string(whisper_has_openvino()) ;
3856
 
3857
  return s.c_str();
3858
  }