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