Home
last modified time | relevance | path

Searched refs:x_s (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/
Dbetainc_op_test.py38 def _testBetaInc(self, a_s, b_s, x_s, dtype): argument
46 x_s = x_s.astype(np_dt) # in (0, 1)
49 tf_x_s = constant_op.constant(x_s, dtype=dtype)
53 scipy_out = special.betainc(a_s, b_s, x_s, 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(),
120 x_s = np.random.rand(10, 10) # in (0, 1)
121 self._testBetaInc(a_s, b_s, x_s, dtypes.float32)
[all …]
/external/compiler-rt/test/msan/
Dmsan_print_shadow3.cc9 char x_s[4] = {0x87, 0x65, 0x43, 0x21}; in main() local
10 __msan_partial_poison(&x, &x_s, sizeof(x_s)); in main()
11 __msan_print_shadow(&x, sizeof(x_s)); in main()
/external/llvm-project/compiler-rt/test/msan/
Dmsan_print_shadow3.cpp9 char x_s[4] = {0x77, 0x65, 0x43, 0x21}; in main() local
10 __msan_partial_poison(&x, &x_s, sizeof(x_s)); in main()
11 __msan_print_shadow(&x, sizeof(x_s)); in main()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dconv_buffer_1x1.cc244 std::string x_s = std::to_string(x); in GenerateConvBuffer1x1() local
245 c += " int xc" + x_s + " = min(X_SRC + " + std::to_string(x) + in GenerateConvBuffer1x1()
256 std::string x_s = std::to_string(x); in GenerateConvBuffer1x1() local
259 ") * args.src_tensor.Width() + (xc" + x_s + ");\n"; in GenerateConvBuffer1x1()
266 std::string x_s = std::to_string(x); in GenerateConvBuffer1x1() local
288 const std::string x_s = std::to_string(x); in GenerateConvBuffer1x1() local
289 c += " if (X + " + x_s + " < args.dst_tensor.Width() && Y + " + y_s + in GenerateConvBuffer1x1()
291 c += " FLT4 res = TO_FLT4(r" + z_s + y_s + x_s + ");\n"; in GenerateConvBuffer1x1()
292 c += " args.dst_tensor.Write(res, X + " + x_s + ", Y + " + y_s + in GenerateConvBuffer1x1()
/external/eigen/unsupported/test/
Dspecial_functions.cpp93 Scalar x_s[] = {Scalar(0), Scalar(1), Scalar(1.5), Scalar(4), Scalar(0.0001), Scalar(1000.5)}; in array_special_functions() local
120 VERIFY((std::isnan)(numext::igamma(a_s[i], x_s[j]))); in array_special_functions()
122 VERIFY_IS_APPROX(numext::igamma(a_s[i], x_s[j]), igamma_s[i][j]); 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.cu858 Scalar x_s[] = {Scalar(0), Scalar(1), Scalar(1.5), Scalar(4), Scalar(0.0001), Scalar(1000.5)}; in test_cuda_igamma() local
863 x(i, j) = x_s[j]; in test_cuda_igamma()
929 Scalar x_s[] = {Scalar(0), Scalar(1), Scalar(1.5), Scalar(4), Scalar(0.0001), Scalar(1000.5)}; in test_cuda_igammac() local
934 x(i, j) = x_s[j]; in test_cuda_igammac()
/external/clang/test/CXX/class.access/class.friend/
Dp1.cpp24 X::S x_s; // expected-error{{no type named 'S' in 'X'; did you mean simply 'S'?}} in test1() local
48 X::S x_s; // expected-error{{no type named 'S' in 'N::X'; did you mean simply 'S'?}} in test() local
/external/llvm-project/clang/test/CXX/class.access/class.friend/
Dp1.cpp26 X::S x_s; // expected-error{{no type named 'S' in 'X'; did you mean simply 'S'?}} in test1() local
50 X::S x_s; // expected-error{{no type named 'S' in 'N::X'; did you mean simply 'S'?}} in test() local
/external/tensorflow/tensorflow/python/distribute/
Dstrategy_common_test.py110 x_s = strategy.reduce(reduce_util.ReduceOp.SUM, x, axis=0)
111 self.assertEqual(3 * strategy.num_replicas_in_sync, x_s)
/external/compiler-rt/lib/msan/tests/
Dmsan_test.cc4301 U4 x_s = 0xFFFF0000U; in TEST() local
4302 __msan_partial_poison(&x, &x_s, sizeof(x)); in TEST()
/external/llvm-project/compiler-rt/lib/msan/tests/
Dmsan_test.cpp4561 U4 x_s = 0xFFFF0000U; in TEST() local
4562 __msan_partial_poison(&x, &x_s, sizeof(x)); in TEST()