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
11c399b
master
1#pragma once 2#include "API/sLoadModelCallbacks.h" 3 4namespace Whisper 5{ 6struct iModel ; 7 8HRESULT __stdcallloadGpuModel (const wchar_t * path ,bool hybrid ,uint32_t flags ,const sLoadModelCallbacks * callbacks ,iModel ** pp ); 9 10HRESULT __stdcallloadReferenceCpuModel (const wchar_t * path ,iModel ** pp ); 11}