Home
last modified time | relevance | path

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

/external/llvm-project/mlir/test/lib/Transforms/
DTestLoopFusion.cpp56 unsigned maxLoopDepth) { in testDependenceCheck() argument
58 for (unsigned d = loopDepth + 1; d <= maxLoopDepth; ++d) { in testDependenceCheck()
108 unsigned maxLoopDepth) { in testSliceComputation() argument
109 for (unsigned d = loopDepth + 1; d <= maxLoopDepth; ++d) { in testSliceComputation()
127 unsigned maxLoopDepth) { in testLoopFusionTransformation() argument
128 for (unsigned d = loopDepth + 1; d <= maxLoopDepth; ++d) { in testLoopFusionTransformation()
/external/llvm-project/mlir/include/mlir/Analysis/
DAffineAnalysis.h128 AffineForOp forOp, unsigned maxLoopDepth,
/external/llvm-project/mlir/lib/Transforms/Utils/
DLoopUtils.cpp1431 unsigned maxLoopDepth = loops.size(); in checkLoopInterchangeDependences() local
1433 loopPermMapInv.resize(maxLoopDepth); in checkLoopInterchangeDependences()
1434 for (unsigned i = 0; i < maxLoopDepth; ++i) in checkLoopInterchangeDependences()
1444 assert(depComps.size() >= maxLoopDepth); in checkLoopInterchangeDependences()
1447 for (unsigned j = 0; j < maxLoopDepth; ++j) { in checkLoopInterchangeDependences()
1467 unsigned maxLoopDepth = loops.size(); in isValidLoopInterchangePermutation() local
1469 getDependenceComponents(loops[0], maxLoopDepth, &depCompsVec); in isValidLoopInterchangePermutation()
1576 unsigned maxLoopDepth = loops.size(); in sinkSequentialLoops() local
1578 getDependenceComponents(loops[0], maxLoopDepth, &depCompsVec); in sinkSequentialLoops()
1581 SmallVector<bool, 8> isParallelLoop(maxLoopDepth, true); in sinkSequentialLoops()
[all …]
/external/llvm-project/mlir/lib/Analysis/
DAffineAnalysis.cpp953 AffineForOp forOp, unsigned maxLoopDepth, in getDependenceComponents() argument
963 for (unsigned d = 1; d <= maxLoopDepth; ++d) { in getDependenceComponents()
/external/llvm-project/mlir/lib/Transforms/
DLoopFusion.cpp1436 unsigned maxLoopDepth = 0; in fuseProducerConsumerNodes() local
1444 if (loopDepth > maxLoopDepth) { in fuseProducerConsumerNodes()
1445 maxLoopDepth = loopDepth; in fuseProducerConsumerNodes()