From da5a7afed056596b089a4241b62a7e17f2c43119 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Fri, 10 Jan 2020 18:31:15 +0000 Subject: Improvements to the tidiness and completeness of the NEON implementation --- Eigen/src/Core/arch/NEON/TypeCasting.h | 48 ++++++++++------------------------ 1 file changed, 14 insertions(+), 34 deletions(-) (limited to 'Eigen/src/Core/arch/NEON/TypeCasting.h') diff --git a/Eigen/src/Core/arch/NEON/TypeCasting.h b/Eigen/src/Core/arch/NEON/TypeCasting.h index 20dbe1332..5036ee92b 100644 --- a/Eigen/src/Core/arch/NEON/TypeCasting.h +++ b/Eigen/src/Core/arch/NEON/TypeCasting.h @@ -10,44 +10,24 @@ #ifndef EIGEN_TYPE_CASTING_NEON_H #define EIGEN_TYPE_CASTING_NEON_H +#include + namespace Eigen { namespace internal { -template <> -struct type_casting_traits { - enum { - VectorizedCast = 1, - SrcCoeffRatio = 1, - TgtCoeffRatio = 1 - }; -}; - -template <> -struct type_casting_traits { - enum { - VectorizedCast = 1, - SrcCoeffRatio = 1, - TgtCoeffRatio = 1 - }; -}; - - -template<> EIGEN_STRONG_INLINE Packet4i pcast(const Packet4f& a) { - return vcvtq_s32_f32(a); -} - -template<> EIGEN_STRONG_INLINE Packet4f pcast(const Packet4i& a) { - return vcvtq_f32_s32(a); -} - -template<> EIGEN_STRONG_INLINE Packet4i preinterpret(const Packet4f& a) { - return vreinterpretq_s32_f32(a); -} - -template<> EIGEN_STRONG_INLINE Packet4f preinterpret(const Packet4i& a) { - return vreinterpretq_f32_s32(a); -} +template<> struct type_casting_traits +{ enum { VectorizedCast = 1, SrcCoeffRatio = 1, TgtCoeffRatio = 1 }; }; +template<> struct type_casting_traits +{ enum { VectorizedCast = 1, SrcCoeffRatio = 1, TgtCoeffRatio = 1 }; }; + +template<> EIGEN_STRONG_INLINE Packet4f pcast(const Packet4i& a) { return vcvtq_f32_s32(a); } +template<> EIGEN_STRONG_INLINE Packet4i pcast(const Packet4f& a) { return vcvtq_s32_f32(a); } + +template<> EIGEN_STRONG_INLINE Packet4f preinterpret(const Packet4i& a) +{ return vreinterpretq_f32_s32(a); } +template<> EIGEN_STRONG_INLINE Packet4i preinterpret(const Packet4f& a) +{ return vreinterpretq_s32_f32(a); } } // end namespace internal -- cgit v1.2.3