Home
last modified time | relevance | path

Searched refs:polygamma (Results 1 – 12 of 12) sorted by relevance

/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
DCudaSpecialFunctions.h66 using numext::polygamma;
67 …return make_float4(polygamma(n.x, x.x), polygamma(n.y, x.y), polygamma(n.z, x.z), polygamma(n.w, x…
73 using numext::polygamma;
74 return make_double2(polygamma(n.x, x.x), polygamma(n.y, x.y));
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsPacketMath.h31 Packet ppolygamma(const Packet& n, const Packet& x) { using numext::polygamma; return polygamma(n, … in ppolygamma()
DSpecialFunctionsHalf.h24 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half polygamma(const Eigen::half& n, const … in polygamma() function
25 return Eigen::half(Eigen::numext::polygamma(static_cast<float>(n), static_cast<float>(x))); in polygamma()
DSpecialFunctionsFunctors.h171 using numext::polygamma; return polygamma(n, x);
DSpecialFunctionsArrayAPI.h70 polygamma(const Eigen::ArrayBase<DerivedN>& n, const Eigen::ArrayBase<DerivedX>& x) in polygamma() function
DSpecialFunctionsImpl.h1525 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(polygamma, Scalar)
1526 polygamma(const Scalar& n, const Scalar& x) {
1527 return EIGEN_MATHFUNC_IMPL(polygamma, Scalar)::run(n, x);
/external/eigen/unsupported/Eigen/
DSpecialFunctions34 * - polygamma
/external/eigen/unsupported/test/
Dspecial_functions.cpp170 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res, ref); ); in array_special_functions()
174 CALL_SUBTEST( res = polygamma(n,x); verify_component_wise(res.head(8), ref.head(8)); ); in array_special_functions()
Dcxx11_tensor_cuda.cu835 gpu_out.device(gpu_device) = gpu_in_n.polygamma(gpu_in_x); in test_cuda_polygamma()
/external/eigen/Eigen/src/plugins/
DArrayCwiseBinaryOps.h305 polygamma(const EIGEN_CURRENT_STORAGE_BASE_CLASS<DerivedN> &n) const
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox485 \link Eigen::polygamma polygamma\endlink(n,x);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h160 polygamma(const OtherDerived& other) const { in polygamma() function