Home
last modified time | relevance | path

Searched refs:nth_element (Results 1 – 24 of 24) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/
Dnth_element_op_test.py38 values_op = nn_ops.nth_element(inputs_op, n, reverse=reverse)
119 nn_ops.nth_element(5, 0)
126 nn_ops.nth_element(v, 0).eval(feed_dict={v: 5.0})
132 nn_ops.nth_element([5], -1)
135 nn_ops.nth_element([5, 6, 3], [1])
142 values = nn_ops.nth_element(inputs, n)
151 nn_ops.nth_element(inputs, 2)
158 values = nn_ops.nth_element(inputs, n)
166 values = nn_ops.nth_element(inputs, 3)
/external/libcxx/test/std/algorithms/alg.sorting/alg.nth.element/
Dnth_element_comp.pass.cpp46 std::nth_element(array, array+M, array+N, std::greater<int>()); in test_one()
48 std::nth_element(array, array+N, array+N, std::greater<int>()); // begin, end, end in test_one()
70 std::nth_element(&d, &d, &d); in main()
85 std::nth_element(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less()); in main()
Dnth_element.pass.cpp33 std::nth_element(array, array+M, array+N); in test_one()
35 std::nth_element(array, array+N, array+N); // begin, end, end in test_one()
57 std::nth_element(&d, &d, &d); in main()
/external/libcxx/fuzzing/
DRoutineNames.txt8 nth_element
Dfuzzing.h30 int nth_element (const uint8_t *data, size_t size);
Dfuzz_test.cpp116 {"nth_element", fuzzing::nth_element},
Dfuzzing.cpp266 int nth_element (const uint8_t *data, size_t size) in nth_element() function
272 std::nth_element(working.begin(), partition_iter, working.end()); in nth_element()
/external/libcxx/test/libcxx/fuzzing/
Dnth_element.cpp35 assert(0 == fuzzing::nth_element(data, size)); in main()
/external/libcxx/utils/google-benchmark/src/
Dstatistics.cc42 std::nth_element(copy.begin(), center, copy.end()); in StatisticsMedian()
50 std::nth_element(copy.begin(), center2, copy.end()); in StatisticsMedian()
/external/google-benchmark/src/
Dstatistics.cc42 std::nth_element(copy.begin(), center, copy.end()); in StatisticsMedian()
50 std::nth_element(copy.begin(), center2, copy.end()); in StatisticsMedian()
/external/tensorflow/tensorflow/contrib/nn/
D__init__.py38 from tensorflow.python.ops.nn_ops import nth_element
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
Dnada.cc131 std::nth_element(array_copy.begin(), array_copy.begin() + size / 2, in MedianFilter()
138 std::nth_element(array_copy.begin(), array_copy.begin() + (size - 1) / 2, in MedianFilter()
/external/eigen/unsupported/Eigen/src/BVH/
DKdBVH.h193 std::nth_element(objCenters.begin() + from, objCenters.begin() + mid,
203 nth_element(objCenters.begin() + from, objCenters.begin() + mid,
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
Dxray-account.cpp243 std::nth_element(Timings.begin(), Timings.begin() + MedianOff, Timings.end()); in getStats()
247 std::nth_element(Timings.begin(), Timings.begin() + Pct90Off, Timings.end()); in getStats()
251 std::nth_element(Timings.begin(), Timings.begin() + Pct99Off, Timings.end()); in getStats()
Dxray-graph.cpp258 std::nth_element(begin, begin + MedianOff, end); in getStats()
261 std::nth_element(begin, begin + Pct90Off, end); in getStats()
264 std::nth_element(begin, begin + Pct99Off, end); in getStats()
/external/tensorflow/tensorflow/core/grappler/costs/
Drobust_stats.cc42 std::nth_element(values.begin(), middle, values.end()); in Median()
/external/tensorflow/tensorflow/core/kernels/
Dnth_element_op.cc108 std::nth_element(buf.begin(), buf.begin() + n, buf.end()); in operator ()()
/external/deqp/modules/glshared/
DglsCalibration.cpp52 std::nth_element(data.begin(), mid, data.end()); in destructiveMedian()
DglsStateChangePerfTestCases.cpp204 std::nth_element(values.begin(), values.begin() + n, values.end()); in findMedian()
/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dnonlinear_beamformer.cc560 std::nth_element(new_mask_ + low_mean_start_bin_, new_mask_ + quantile, in EstimateTargetPresence()
/external/tensorflow/tensorflow/core/graph/
Dcostmodel.cc42 std::nth_element(non_zero.begin(), non_zero.begin() + sz / 2, in SuppressInfrequent()
/external/tensorflow/tensorflow/python/ops/
Dnn_ops.py4205 def nth_element(input, n, reverse=False, name=None): # pylint: disable=redefined-builtin function
4230 return gen_nn_ops.nth_element(input, n, reverse=reverse, name=name)
/external/libcxx/include/
Dalgorithm380 nth_element(RandomAccessIterator first, RandomAccessIterator nth, RandomAccessIterator last);
384nth_element(RandomAccessIterator first, RandomAccessIterator nth, RandomAccessIterator last, Compa…
5082 // nth_element
5274 nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __las…
5289 nth_element(_RandomAccessIterator __first, _RandomAccessIterator __nth, _RandomAccessIterator __las…
5291 …_VSTD::nth_element(__first, __nth, __last, __less<typename iterator_traits<_RandomAccessIterator>:…
/external/protobuf/src/google/protobuf/
Dmap_test.cc301 std::nth_element(v.begin(), v.begin() + v.size() / 2, v.end()); in median()