We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The sandybridge configuration does not compile with -dnoopt, it requires avx.
The following would fix it:
COPTFLAGS := -O0 -march=native
Sample error, using gcc (gcc version 5.3.1 20160316 (Debian 5.3.1-12))
config/sandybridge/kernels/3/bli_gemm_int_d8x4.c: In function ‘bli_dgemm_int_8x4’: config/sandybridge/kernels/3/bli_gemm_int_d8x4.c:111:10: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi] va0_3b0 = _mm256_setzero_pd(); ^ In file included from /usr/lib/gcc/x86_64-linux-gnu/5/include/immintrin.h:41:0, from config/sandybridge/kernels/3/bli_gemm_int_d8x4.c:36: /usr/lib/gcc/x86_64-linux-gnu/5/include/avxintrin.h:834:1: error: inlining failed in call to always_inline ‘_mm256_load_pd’: target specific option mismatch _mm256_load_pd (double const *__P) ^
The text was updated successfully, but these errors were encountered:
Add icc and clang support for Intel architectures, fixes flame#47. 2b…
0171ad5
…d036f fixes flame#49 BTW.
This was fixed. Thanks a lot!
Sorry, something went wrong.
Use intrinsics for invscalv (flame#49)
751f521
No branches or pull requests
The sandybridge configuration does not compile with -dnoopt, it requires avx.
The following would fix it:
COPTFLAGS := -O0 -march=native
Sample error, using gcc (gcc version 5.3.1 20160316 (Debian 5.3.1-12))
The text was updated successfully, but these errors were encountered: