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
012be51
master
1#pragma once 2 3#ifdef __cplusplus 4extern "C" { 5#endif 6 7struct ggml_tensor ; 8 9void logError (const char8_t * pszFormat , ... ); 10void logWarning (const char8_t * pszFormat , ... ); 11void logInfo (const char8_t * pszFormat , ... ); 12void logDebug (const char8_t * pszFormat , ... ); 13 14#ifdef __cplusplus 15} 16 17namespace Tracing 18{ 19struct ItemName 20 { 21ItemName (const char * str ) { } 22ItemName (const char * str ,uint32_t a0 ) { } 23ItemName (const char * str ,int a0 ) { } 24 }; 25 26inline void tensor (const ItemName & name ,const ggml_tensor * tensor ) { } 27inline void delayTensor (const ItemName & name ,const ggml_tensor * tensor ) { } 28inline void vector (const ItemName & name ,const std ::vector < float >& vec ) { } 29inline void writeDelayedTensors () { } 30} 31#endif