cpu_avx512clx.cpp 238 B

1234567891011
  1. #if defined __AVX512__ || defined __AVX512F__
  2. #include <immintrin.h>
  3. void test()
  4. {
  5. __m512i a, b, c;
  6. a = _mm512_dpwssd_epi32(a, b, c); // VNNI
  7. }
  8. #else
  9. #error "AVX512-CLX is not supported"
  10. #endif
  11. int main() { return 0; }