Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Analysis/
DAffineStructures.cpp2789 FlatAffineConstraints::unionBoundingBox(const FlatAffineConstraints &otherCst) { in unionBoundingBox() argument
2790 assert(otherCst.getNumDimIds() == numDims && "dims mismatch"); in unionBoundingBox()
2791 assert(otherCst.getIds() in unionBoundingBox()
2795 assert(otherCst.getNumLocalIds() == 0 && "local ids not supported here"); in unionBoundingBox()
2800 if (!areIdsAligned(*this, otherCst)) { in unionBoundingBox()
2801 otherCopy.emplace(FlatAffineConstraints(otherCst)); in unionBoundingBox()
2805 const auto &otherAligned = otherCopy ? *otherCopy : otherCst; in unionBoundingBox()