inlining failed in call to always_inline ‘__m256d _mm256_broadcast_sd(const double*)’

“Target specific option mismatch” means that you’re missing a feature flag from your GCC invocation. You probably need to add -mavx to your compiler invocation.

If you’re intending to run this on your computer only, -march=native will turn on all the feature flags that your own machine supports.

Leave a Comment

tech