Home
last modified time | relevance | path

Searched refs:igammac (Results 1 – 25 of 26) 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.h1112 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()
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/tensorflow/tensorflow/compiler/tf2xla/python/
Dxla.py208 igammac = _broadcasting_binary_op(math_ops.igammac) variable
/external/eigen/doc/
DCoeffwiseMathFunctionsTable.dox469 \link Eigen::igammac igammac\endlink(a,x);
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_binary_test.py228 math_ops.igammac)
295 math_ops.igammac)
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
Dmap_vectorization_test.py171 ("Igammac", math_ops.igammac),
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dmath_test.py190 math_ops.igammac,
Dpfor.py2839 @RegisterPForWithArgs("Igammac", math_ops.igammac)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.math.pbtxt188 name: "igammac"
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.math.pbtxt188 name: "igammac"
Dtensorflow.pbtxt1476 name: "igammac"
/external/tensorflow/tensorflow/compiler/tests/
Dspecial_math_test.py54 return math_ops.igammac(a, x)
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorBase.h146 igammac(const OtherDerived& other) const { in igammac() function

12