cOMS/architecture/x86/simd/SIMD_I64_AVX512.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
445 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef COMS_STDLIB_SIMD_I64_AVX512_H
#define COMS_STDLIB_SIMD_I64_AVX512_H
#include <immintrin.h>
#include <xmmintrin.h>
#include "../../../stdlib/Types.h"
struct int64_8 {
union {
#if ARM
svint64_t s;
#else
__m512i s;
#endif
int64 v[8];
};
};
#endif