Add Neon psqrt<Packet2d> and pexp<Packet2d>

This commit is contained in:
Guoqiang QI
2020-09-08 09:04:03 +00:00
committed by David Tellenbach
parent 5272106826
commit 85428a3440
4 changed files with 59 additions and 2 deletions

View File

@@ -742,6 +742,12 @@ pfrexp_float(const Packet& a, Packet& exponent);
template<typename Packet> EIGEN_STRONG_INLINE Packet
pldexp_float(Packet a, Packet exponent);
/** Default implementation of pldexp for double.
* It is expected to be called by implementers of template<> pldexp.
*/
template<typename Packet> EIGEN_STRONG_INLINE Packet
pldexp_double(Packet a, Packet exponent);
} // end namespace internal
} // end namespace Eigen