Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/
Dsparse_index_array.h130 std::vector<int64> sort_order; in SortWithValues() local
131 sort_order.reserve(num_elements); in SortWithValues()
133 sort_order.push_back(i); in SortWithValues()
138 absl::c_sort(sort_order, sort_order_less); in SortWithValues()
145 if (sort_order[i] < 0) { in SortWithValues()
147 } else if (i == sort_order[i]) { in SortWithValues()
149 sort_order[i] = -1; in SortWithValues()
157 if (sort_order[j] == i) { in SortWithValues()
160 sort_order[j] = -1; in SortWithValues()
164 std::copy_n(At(sort_order[j]).begin(), rank(), At(j).begin()); in SortWithValues()
[all …]
/external/ltp/pan/cgi/
Dbrowse.cgi113 if ($sort_order = param("sort")) {
114 @so = split(/,/, $sort_order);
/external/autotest/scheduler/
Dquery_managers.py80 sort_order = ('afe_jobs.priority DESC, '
115 where=query, order_by=sort_order))
/external/python/cpython2/Doc/library/
Dprofile.rst149 python -m cProfile [-o output_file] [-s sort_order] myscript.py
/external/python/cpython3/Doc/library/
Dprofile.rst126 python -m cProfile [-o output_file] [-s sort_order] (-m module | myscript.py)