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

KonstantinOptional startup flags to override performance-related defaults for the compute shaders11c399b

master
304 B11 linesraw
1#pragma once
2#include "API/sLoadModelCallbacks.h"
3
4namespace Whisper
5{
6	struct iModel;
7
8	HRESULT __stdcall loadGpuModel( const wchar_t* path, bool hybrid, uint32_t flags, const sLoadModelCallbacks* callbacks, iModel** pp );
9
10	HRESULT __stdcall loadReferenceCpuModel( const wchar_t* path, iModel** pp );
11}