Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
numpy / distutils / checks / cpu_avx.c
Size: Mime:
#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));
}