You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Performing Test HAVE_AVX_EXTENSIONS
-- Performing Test HAVE_AVX_EXTENSIONS - Failed
-- Performing Test HAVE_SSE4_EXTENSIONS
-- Performing Test HAVE_SSE4_EXTENSIONS - Success
while lscpu claims that avx and avx2 are available on the host I'm building.
see
#include <immintrin.h>
#include <stdio.h>
int main ()
{
__m256d a, b;
double vals[4] = {0.};
a = _mm256_loadu2_m128d (vals, vals+2);
b = _mm256_permute4x64_pd (_mm256_hadd_pd (a,a), 2);
_mm256_storeu_pd (vals, b);
printf (\"%g\", vals[0]);
return (0);
}
Presumably, this fails on your system. Would you be able to save the following code to a test.c file, try to compile it with gcc and see what the result/errors are? This may be informative.
Hello,
while running cmake for hyphy-2.5.63
I observe the following
while lscpu claims that
avx
andavx2
are available on the host I'm building.see
and gcc knnows how to handle it.
regards
Eric
The text was updated successfully, but these errors were encountered: