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

KonstantinSource codes8c4603c

master
213 B18 linesraw
1#pragma once
2#include <stdint.h>
3
4namespace Whisper
5{
6	struct sLanguageEntry
7	{
8		uint32_t key;
9		int id;
10		const char* name;
11	};
12
13	struct sLanguageList
14	{
15		uint32_t length;
16		const sLanguageEntry* pointer;
17	};
18}