yum-archive/TaSTT-Whisper
High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model
git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper
8c4603c
master
1#pragma once 2#include "../API/loggerApi.h" 3 4#ifdef __cplusplus 5extern "C" { 6#endif 7 8void logError (const char8_t * pszFormat , ... ); 9void logError16 (const wchar_t * pszFormat , ... ); 10void logErrorHr (long hr ,const char8_t * pszFormat , ... ); 11void logWarning (const char8_t * pszFormat , ... ); 12void logWarning16 (const wchar_t * pszFormat , ... ); 13void logWarningHr (long hr ,const char8_t * pszFormat , ... ); 14void logInfo (const char8_t * pszFormat , ... ); 15void logInfo16 (const wchar_t * pszFormat , ... ); 16void logDebug (const char8_t * pszFormat , ... ); 17void logDebug16 (const wchar_t * pszFormat , ... ); 18 19bool willLogMessage (Whisper ::eLogLevel lvl ); 20 21#ifdef __cplusplus 22} 23#endif