Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions mlir/include/mlir/Dialect/SCF/Transforms/TileUsingInterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,10 @@ FailureOr<SmallVector<Operation *>> yieldReplacementForFusedProducer(
struct SCFTileAndFuseResult {
/// List of untiled operations that were fused with the tiled consumer.
llvm::SetVector<Operation *> fusedProducers;
/// List of tiled and fused operations generated. The first one in this list
/// is guaranteed to be the tiled operations generated during tiling of the
/// generated operation.
/// List of tiled and fused operations generated. The first element is always
/// the tiled version of the original consumer operation processed by
/// `tileConsumerAndFuseProducersUsingSCF`, followed by any operations that
/// were fused with it.
llvm::SetVector<Operation *> tiledAndFusedOps;
/// The `scf.for` operations that iterate over the tiles.
SmallVector<LoopLikeOpInterface> loops;
Expand Down
Loading