Home
last modified time | relevance | path

Searched refs:rnd2 (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/random/
Drandom_ops_test.py122 rnd2 = random_ops.random_normal(shape, 0.0, 1.0, dtypes.float32)
123 diff = rnd2 - rnd1
244 rnd2 = random_ops.truncated_normal(shape, 0.0, 1.0, dtypes.float32)
245 diff = rnd2 - rnd1
256 rnd2 = random_ops.random_normal([])
257 self.assertAllEqual(rnd1, rnd2)
376 rnd2 = random_ops.random_uniform(shape, 0, 17, dtype=dtype)
377 diff = (rnd2 - rnd1).eval()
425 rnd2 = random_ops.truncated_normal(
427 self.assertEqual([None, None, None], rnd2.get_shape().as_list())
[all …]
Drandom_poisson_test.py109 rnd2 = random_ops.random_poisson(2.0, [24], dtype=dtype)
110 diff = rnd2 - rnd1
Drandom_gamma_test.py189 rnd2 = random_ops.random_gamma([24], 2.0, dtype=dtype)
190 diff = rnd2 - rnd1
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorRandom.h37 int rnd2 = ::rand(); in get_random_seed()
38 uint64_t rnd = (rnd1 | rnd2 << 16) ^ time; in get_random_seed()
123 unsigned rnd2 = PCG_XSH_RS_generator(state); variable
124 result.raw = (static_cast<uint64_t>(rnd1) << 32) | rnd2;
/external/tensorflow/tensorflow/core/grappler/costs/
Dgraph_properties_test.cc505 Output rnd2 = in TEST_F() local
510 ops::QueueEnqueue(root.WithOpName("Enqueue5"), q5, {rnd, rnd2, rnd3}); in TEST_F()