cOMS/architecture/x86/simd/SIMD_F64.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

29 lines
448 B
C
Executable File

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef COMS_STDLIB_SIMD_F64_H
#define COMS_STDLIB_SIMD_F64_H
#include <immintrin.h>
#include <xmmintrin.h>
#include "../../../stdlib/Types.h"
#ifdef __SSE4_2__
#include "SIMD_F64_SSE.h"
#endif
#ifdef __AVX2__
#include "SIMD_F64_AVX2.h"
#endif
#ifdef __AVX512F__
#include "SIMD_F64_AVX512.h"
#endif
#endif