/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, dtype=np_dt) 67 tf_comb = math_ops.betainc(a_comb, b_comb, x_comb).eval() 68 scipy_comb = special.betainc(a_comb, b_comb, x_comb, dtype=np_dt) 75 special.betainc(0.1, b_s, x_s, dtype=np_dt), 76 math_ops.betainc(0.1, b_s, x_s).eval(), 80 special.betainc(a_s, 0.1, x_s, dtype=np_dt), 81 math_ops.betainc(a_s, 0.1, x_s).eval(), 85 special.betainc(a_s, b_s, 0.1, dtype=np_dt), 86 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/tensorflow/tensorflow/compiler/tests/ |
D | ternary_ops_test.py | 228 expected = sps.betainc(a, b, x) 230 math_ops.betainc, a, b, x, expected, rtol=5e-6, atol=6e-6) 262 expected = sps.betainc(a, b, x, dtype=dtype) 264 math_ops.betainc, a, b, x, expected, rtol=rtol, atol=atol)
|
/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/tensorflow/tensorflow/compiler/mlir/lite/tests/debuginfo/ |
D | concrete_function_error.py | 40 y = tf.math.betainc(x, 0.5, 1.0) # Not supported
|
D | saved_model_error.py | 37 y = tf.math.betainc(x, 0.5, 1.0) # Not supported
|
/external/eigen/unsupported/Eigen/ |
D | SpecialFunctions | 36 * - betainc
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
D | beta.py | 279 return math_ops.betainc(self.concentration1, self.concentration0, x)
|
D | student_t.py | 286 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 | 80 name: "betainc"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.math.pbtxt | 80 name: "betainc"
|
D | tensorflow.pbtxt | 928 name: "betainc"
|
/external/tensorflow/ |
D | RELEASE.md | 3032 ….math.asinh`, `tf.math.atan`, `tf.math.atan2`, `tf.math.atanh`, `tf.math.betainc`, `tf.math.ceil`,…
|