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 <stdint.h> 3 4namespace Whisper 5{ 6enum struct eGpuModelFlags :uint32_t 7 { 8Wave32 = 1 , 9Wave64 = 2 , 10NoReshapedMatMul = 4 , 11UseReshapedMatMul = 8 , 12 }; 13}