/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/ |
D | CudaSpecialFunctions.h | 126 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/ |
D | api_def_Igammac.pbtxt | 4 name: "math.igammac" 7 name: "igammac"
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cwise_op_igammas.cc | 22 REGISTER2(BinaryOp, CPU, "Igammac", functor::igammac, float, double); 26 REGISTER2(BinaryOp, GPU, "Igammac", functor::igammac, float, double);
|
D | cwise_op_gpu_igammas_double.cu.cc | 25 DEFINE_BINARY1(igammac, double);
|
D | cwise_op_gpu_igammas_float.cu.cc | 25 DEFINE_BINARY1(igammac, float);
|
D | cwise_ops.h | 1112 struct igammac : base<T, Eigen::internal::scalar_igammac_op<T>> {};
|
/external/eigen/unsupported/test/ |
D | special_functions.cpp | 72 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()
|
D | cxx11_tensor_cuda.cu | 970 gpu_out.device(gpu_device) = gpu_a.igammac(gpu_x); in test_cuda_igammac()
|
/external/eigen/unsupported/Eigen/src/SpecialFunctions/ |
D | SpecialFunctionsPacketMath.h | 47 Packet pigammac(const Packet& a, const Packet& x) { using numext::igammac; return igammac(a, x); } in pigammac()
|
D | SpecialFunctionsHalf.h | 36 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()
|
D | SpecialFunctionsFunctors.h | 54 using numext::igammac; return igammac(a, x);
|
D | SpecialFunctionsArrayAPI.h | 48 igammac(const Eigen::ArrayBase<Derived>& a, const Eigen::ArrayBase<ExponentDerived>& x) in igammac() function
|
D | SpecialFunctionsImpl.h | 1549 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/ |
D | SpecialFunctions | 32 * - igammac
|
/external/tensorflow/tensorflow/compiler/tf2xla/python/ |
D | xla.py | 208 igammac = _broadcasting_binary_op(math_ops.igammac) variable
|
/external/eigen/doc/ |
D | CoeffwiseMathFunctionsTable.dox | 469 \link Eigen::igammac igammac\endlink(a,x);
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_binary_test.py | 228 math_ops.igammac) 295 math_ops.igammac)
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/ |
D | map_vectorization_test.py | 171 ("Igammac", math_ops.igammac),
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | math_test.py | 190 math_ops.igammac,
|
D | pfor.py | 2839 @RegisterPForWithArgs("Igammac", math_ops.igammac)
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.math.pbtxt | 188 name: "igammac"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 188 name: "igammac"
|
D | tensorflow.pbtxt | 1476 name: "igammac"
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | special_math_test.py | 54 return math_ops.igammac(a, x)
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorBase.h | 146 igammac(const OtherDerived& other) const { in igammac() function
|