Home
last modified time | relevance | path

Searched refs:range_size (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/tests/
Dprng_test.cc48 double UniformChiSquared(int32 range_size, int32 expected_count,
140 double PrngTest::UniformChiSquared(int32 range_size, int32 expected_count, in UniformChiSquared() argument
142 int32 sample_size = range_size * expected_count; in UniformChiSquared()
146 builder.ConstantR0<int32>(range_size), in UniformChiSquared()
151 std::vector<int32> counts(range_size, 0); in UniformChiSquared()
155 for (int32 i = 0; i < range_size; ++i) { in UniformChiSquared()
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
Dbeam_search_decoder.py589 range_size=beam_width * vocab_size,
608 range_size=beam_width,
625 range_size=beam_width,
639 range_size=beam_width,
739 range_size, gather_shape): argument
768 range_size=range_size,
777 range_size, argument
804 range_ = array_ops.expand_dims(math_ops.range(batch_size) * range_size, 1)
/external/google-breakpad/src/processor/
Drange_map_unittest.cc335 const int range_size = 2; in RetriveAtIndexTest2() local
339 range_map->StoreRange(base_address, range_size, object); in RetriveAtIndexTest2()
/external/clang/tools/libclang/
DCXStoredDiagnostic.cpp87 return Diag.range_size(); in getNumRanges()
/external/tensorflow/tensorflow/python/training/
Dinput_test.py265 range_size = 5
267 range_size, num_epochs=num_epochs, shuffle=False)
268 dequeue_many = queue.dequeue_many(range_size * num_epochs)
276 self.assertAllEqual(list(xrange(range_size)) * num_epochs, output)
287 range_size = 2
289 range_size, num_epochs=num_epochs, shuffle=True, seed=314159)
290 dequeue_many = queue.dequeue_many(range_size)
325 range_size = 5
327 range_size, shared_name="SHARED_NAME_XYZ", name="Q")
Dinput.py342 range_size = array_ops.shape(tensor_list[0])[0]
345 queue = range_input_producer(range_size, num_epochs=num_epochs,
/external/fio/
Dfilesetup.c1134 unsigned int range_size, seed; in __init_rand_distribution() local
1138 range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]); in __init_rand_distribution()
1141 nranges = (fsize + range_size - 1) / range_size; in __init_rand_distribution()
/external/clang/include/clang/Basic/
DDiagnostic.h1295 unsigned range_size() const { return Ranges.size(); } in range_size() function