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
8c4603c
master
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{ 8CommandLineArgs cla ; 9if ( !cla .parse (argc ,argv ) ) 10return 1 ; 11 12HRESULT hr = compareTraces (cla ); 13if (SUCCEEDED (hr ) ) 14return 0 ; 15return hr ; 16}