mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-12 09:23:12 +08:00
Silenced a compilation warning
This commit is contained in:
parent
037a463fd5
commit
3585ff585e
@ -360,11 +360,11 @@ template<> EIGEN_STRONG_INLINE Packet8h ploadu<Packet8h>(const Eigen::half* from
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<> EIGEN_STRONG_INLINE void pstore<Eigen::half>(Eigen::half* to, const Packet8h& from) {
|
template<> EIGEN_STRONG_INLINE void pstore<Eigen::half>(Eigen::half* to, const Packet8h& from) {
|
||||||
_mm_store_si128((__m128i*)to, from.x);
|
_mm_store_si128(reinterpret_cast<__m128i*>(to), from.x);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<> EIGEN_STRONG_INLINE void pstoreu<Eigen::half>(Eigen::half* to, const Packet8h& from) {
|
template<> EIGEN_STRONG_INLINE void pstoreu<Eigen::half>(Eigen::half* to, const Packet8h& from) {
|
||||||
_mm_storeu_si128((__m128i*)to, from.x);
|
_mm_storeu_si128(reinterpret_cast<__m128i*>(to), from.x);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<> EIGEN_STRONG_INLINE Packet8h
|
template<> EIGEN_STRONG_INLINE Packet8h
|
||||||
|
Loading…
x
Reference in New Issue
Block a user