Lines Matching defs:tileSize
124 unsigned tileSize = targetSize;
126 spec.tileSizes.push_back(tileSize);
131 while (tileSize > 1 && remainderChunk != 0) {
133 uint64_t maxPower = llvm::bit_floor(tileSize);
134 tileSize = maxPower == tileSize ? maxPower >> 1 : maxPower;
136 tripCount = remainderChunk / tileSize;
139 spec.tileSizes.push_back(tileSize);
143 remainderChunk = remainderChunk % tileSize;
150 for (auto [tileSize, tripCount] : llvm::zip(tileSizes, tripCounts))
151 computedRange += tileSize * tripCount;
336 /// Returns true if the maximum tile offset `tileSize * numThreads-1` is less
338 static bool canOmitTileOffsetInBoundsCheck(OpFoldResult tileSize,
341 std::optional<int64_t> tileSizeConst = getConstantIntValue(tileSize);