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