aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/GenericPacketMath.h
diff options
context:
space:
mode:
authorGravatar Guoqiang QI <425418567@qq.com>2020-09-08 09:04:03 +0000
committerGravatar David Tellenbach <david.tellenbach@me.com>2020-09-08 09:04:03 +0000
commit85428a344025316db654c65e2628d4ceea1eec47 (patch)
tree292ffbb2a856f42c655213910db5e13c1d635dbe /Eigen/src/Core/GenericPacketMath.h
parent5272106826f1b9a0b938878e06c6cebd12a26a9c (diff)
Add Neon psqrt<Packet2d> and pexp<Packet2d>
Diffstat (limited to 'Eigen/src/Core/GenericPacketMath.h')
-rw-r--r--Eigen/src/Core/GenericPacketMath.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Eigen/src/Core/GenericPacketMath.h b/Eigen/src/Core/GenericPacketMath.h
index 0b0f91028..5c23b4b71 100644
--- a/Eigen/src/Core/GenericPacketMath.h
+++ b/Eigen/src/Core/GenericPacketMath.h
@@ -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