Home
last modified time | relevance | path

Searched refs:digamma (Results 1 – 14 of 14) sorted by relevance

/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
DCudaSpecialFunctions.h38 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/
DSpecialFunctionsPacketMath.h23 Packet pdigamma(const Packet& a) { using numext::digamma; return digamma(a); } in pdigamma()
DSpecialFunctionsHalf.h18 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()
DSpecialFunctionsFunctors.h127 using numext::digamma; return digamma(a);
DSpecialFunctionsImpl.h1513 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/
Dspecial_functions.cpp45 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()
Dcxx11_tensor_cuda.cu699 gpu_out.device(gpu_device) = gpu_in.digamma(); in test_cuda_digamma()
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/
DGamma.java294 public static double digamma(double x) { in digamma() method in Gamma
310 return digamma(x + 1) - 1 / x; in digamma()
/external/eigen/unsupported/Eigen/
DSpecialFunctions33 * - digamma
/external/eigen/Eigen/src/Core/
DGlobalFunctions.h70 …EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(digamma,scalar_digamma_op,derivative of lgamma,\sa ArrayBase::dig…
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox445 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/
DArrayCwiseUnaryOps.h507 digamma() const in digamma() function
/external/eigen/unsupported/test/mpreal/
Dmpreal.h423 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/
DTensorBase.h132 digamma() const { in digamma() function