Commit f0c0e0c6 authored by Maksim Shabunin's avatar Maksim Shabunin

CPU dispatching: additional AVX-512 check for mingw-w64

parent c729fbd6
......@@ -3,6 +3,9 @@
void test()
{
__m512i zmm = _mm512_setzero_si512();
#if defined __GNUC__ && defined __x86_64__
asm volatile ("" : : : "zmm16", "zmm17", "zmm18", "zmm19");
#endif
}
#else
#error "AVX512 is not supported"
......
......@@ -7,6 +7,9 @@ void test()
__m256i b = _mm256_abs_epi64(a); // VL
__m512i c = _mm512_abs_epi8(zmm); // BW
__m512i d = _mm512_broadcast_i32x8(b); // DQ
#if defined __GNUC__ && defined __x86_64__
asm volatile ("" : : : "zmm16", "zmm17", "zmm18", "zmm19");
#endif
}
#else
#error "AVX512-SKX is not supported"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment