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
282 B16 linesraw
1#include "stdafx.h"
2#include <stdio.h>
3#include "compare.h"
4#include "CommandLineArgs.h"
5
6int wmain( int argc, wchar_t* argv[] )
7{
8	CommandLineArgs cla;
9	if( !cla.parse( argc, argv ) )
10		return 1;
11
12	HRESULT hr = compareTraces( cla );
13	if( SUCCEEDED( hr ) )
14		return 0;
15	return hr;
16}