summaryrefslogtreecommitdiff
path: root/numpy/distutils/checks/cpu_avx.c
blob: 737c0d2e9492d38ffbb697f0dbd4d7d7d1c55ad3 (plain)
1
2
3
4
5
6
7
#include <immintrin.h>

int main(void)
{
    __m256 a = _mm256_add_ps(_mm256_setzero_ps(), _mm256_setzero_ps());
    return (int)_mm_cvtss_f32(_mm256_castps256_ps128(a));
}