File indexing completed on 2025-01-19 09:51:46
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef EIGEN_MATH_FUNCTIONS_SVE_H
0011 #define EIGEN_MATH_FUNCTIONS_SVE_H
0012
0013 namespace Eigen {
0014 namespace internal {
0015
0016 template <>
0017 EIGEN_STRONG_INLINE EIGEN_UNUSED PacketXf pexp<PacketXf>(const PacketXf& x) {
0018 return pexp_float(x);
0019 }
0020
0021 template <>
0022 EIGEN_STRONG_INLINE EIGEN_UNUSED PacketXf plog<PacketXf>(const PacketXf& x) {
0023 return plog_float(x);
0024 }
0025
0026 template <>
0027 EIGEN_STRONG_INLINE EIGEN_UNUSED PacketXf psin<PacketXf>(const PacketXf& x) {
0028 return psin_float(x);
0029 }
0030
0031 template <>
0032 EIGEN_STRONG_INLINE EIGEN_UNUSED PacketXf pcos<PacketXf>(const PacketXf& x) {
0033 return pcos_float(x);
0034 }
0035
0036
0037 template <>
0038 EIGEN_STRONG_INLINE EIGEN_UNUSED PacketXf ptanh<PacketXf>(const PacketXf& x) {
0039 return internal::generic_fast_tanh_float(x);
0040 }
0041 }
0042 }
0043
0044 #endif