Lines Matching defs:divisor
98 "expected strictly positive tile size and divisor");
107 b.getStringAttr("expected strictly positive tile size and divisor"));
243 int64_t targetSize, int64_t divisor) {
247 assert(divisor > 0 && "divisor must be non-negative");
252 int64_t a = tripCount / divisor;
253 int64_t t = (targetSize + divisor - 1) / divisor;
255 spec.lowTileSize = (a / totalTripCount) * divisor;
256 spec.highTileSize = spec.lowTileSize + divisor;
270 OpFoldResult divisor, bool emitAssertions) {
280 emitIsPositiveIndexAssertion(b, divisor);
284 Value divisorValue = getValueOrCreateConstantIndexOp(builder, loc, divisor);