Searched refs:depCompsVec (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/mlir/include/mlir/Analysis/ |
D | AffineAnalysis.h | 129 std::vector<SmallVector<DependenceComponent, 2>> *depCompsVec);
|
/external/llvm-project/mlir/lib/Transforms/Utils/ |
D | LoopUtils.cpp | 1428 const std::vector<SmallVector<DependenceComponent, 2>> &depCompsVec, in checkLoopInterchangeDependences() argument 1442 for (unsigned i = 0, e = depCompsVec.size(); i < e; ++i) { in checkLoopInterchangeDependences() 1443 const SmallVector<DependenceComponent, 2> &depComps = depCompsVec[i]; in checkLoopInterchangeDependences() 1468 std::vector<SmallVector<DependenceComponent, 2>> depCompsVec; in isValidLoopInterchangePermutation() local 1469 getDependenceComponents(loops[0], maxLoopDepth, &depCompsVec); in isValidLoopInterchangePermutation() 1470 return checkLoopInterchangeDependences(depCompsVec, loops, loopPermMap); in isValidLoopInterchangePermutation() 1577 std::vector<SmallVector<DependenceComponent, 2>> depCompsVec; in sinkSequentialLoops() local 1578 getDependenceComponents(loops[0], maxLoopDepth, &depCompsVec); in sinkSequentialLoops() 1582 for (unsigned i = 0, e = depCompsVec.size(); i < e; ++i) { in sinkSequentialLoops() 1583 SmallVector<DependenceComponent, 2> &depComps = depCompsVec[i]; in sinkSequentialLoops() [all …]
|
/external/llvm-project/mlir/lib/Analysis/ |
D | AffineAnalysis.cpp | 954 std::vector<SmallVector<DependenceComponent, 2>> *depCompsVec) { in getDependenceComponents() argument 978 depCompsVec->push_back(depComps); in getDependenceComponents()
|