Searched refs:digamma (Results 1 – 14 of 14) sorted by relevance
/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/ |
D | CudaSpecialFunctions.h | 38 using numext::digamma; 39 return make_float4(digamma(a.x), digamma(a.y), digamma(a.z), digamma(a.w)); 45 using numext::digamma; 46 return make_double2(digamma(a.x), digamma(a.y));
|
/external/eigen/unsupported/Eigen/src/SpecialFunctions/ |
D | SpecialFunctionsPacketMath.h | 23 Packet pdigamma(const Packet& a) { using numext::digamma; return digamma(a); } in pdigamma()
|
D | SpecialFunctionsHalf.h | 18 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half digamma(const Eigen::half& a) { in digamma() function 19 return Eigen::half(Eigen::numext::digamma(static_cast<float>(a))); in digamma()
|
D | SpecialFunctionsFunctors.h | 127 using numext::digamma; return digamma(a);
|
D | SpecialFunctionsImpl.h | 1513 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(digamma, Scalar) 1514 digamma(const Scalar& x) { 1515 return EIGEN_MATHFUNC_IMPL(digamma, Scalar)::run(x);
|
/external/eigen/unsupported/test/ |
D | special_functions.cpp | 45 VERIFY_IS_APPROX(m1.digamma(), digamma(m1)); in array_special_functions() 154 CALL_SUBTEST( res = x.digamma(); verify_component_wise(res, ref); ); in array_special_functions() 155 CALL_SUBTEST( res = digamma(x); verify_component_wise(res, ref); ); in array_special_functions()
|
D | cxx11_tensor_cuda.cu | 699 gpu_out.device(gpu_device) = gpu_in.digamma(); in test_cuda_digamma()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/ |
D | Gamma.java | 294 public static double digamma(double x) { in digamma() method in Gamma 310 return digamma(x + 1) - 1 / x; in digamma()
|
/external/eigen/unsupported/Eigen/ |
D | SpecialFunctions | 33 * - digamma
|
/external/eigen/Eigen/src/Core/ |
D | GlobalFunctions.h | 70 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(digamma,scalar_digamma_op,derivative of lgamma,\sa ArrayBase::dig…
|
/external/eigen/doc/ |
D | CoeffwiseMathFunctionsTable.dox | 445 a.\link ArrayBase::digamma digamma\endlink(); \n 446 \link Eigen::digamma digamma\endlink(a); 487 …<td><a href="https://en.wikipedia.org/wiki/Polygamma_function">n-th derivative of digamma at x</a>… 490 <a href="#cwisetable_digamma"> \c digamma </a>
|
/external/eigen/Eigen/src/plugins/ |
D | ArrayCwiseUnaryOps.h | 507 digamma() const in digamma() function
|
/external/eigen/unsupported/test/mpreal/ |
D | mpreal.h | 423 friend const mpreal digamma (const mpreal& v, mp_rnd_t rnd_mode); 2466 inline const mpreal digamma (const mpreal& x, mp_rnd_t r = mpreal::get_default_rnd()) { MPREAL_UN…
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorBase.h | 132 digamma() const { in digamma() function
|