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#pragma once 2#include <stdint.h> 3#include <array> 4#ifndef GUID_DEFINED 5#define GUID_DEFINED 6#endif 7 8struct GUID 9{ 10uint32_t Data1 ; 11uint16_t Data2 ; 12uint16_t Data3 ; 13std ::array < uint8_t ,8 > Data4 ; 14 15 constexprinline bool operator == (const GUID & that )const 16 { 17return Data1 == that .Data1 && Data2 == that .Data2 && Data3 == that .Data3 && Data4 == that .Data4 ; 18 } 19}; 20 21using REFIID = const GUID & ;