cppassist  1.0.0.f4fab4f962ff
C++ sanctuary for small but powerful and frequently required, stand alone features.
simd.h
Go to the documentation of this file.
1 
2 #pragma once
3 
4 
5 #ifdef AVX512_ENABLED
6 #include <zmmintrin.h>
7 #define CPPASSIST_SIMD_SIZE 16
8 #elif defined(AVX2_ENABLED)
9 #include <immintrin.h>
10 #define CPPASSIST_SIMD_SIZE 8
11 #elif defined(SSE_ENABLED)
12 #include <xmmintrin.h>
13 #define CPPASSIST_SIMD_SIZE 4
14 #else
15 // include nothing
16 #define CPPASSIST_SIMD_SIZE 1
17 #endif