@@ -45,47 +45,47 @@ typedef eigen_packet_wrapper<__m256i, 6> Packet16s;
4545typedef eigen_packet_wrapper<__m128i, 6 > Packet8s;
4646
4747EIGEN_STRONG_INLINE __m512i eigen_mm512_loadu_epi32 (const int * from) {
48- #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 800
48+ #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 1010
4949 return _mm512_loadu_si512 (reinterpret_cast <const void *>(from));
5050#else
5151 return _mm512_loadu_epi32 (from);
5252#endif
5353}
5454
5555EIGEN_STRONG_INLINE __m512i eigen_mm512_loadu_epi64 (const int64_t * from) {
56- #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 800
56+ #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 1010
5757 return _mm512_loadu_si512 (reinterpret_cast <const void *>(from));
5858#else
5959 return _mm512_loadu_epi64 (from);
6060#endif
6161}
6262
6363EIGEN_STRONG_INLINE void eigen_mm512_storeu_epi32 (void * to, const __m512i& from) {
64- #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 800
64+ #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 1010
6565 _mm512_storeu_si512 (to, from);
6666#else
6767 _mm512_storeu_epi32 (to, from);
6868#endif
6969}
7070
7171EIGEN_STRONG_INLINE void eigen_mm512_storeu_epi64 (void * to, const __m512i& from) {
72- #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 800
72+ #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 1010
7373 _mm512_storeu_si512 (to, from);
7474#else
7575 _mm512_storeu_epi64 (to, from);
7676#endif
7777}
7878
7979EIGEN_STRONG_INLINE void eigen_mm256_storeu_epi32 (void * to, const __m256i& from) {
80- #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 800
80+ #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 1010
8181 _mm256_storeu_si256 (reinterpret_cast <__m256i*>(to), from);
8282#else
8383 _mm256_storeu_epi32 (to, from);
8484#endif
8585}
8686
8787EIGEN_STRONG_INLINE void eigen_mm_storeu_epi32 (void * to, const __m128i& from) {
88- #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 800
88+ #if EIGEN_COMP_GNUC && !EIGEN_COMP_CLANG && EIGEN_COMP_GNUC < 1010
8989 _mm_storeu_si128 (reinterpret_cast <__m128i*>(to), from);
9090#else
9191 _mm_storeu_epi32 (to, from);
0 commit comments