cpu_avx.cpp 207 Bytes
Newer Older
wester committed
1 2 3 4 5 6 7 8 9
#if !defined __AVX__ // MSVC supports this flag since MSVS 2013
#error "__AVX__ define is missing"
#endif
#include <immintrin.h>
void test()
{
    __m256 a = _mm256_set1_ps(0.0f);
}
int main() { return 0; }