I'm trying to use the AVX2 intrinsic _mm256_loadu2_m128i
, but it seems g++ 4.8.2 doesn't have it.
Is there any way to get it?
I'm trying to use the AVX2 intrinsic _mm256_loadu2_m128i
, but it seems g++ 4.8.2 doesn't have it.
Is there any way to get it?
I have the same problem in GCC and Clang. However it compiles in ICC. You can test this with GCC, Clang, and ICC at http://gcc.godbolt.org/
Note, this is a AVX intrinsic not AVX2. Most of the 256-bit integer load and store intrinsics only need AVX. AVX2 provides some gather and mask loads but everything else only needs AVX.
Since Haswell can load two 128-bit values at once you can achieve the same effect as
_mm256_loadu2_m128i
using_mm256_inserti128_si256
. Something like this