Searched refs:numCommonLoops (Results 1 – 5 of 5) sorted by relevance
/llvm-project/mlir/lib/Dialect/Affine/Analysis/ |
H A D | AffineAnalysis.cpp | 301 unsigned numCommonLoops = 0; in getNumCommonLoops() local 311 ++numCommonLoops; in getNumCommonLoops() 314 assert(commonLoops->size() == numCommonLoops); in getNumCommonLoops() 315 return numCommonLoops; in getNumCommonLoops() 391 unsigned numCommonLoops = getNumCommonLoops(srcDomain, dstDomain); in addOrderingConstraints() local 392 unsigned numCommonLoopConstraints = std::min(numCommonLoops, loopDepth); in addOrderingConstraints() 417 unsigned numCommonLoops = in computeDirectionVector() local 419 if (numCommonLoops == 0) in computeDirectionVector() 426 /*num=*/numCommonLoops); in computeDirectionVector() 435 for (unsigned j = 0; j < numCommonLoops; ++j) { in computeDirectionVector() [all …]
|
H A D | Utils.cpp | 1419 unsigned numCommonLoops, bool isBackwardSlice, in computeSliceUnion() argument 1444 srcAccess, dstAccess, /*loopDepth=*/numCommonLoops + 1, in computeSliceUnion() 1900 unsigned numCommonLoops = 0; in getNumCommonSurroundingLoops() local 1904 ++numCommonLoops; in getNumCommonSurroundingLoops() 1906 return numCommonLoops; in getNumCommonSurroundingLoops()
|
/llvm-project/mlir/test/lib/Analysis/ |
H A D | TestMemRefDependenceCheck.cpp | 47 getDirectionVectorStr(bool ret, unsigned numCommonLoops, unsigned loopNestDepth, in getDirectionVectorStr() argument 51 if (dependenceComponents.empty() || loopNestDepth > numCommonLoops) in getDirectionVectorStr() 82 unsigned numCommonLoops = in checkDependences() local 84 for (unsigned d = 1; d <= numCommonLoops + 1; ++d) { in checkDependences() 98 << getDirectionVectorStr(ret, numCommonLoops, d, in checkDependences()
|
/llvm-project/mlir/lib/Dialect/Affine/Utils/ |
H A D | LoopFusionUtils.cpp | 227 unsigned numCommonLoops = in getMaxLoopDepth() local 229 for (unsigned d = 1; d <= numCommonLoops + 1; ++d) { in getMaxLoopDepth() 307 unsigned numCommonLoops = in canFuseLoops() local 341 strategyOpsA, opsB, dstLoopDepth, numCommonLoops, in canFuseLoops()
|
/llvm-project/mlir/include/mlir/Dialect/Affine/Analysis/ |
H A D | Utils.h | 398 unsigned loopDepth, unsigned numCommonLoops,
|