LlamaLib  v2.0.2
Cross-platform library for local LLMs
Loading...
Searching...
No Matches
archchecker.h
1#pragma once
2#include <iostream>
3
4#ifdef _WIN32
5#ifdef UNDREAMAI_EXPORTS
6#define ARCHCHECKER_API __declspec(dllexport)
7#else
8#define ARCHCHECKER_API __declspec(dllimport)
9#endif
10#else
11#define ARCHCHECKER_API
12#endif
13
14extern "C"
15{
16 ARCHCHECKER_API const bool has_avx();
17 ARCHCHECKER_API const bool has_avx2();
18 ARCHCHECKER_API const bool has_avx512();
19};