cpu_avx.c 173 B

1234567
  1. #include <immintrin.h>
  2. int main(void)
  3. {
  4. __m256 a = _mm256_add_ps(_mm256_setzero_ps(), _mm256_setzero_ps());
  5. return (int)_mm_cvtss_f32(_mm256_castps256_ps128(a));
  6. }