MLIR
17.0.0git
|
Transformation information returned after tiling. More...
#include "mlir/Dialect/SCF/Transforms/TileUsingInterface.h"
Public Attributes | |
SmallVector< Operation * > | tiledOps |
Tiled operations that are generated during tiling. More... | |
SmallVector< scf::ForOp > | loops |
The scf.for operations that iterate over the tiles. More... | |
SmallVector< Value > | replacements |
Values to use as replacements for the untiled op. More... | |
Transformation information returned after tiling.
Definition at line 64 of file TileUsingInterface.h.
SmallVector<scf::ForOp> mlir::scf::SCFTilingResult::loops |
The scf.for
operations that iterate over the tiles.
Definition at line 70 of file TileUsingInterface.h.
Referenced by mlir::scf::tileUsingSCFForOp().
SmallVector<Value> mlir::scf::SCFTilingResult::replacements |
Values to use as replacements for the untiled op.
Is the same size as the number of results of the untiled op.
Definition at line 73 of file TileUsingInterface.h.
Referenced by mlir::scf::tileUsingSCFForOp().
SmallVector<Operation *> mlir::scf::SCFTilingResult::tiledOps |
Tiled operations that are generated during tiling.
The order does not matter except the last op. The replacements are expected to be the results of the last op.
Definition at line 68 of file TileUsingInterface.h.
Referenced by mlir::scf::tileUsingSCFForOp().