/external/tensorflow/tensorflow/python/kernel_tests/ |
D | betainc_op_test.py | 50 tf_out_t = math_ops.betainc(tf_a_s, tf_b_s, tf_x_s) 53 scipy_out = special.betainc(a_s, b_s, x_s).astype(np_dt) 65 tf_comb = math_ops.betainc(a_comb, b_comb, x_comb).eval() 66 scipy_comb = special.betainc(a_comb, b_comb, x_comb).astype(np_dt) 72 special.betainc(0.1, b_s, x_s).astype(np_dt), 73 math_ops.betainc(0.1, b_s, x_s).eval(), 77 special.betainc(a_s, 0.1, x_s).astype(np_dt), 78 math_ops.betainc(a_s, 0.1, x_s).eval(), 82 special.betainc(a_s, b_s, 0.1).astype(np_dt), 83 math_ops.betainc(a_s, b_s, 0.1).eval(), [all …]
|
/external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/ |
D | CudaSpecialFunctions.h | 144 using numext::betainc; 146 betainc(a.x, b.x, x.x), 147 betainc(a.y, b.y, x.y), 148 betainc(a.z, b.z, x.z), 149 betainc(a.w, b.w, x.w)); 155 using numext::betainc; 156 return make_double2(betainc(a.x, b.x, x.x), betainc(a.y, b.y, x.y));
|
/external/eigen/unsupported/test/ |
D | special_functions.cpp | 280 CALL_SUBTEST(res = betainc(a, b, x); in array_special_functions() 297 ArrayType test = betainc(a, one, x); in array_special_functions() 303 ArrayType test = betainc(one, b, x); in array_special_functions() 309 ArrayType test = betainc(a, b, x) + betainc(b, a, one - x); in array_special_functions() 319 ArrayType expected = betainc(a, b, x) - num / denom + eps; in array_special_functions() 320 ArrayType test = betainc(a + one, b, x) + eps; in array_special_functions() 334 ArrayType expected = betainc(a, b, x) + num / denom + eps; in array_special_functions() 335 ArrayType test = betainc(a, b + one, x) + eps; in array_special_functions()
|
D | cxx11_tensor_cuda.cu | 1195 gpu_out.device(gpu_device) = betainc(gpu_in_a, gpu_in_b, gpu_in_x); in test_cuda_betainc()
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Betainc.pbtxt | 4 name: "math.betainc" 7 name: "betainc"
|
/external/tensorflow/tensorflow/core/kernels/ |
D | betainc_op.h | 33 output.device(d) = Eigen::betainc(a, b, x); in operator() 43 output.device(d) = Eigen::betainc( in BCast()
|
/external/eigen/unsupported/Eigen/src/SpecialFunctions/ |
D | SpecialFunctionsPacketMath.h | 51 …onst Packet& a, const Packet& b,const Packet& x) { using numext::betainc; return betainc(a, b, x);… in pbetainc()
|
D | SpecialFunctionsHalf.h | 39 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half betainc(const Eigen::half& a, const Ei… in betainc() function 40 …return Eigen::half(Eigen::numext::betainc(static_cast<float>(a), static_cast<float>(b), static_cas… in betainc()
|
D | SpecialFunctionsFunctors.h | 79 using numext::betainc; return betainc(x, a, b);
|
D | SpecialFunctionsArrayAPI.h | 90 betainc(const Eigen::ArrayBase<ArgADerived>& a, const Eigen::ArrayBase<ArgBDerived>& b, const Eigen… in betainc() function
|
D | SpecialFunctionsImpl.h | 1555 EIGEN_DEVICE_FUNC inline EIGEN_MATHFUNC_RETVAL(betainc, Scalar) 1556 betainc(const Scalar& a, const Scalar& b, const Scalar& x) { 1557 return EIGEN_MATHFUNC_IMPL(betainc, Scalar)::run(a, b, x);
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorGlobalFunctions.h | 24 betainc(const ADerived& a, const BDerived& b, const XDerived& x) { in betainc() function
|
/external/eigen/unsupported/Eigen/ |
D | SpecialFunctions | 36 * - betainc
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/ |
D | negative_binomial.py | 169 return math_ops.betainc(self.total_count, 1. + x,
|
D | binomial.py | 72 dk = math_ops.betainc(a=safe_dn, b=k + 1, x=1 - p)
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | beta.py | 275 return math_ops.betainc(self.concentration1, self.concentration0, x)
|
D | student_t.py | 283 neg_cdf = 0.5 * math_ops.betainc(0.5 * self.df, 0.5, x_t)
|
/external/eigen/doc/ |
D | CoeffwiseMathFunctionsTable.dox | 498 \link Eigen::betainc betainc\endlink(a,b,x);
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.math.pbtxt | 76 name: "betainc"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 76 name: "betainc"
|
D | tensorflow.pbtxt | 892 name: "betainc"
|
/external/tensorflow/ |
D | RELEASE.md | 359 ….math.asinh`, `tf.math.atan`, `tf.math.atan2`, `tf.math.atanh`, `tf.math.betainc`, `tf.math.ceil`,…
|