Searched refs:lbCstOp (Results 1 – 1 of 1) sorted by relevance
196 auto lbCstOp = forOp.lowerBound().getDefiningOp<ConstantIndexOp>(); in promoteIfSingleIteration() local199 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() local1185 if (lbCstOp && ubCstOp && stepCstOp) { in loopUnrollByFactor()1187 int64_t lbCst = lbCstOp.getValue(); in loopUnrollByFactor()