diff options
author | Eugene Zhulenev <ezhulenev@google.com> | 2019-05-02 13:14:18 -0700 |
---|---|---|
committer | Eugene Zhulenev <ezhulenev@google.com> | 2019-05-02 13:14:18 -0700 |
commit | b4010f02f9fc78504586f6eac13066686877e5e8 (patch) | |
tree | 522d7fd885a4d8766d670e68e16d2b44e12628ff | |
parent | 578407f42f2598e8a1b5d8caeccf8968a326335b (diff) |
Add masked pstoreu to AVX and AVX512 PacketMath
-rw-r--r-- | Eigen/src/Core/GenericPacketMath.h | 9 | ||||
-rw-r--r-- | Eigen/src/Core/arch/AVX/PacketMath.h | 8 | ||||
-rw-r--r-- | Eigen/src/Core/arch/AVX512/PacketMath.h | 5 | ||||
-rw-r--r-- | test/packetmath.cpp | 27 |
4 files changed, 48 insertions, 1 deletions
diff --git a/Eigen/src/Core/GenericPacketMath.h b/Eigen/src/Core/GenericPacketMath.h index 3bba02278..f1a8d5707 100644 --- a/Eigen/src/Core/GenericPacketMath.h +++ b/Eigen/src/Core/GenericPacketMath.h @@ -371,6 +371,15 @@ template<typename Scalar, typename Packet> EIGEN_DEVICE_FUNC inline void pstore( template<typename Scalar, typename Packet> EIGEN_DEVICE_FUNC inline void pstoreu(Scalar* to, const Packet& from) { (*to) = from; } +/** \internal copy the packet \a from to \a *to, (un-aligned store with a mask) + * There is no generic implementation. We only have implementations for specialized + * cases. Generic case should not be called. + */ +template<typename Scalar, typename Packet> +EIGEN_DEVICE_FUNC inline +typename enable_if<unpacket_traits<Packet>::masked_load_available, void>::type +pstoreu(Scalar* to, const Packet& from, typename unpacket_traits<Packet>::mask_t umask); + template<typename Scalar, typename Packet> EIGEN_DEVICE_FUNC inline Packet pgather(const Scalar* from, Index /*stride*/) { return ploadu<Packet>(from); } diff --git a/Eigen/src/Core/arch/AVX/PacketMath.h b/Eigen/src/Core/arch/AVX/PacketMath.h index 9d13895e3..5011b98ea 100644 --- a/Eigen/src/Core/arch/AVX/PacketMath.h +++ b/Eigen/src/Core/arch/AVX/PacketMath.h @@ -431,6 +431,14 @@ template<> EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet8f& template<> EIGEN_STRONG_INLINE void pstoreu<double>(double* to, const Packet4d& from) { EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_pd(to, from); } template<> EIGEN_STRONG_INLINE void pstoreu<int>(int* to, const Packet8i& from) { EIGEN_DEBUG_UNALIGNED_STORE _mm256_storeu_si256(reinterpret_cast<__m256i*>(to), from); } +template<> EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet8f& from, uint8_t umask) { + Packet8i mask = _mm256_set1_epi8(static_cast<char>(umask)); + const Packet8i bit_mask = _mm256_set_epi32(0xffffff7f, 0xffffffbf, 0xffffffdf, 0xffffffef, 0xfffffff7, 0xfffffffb, 0xfffffffd, 0xfffffffe); + mask = por<Packet8i>(mask, bit_mask); + mask = pcmp_eq<Packet8i>(mask, _mm256_set1_epi32(0xffffffff)); + EIGEN_DEBUG_UNALIGNED_STORE return _mm256_maskstore_ps(to, mask, from); +} + // NOTE: leverage _mm256_i32gather_ps and _mm256_i32gather_pd if AVX2 instructions are available // NOTE: for the record the following seems to be slower: return _mm256_i32gather_ps(from, _mm256_set1_epi32(stride), 4); template<> EIGEN_DEVICE_FUNC inline Packet8f pgather<float, Packet8f>(const float* from, Index stride) diff --git a/Eigen/src/Core/arch/AVX512/PacketMath.h b/Eigen/src/Core/arch/AVX512/PacketMath.h index 094309eda..c822f9352 100644 --- a/Eigen/src/Core/arch/AVX512/PacketMath.h +++ b/Eigen/src/Core/arch/AVX512/PacketMath.h @@ -576,6 +576,11 @@ EIGEN_STRONG_INLINE void pstoreu<int>(int* to, const Packet16i& from) { EIGEN_DEBUG_UNALIGNED_STORE _mm512_storeu_si512( reinterpret_cast<__m512i*>(to), from); } +template <> +EIGEN_STRONG_INLINE void pstoreu<float>(float* to, const Packet16f& from, uint16_t umask) { + __mmask16 mask = static_cast<__mmask16>(umask); + EIGEN_DEBUG_UNALIGNED_STORE return _mm512_mask_storeu_ps(to, mask, from); +} template <> EIGEN_DEVICE_FUNC inline Packet16f pgather<float, Packet16f>(const float* from, diff --git a/test/packetmath.cpp b/test/packetmath.cpp index 200670b8c..e704a53ea 100644 --- a/test/packetmath.cpp +++ b/test/packetmath.cpp @@ -119,10 +119,16 @@ struct packet_helper inline Packet load(const T* from) const { return internal::pload<Packet>(from); } template<typename T> + inline Packet loadu(const T* from) const { return internal::ploadu<Packet>(from); } + + template<typename T> inline Packet load(const T* from, unsigned long long umask) const { return internal::ploadu<Packet>(from, umask); } template<typename T> inline void store(T* to, const Packet& x) const { internal::pstore(to,x); } + + template<typename T> + inline void store(T* to, const Packet& x, unsigned long long umask) const { internal::pstoreu(to, x, umask); } }; template<typename Packet> @@ -132,10 +138,16 @@ struct packet_helper<false,Packet> inline T load(const T* from) const { return *from; } template<typename T> + inline T loadu(const T* from) const { return *from; } + + template<typename T> inline T load(const T* from, unsigned long long) const { return *from; } template<typename T> inline void store(T* to, const T& x) const { *to = x; } + + template<typename T> + inline void store(T* to, const T& x, unsigned long long) const { *to = x; } }; #define CHECK_CWISE1_IF(COND, REFOP, POP) if(COND) { \ @@ -203,18 +215,31 @@ template<typename Scalar,typename Packet> void packetmath() if (internal::unpacket_traits<Packet>::masked_load_available) { + packet_helper<internal::unpacket_traits<Packet>::masked_load_available, Packet> h; unsigned long long max_umask = (0x1ull << PacketSize); + for (int offset=0; offset<PacketSize; ++offset) { for (unsigned long long umask=0; umask<max_umask; ++umask) { - packet_helper<internal::unpacket_traits<Packet>::masked_load_available, Packet> h; h.store(data2, h.load(data1+offset, umask)); for (int k=0; k<PacketSize; ++k) data3[k] = ((umask & ( 0x1ull << k )) >> k) ? data1[k+offset] : Scalar(0); VERIFY(areApprox(data3, data2, PacketSize) && "internal::ploadu masked"); } } + + for (int offset=0; offset<PacketSize; ++offset) + { + for (unsigned long long umask=0; umask<max_umask; ++umask) + { + internal::pstore(data2, internal::pset1<Packet>(Scalar(0))); + h.store(data2, h.loadu(data1+offset), umask); + for (int k=0; k<PacketSize; ++k) + data3[k] = ((umask & ( 0x1ull << k )) >> k) ? data1[k+offset] : Scalar(0); + VERIFY(areApprox(data3, data2, PacketSize) && "internal::pstoreu masked"); + } + } } for (int offset=0; offset<PacketSize; ++offset) |