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
474 B22 linesraw
1#pragma once
2#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
3#define NOMINMAX
4// Windows Header Files
5#include "targetver.h"
6#include <windows.h>
7// ATL header files
8#include <atlstr.h>
9#include <atlfile.h>
10#include <atlbase.h>
11#include <atlwin.h>
12
13// C RunTime Header Files
14#include <stdlib.h>
15#include <malloc.h>
16#include <memory.h>
17#include <tchar.h>
18#include <assert.h>
19// C++ headers
20#include <vector>
21#include <array>
22#include <algorithm>