Home
last modified time | relevance | path

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

/llvm-project/mlir/test/lib/Analysis/
H A DTestMemRefDependenceCheck.cpp48 ArrayRef<DependenceComponent> dependenceComponents) { in getDirectionVectorStr() argument
51 if (dependenceComponents.empty() || loopNestDepth > numCommonLoops) in getDirectionVectorStr()
54 for (const auto &dependenceComponent : dependenceComponents) { in getDirectionVectorStr()
85 SmallVector<DependenceComponent, 2> dependenceComponents; in checkDependences() local
88 &dependenceComponents); in checkDependences()
99 dependenceComponents); in checkDependences()
/llvm-project/mlir/lib/Dialect/Affine/Analysis/
H A DAffineAnalysis.cpp414 SmallVector<DependenceComponent, 2> *dependenceComponents) { in computeDirectionVector() argument
448 dependenceComponents->resize(numCommonLoops); in computeDirectionVector()
450 (*dependenceComponents)[j].op = commonLoops[j].getOperation(); in computeDirectionVector()
452 (*dependenceComponents)[j].lb = in computeDirectionVector()
455 (*dependenceComponents)[j].ub = in computeDirectionVector()
611 SmallVector<DependenceComponent, 2> *dependenceComponents, bool allowRAR) { in checkMemrefAccessDependence() argument
675 if (dependenceComponents != nullptr) in checkMemrefAccessDependence()
677 dependenceComponents); in checkMemrefAccessDependence()
/llvm-project/mlir/include/mlir/Dialect/Affine/Analysis/
H A DAffineAnalysis.h174 SmallVector<DependenceComponent, 2> *dependenceComponents = nullptr,