Home
last modified time | relevance | path

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

12

/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/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Igammac.pbtxt4 name: "math.igammac"
7 name: "igammac"
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_igammas.cc22 REGISTER2(BinaryOp, CPU, "Igammac", functor::igammac, float, double);
26 REGISTER2(BinaryOp, GPU, "Igammac", functor::igammac, float, double);
Dcwise_op_gpu_igammas_double.cu.cc25 DEFINE_BINARY1(igammac, double);
Dcwise_op_gpu_igammas_float.cu.cc25 DEFINE_BINARY1(igammac, float);
Dcwise_ops.h971 struct igammac : base<T, Eigen::internal::scalar_igammac_op<T>> {};
/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()
/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/tensorflow/tensorflow/contrib/labeled_tensor/
D__init__.py99 igammac = _core.igammac variable
/external/eigen/unsupported/Eigen/
DSpecialFunctions32 * - igammac
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
Dpoisson.py168 return math_ops.igammac(1. + x, self.rate)
Dinverse_gamma.py210 return math_ops.igammac(self.concentration, self.rate / x)
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
Dcore.py1198 igammac = define_binary_op('igammac', math_ops.igammac) variable
Dcore_test.py844 ('igammac', None, math_ops.igammac, core.igammac),
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dmath_test.py168 math_ops.igammac,
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
Dmap_vectorization_test.py161 ("Igammac", math_ops.igammac),
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox469 \link Eigen::igammac igammac\endlink(a,x);
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_binary_test.py227 math_ops.igammac)
295 math_ops.igammac)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.math.pbtxt168 name: "igammac"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.math.pbtxt168 name: "igammac"
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h146 igammac(const OtherDerived& other) const { in igammac() function

12