cOMS/architecture/x86/simd/SIMD_SVML.h
Dennis Eichhorn dc9f37b726
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Has been cancelled
Microsoft C++ Code Analysis / Analyze (push) Has been cancelled
update
2025-04-06 10:34:47 +00:00

24 lines
370 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef COMS_STDLIB_SIMD_SVML_H
#define COMS_STDLIB_SIMD_SVML_H
#ifdef __SSE4_2__
#include "SIMD_SVML_SSE.h"
#endif
#ifdef __AVX2__
#include "SIMD_SVML_AVX2.h"
#endif
#ifdef __AVX512F__
#include "SIMD_SVML_AVX512.h"
#endif
#endif