Home
last modified time | relevance | path

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

/external/llvm-project/mlir/lib/Transforms/Utils/
DLoopUtils.cpp196 auto lbCstOp = forOp.lowerBound().getDefiningOp<ConstantIndexOp>(); in promoteIfSingleIteration() local
199 if (!lbCstOp || !ubCstOp || !stepCstOp || lbCstOp.getValue() < 0 || in promoteIfSingleIteration()
202 int64_t tripCount = mlir::ceilDiv(ubCstOp.getValue() - lbCstOp.getValue(), in promoteIfSingleIteration()
207 iv.replaceAllUsesWith(lbCstOp); in promoteIfSingleIteration()
1182 auto lbCstOp = forOp.lowerBound().getDefiningOp<ConstantIndexOp>(); in loopUnrollByFactor() local
1185 if (lbCstOp && ubCstOp && stepCstOp) { in loopUnrollByFactor()
1187 int64_t lbCst = lbCstOp.getValue(); in loopUnrollByFactor()