mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-05-19 16:10:12 +00:00
12 lines
162 B
C
12 lines
162 B
C
#if defined(__AVX512F__)
|
|
#define OBLAS_AVX512
|
|
#else
|
|
#if defined(__AVX2__)
|
|
#define OBLAS_AVX2
|
|
#else
|
|
#if defined(__SSSE3__)
|
|
#define OBLAS_SSE3
|
|
#endif
|
|
#endif
|
|
#endif
|