Searched refs:stepCst (Results 1 – 1 of 1) sorted by relevance
1189 int64_t stepCst = stepCstOp.getValue(); in loopUnrollByFactor() local1190 assert(lbCst >= 0 && ubCst >= 0 && stepCst >= 0 && in loopUnrollByFactor()1192 int64_t tripCount = mlir::ceilDiv(ubCst - lbCst, stepCst); in loopUnrollByFactor()1194 int64_t upperBoundUnrolledCst = lbCst + tripCountEvenMultiple * stepCst; in loopUnrollByFactor()1196 int64_t stepUnrolledCst = stepCst * unrollFactor; in loopUnrollByFactor()1208 stepCst == stepUnrolledCst in loopUnrollByFactor()1918 if (auto stepCst = step.getDefiningOp<ConstantIndexOp>()) in normalizeLoop() local1919 isStepOne = stepCst.getValue() == 1; in normalizeLoop()