summaryrefslogtreecommitdiffstats
path: root/Whisper/modelFactory.h
blob: 78c04d4720d84480281b1f525796bd4a1f70c9e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include "API/sLoadModelCallbacks.h"

namespace Whisper
{
	struct iModel;

	HRESULT __stdcall loadGpuModel( const wchar_t* path, bool hybrid, uint32_t flags, const sLoadModelCallbacks* callbacks, iModel** pp );

	HRESULT __stdcall loadReferenceCpuModel( const wchar_t* path, iModel** pp );
}