Fix AVX512 builds with MSVC.

(cherry picked from commit 9a14d91a99)
This commit is contained in:
Antonio Sánchez
2022-03-18 16:04:53 +00:00
committed by Antonio Sanchez
parent 16844d7529
commit 973b04f3e1
2 changed files with 10 additions and 2 deletions

View File

@@ -693,7 +693,7 @@ EIGEN_STRONG_INLINE Packet8d pload<Packet8d>(const double* from) {
template <>
EIGEN_STRONG_INLINE Packet16i pload<Packet16i>(const int* from) {
EIGEN_DEBUG_ALIGNED_LOAD return _mm512_load_si512(
reinterpret_cast<const __m512i*>(from));
reinterpret_cast<const __m512i*>(from));
}
template <>