summaryrefslogtreecommitdiffstats
path: root/Whisper/API/eGpuModelFlags.h
blob: 96f5a76ca53b615fe316248a2cc4cc09490155e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include <stdint.h>

namespace Whisper
{
	enum struct eGpuModelFlags : uint32_t
	{
		Wave32 = 1,
		Wave64 = 2,
		NoReshapedMatMul = 4,
		UseReshapedMatMul = 8,
	};
}