Home
last modified time | relevance | path

Searched refs:SortedIndices (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dmapped_ptr_container_sorter.h103 class SortedIndices {
107 SortedIndices(size_t max_partial_order_exclusive, in SortedIndices() function
133 SortedIndices() = delete;
229 Status MappedPtrContainerSorter<PointedToTy>::SortedIndices::AddMappedElement(
243 void MappedPtrContainerSorter<PointedToTy>::SortedIndices::AddUnmappedElement(
251 std::string MappedPtrContainerSorter<PointedToTy>::SortedIndices::ToString()
287 MappedPtrContainerSorter<PointedToTy>::SortedIndices::Flatten() const {
397 SortedIndices result(next_partial_order_value, unordered_container.size());
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopAccessAnalysis.cpp1103 SmallVectorImpl<unsigned> &SortedIndices) { in sortPtrAccesses() argument
1143 SortedIndices.clear(); in sortPtrAccesses()
1144 SortedIndices.resize(VL.size()); in sortPtrAccesses()
1145 std::iota(SortedIndices.begin(), SortedIndices.end(), 0); in sortPtrAccesses()
1148 llvm::stable_sort(SortedIndices, [&](unsigned Left, unsigned Right) { in sortPtrAccesses()
1153 if (llvm::all_of(SortedIndices, [&SortedIndices](const unsigned I) { in sortPtrAccesses()
1154 return I == SortedIndices[I]; in sortPtrAccesses()
1156 SortedIndices.clear(); in sortPtrAccesses()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLoopAccessAnalysis.h709 SmallVectorImpl<unsigned> &SortedIndices);