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
141 B9 linesraw
1#pragma once
2
3struct CommandLineArgs
4{
5	int64_t printDiff = -1;
6	std::array<CString, 2> inputs;
7
8	bool parse( int argc, wchar_t* argv[] );
9};