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 B14 linesraw
1#pragma once
2#include <stdint.h>
3#include <array>
4
5namespace DirectCompute
6{
7	struct LookupTablesData
8	{
9		std::array<uint16_t, 0x10000> gelu;
10		std::array<uint16_t, 0x10000> exponent;
11
12		LookupTablesData();
13	};
14}