Home
last modified time | relevance | path

Searched refs:igammac (Results 1 – 11 of 11) sorted by relevance

/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
DCudaSpecialFunctions.h126 using numext::igammac;
128 igammac(a.x, x.x),
129 igammac(a.y, x.y),
130 igammac(a.z, x.z),
131 igammac(a.w, x.w));
137 using numext::igammac;
138 return make_double2(igammac(a.x, x.x), igammac(a.y, x.y));
/external/eigen/unsupported/test/
Dspecial_functions.cpp72 ArrayType Gamma_a_x = Eigen::igammac(a, x) * a.lgamma().exp(); in array_special_functions()
73 ArrayType Gamma_a_m1_x = Eigen::igammac(a_m1, x) * a_m1.lgamma().exp(); in array_special_functions()
78 VERIFY_IS_APPROX(Eigen::igammac(a, zero), one); in array_special_functions()
126 VERIFY((std::isnan)(numext::igammac(a_s[i], x_s[j]))); in array_special_functions()
128 VERIFY_IS_APPROX(numext::igammac(a_s[i], x_s[j]), igammac_s[i][j]); in array_special_functions()
Dcxx11_tensor_cuda.cu970 gpu_out.device(gpu_device) = gpu_a.igammac(gpu_x); in test_cuda_igammac()
/external/eigen/unsupported/Eigen/src/SpecialFunctions/
DSpecialFunctionsPacketMath.h47 Packet pigammac(const Packet& a, const Packet& x) { using numext::igammac; return igammac(a, x); } in pigammac()
DSpecialFunctionsHalf.h36 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half igammac(const Eigen::half& a, const Ei… in igammac() function
37 return Eigen::half(Eigen::numext::igammac(static_cast<float>(a), static_cast<float>(x))); in igammac()
DSpecialFunctionsFunctors.h54 using numext::igammac; return igammac(a, x);
DSpecialFunctionsArrayAPI.h48 igammac(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) in igammac() function
DSpecialFunctionsImpl.h1549 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(igammac, Scalar)
1550 igammac(const Scalar& a, const Scalar& x) {
1551 return EIGEN_MATHFUNC_IMPL(igammac, Scalar)::run(a, x);
/external/eigen/unsupported/Eigen/
DSpecialFunctions32 * - igammac
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox469 \link Eigen::igammac igammac\endlink(a,x);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h146 igammac(const OtherDerived& other) const { in igammac() function