mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 01:29:35 +08:00
Fix AVX512 & GCC 6.3 compilation
This commit is contained in:
parent
e6667a7060
commit
45b40d91ca
@ -595,7 +595,7 @@ template<> EIGEN_STRONG_INLINE Packet16h ploadu<Packet16h>(const Eigen::half* fr
|
||||
uint16_t umask) {
|
||||
__mmask16 mask = static_cast<__mmask16>(umask);
|
||||
Packet16h result;
|
||||
result.x = _mm256_maskz_loadu_epi16(mask, from);
|
||||
result.x = _mm256_maskz_loadu_epi16(mask, reinterpret_cast<const __m256i*>(from));
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user