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 "comLightCommon.h" 3#include "client/CComPtr.hpp" 4 5#include "server/ObjectRoot.hpp" 6#include "server/interfaceMap.h" 7#include "server/Object.hpp" 8#include "server/freeThreadedMarshaller.h" 9 10#ifdef _MSC_VER 11// On Windows, it's controlled by library.def module definition file. There's __declspec(dllexport), but it adds underscore, I don't like that. 12#define DLLEXPORT extern "C" 13#else 14#define DLLEXPORT extern "C" __attribute__((visibility("default"))) 15#endif