Fix typo in AVX512 packet math.

This commit is contained in:
Antonio Sanchez 2020-12-11 21:35:44 -08:00
parent 536c8a79f2
commit 839aa505c3

View File

@ -228,7 +228,7 @@ template<> EIGEN_STRONG_INLINE Packet16i peven_mask(const Packet16i& /*a*/) {
0, -1, 0, -1, 0, -1, 0, -1); 0, -1, 0, -1, 0, -1, 0, -1);
} }
template<> EIGEN_STRONG_INLINE Packet8d peven_mask(const Packet8d& /*a*/) { template<> EIGEN_STRONG_INLINE Packet8d peven_mask(const Packet8d& /*a*/) {
return _m512_castsi512_pd(_mm512_set_epi32(0, 0, -1, -1, 0, 0, -1, -1, return _mm512_castsi512_pd(_mm512_set_epi32(0, 0, -1, -1, 0, 0, -1, -1,
0, 0, -1, -1, 0, 0, -1, -1)); 0, 0, -1, -1, 0, 0, -1, -1));
} }