35 #define GEN_PASS_DEF_SPARSIFICATIONANDBUFFERIZATION
36 #include "mlir/Dialect/SparseTensor/Transforms/Passes.h.inc"
38 namespace sparse_tensor {
61 :
public impl::SparsificationAndBufferizationBase<
62 SparsificationAndBufferizationPass> {
68 bool createSparseDeallocs,
bool enableRuntimeLibrary,
69 bool enableBufferInitialization)
70 : bufferizationOptions(bufferizationOptions),
71 sparsificationOptions(sparsificationOptions),
72 createSparseDeallocs(createSparseDeallocs),
73 enableRuntimeLibrary(enableRuntimeLibrary),
74 enableBufferInitialization(enableBufferInitialization) {}
79 bool createSparseDeallocs,
bool enableRuntimeLibrary,
80 bool enableBufferInitialization,
unsigned vl,
bool vla,
bool index32,
83 : bufferizationOptions(bufferizationOptions),
84 sparsificationOptions(sparsificationOptions),
85 createSparseDeallocs(createSparseDeallocs),
86 enableRuntimeLibrary(enableRuntimeLibrary),
87 enableBufferInitialization(enableBufferInitialization) {
90 enableVLAVectorization = vla;
91 enableSIMDIndex32 = index32;
92 enableGPULibgen = gpu;
93 sparseEmitStrategy = emitStrategy;
94 parallelization = parallelizationStrategy;
102 bufferizationOptions;
108 if (
auto funcOp = dyn_cast<func::FuncOp>(op)) {
109 FunctionType funcType = funcOp.getFunctionType();
138 if (failed(runPipeline(pm, getOperation())))
139 return signalPassFailure();
153 bufferizationOptions)))
154 return signalPassFailure();
184 if (vectorLength > 0) {
186 vectorLength, enableVLAVectorization, enableSIMDIndex32));
188 if (enableRuntimeLibrary) {
192 enableBufferInitialization));
195 if (failed(runPipeline(pm, getOperation())))
196 return signalPassFailure();
207 bool createSparseDeallocs;
208 bool enableRuntimeLibrary;
209 bool enableBufferInitialization;
219 options.bufferizeFunctionBoundaries =
true;
220 options.setFunctionBoundaryTypeConversion(LayoutMapOption::IdentityLayoutMap);
224 cast<TensorType>(value.
getType()), memorySpace);
227 options.testAnalysisOnly =
true;
235 options.allowUnknownOps =
true;
241 return std::make_unique<
253 bool createSparseDeallocs,
bool enableRuntimeLibrary,
254 bool enableBufferInitialization,
unsigned vectorLength,
255 bool enableVLAVectorization,
bool enableSIMDIndex32,
bool enableGPULibgen,
258 return std::make_unique<
260 bufferizationOptions, sparsificationOptions, createSparseDeallocs,
261 enableRuntimeLibrary, enableBufferInitialization, vectorLength,
262 enableVLAVectorization, enableSIMDIndex32, enableGPULibgen, emitStrategy,
263 parallelizationStrategy);
static llvm::ManagedStatic< PassManagerOptions > options
Attributes are known-constant values of operations.
This class represents a pass manager that runs passes on either a specific operation type,...
void addPass(std::unique_ptr< Pass > pass)
Add the given pass to this pass manager.
void addNestedPass(std::unique_ptr< Pass > pass)
Add the given pass to a nested pass manager for the given operation kind OpT.
Operation is the basic unit of execution within MLIR.
operand_range getOperands()
Returns an iterator on the underlying Value's.
result_range getResults()
This class provides an abstraction over the various different ranges of value types.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
Type getType() const
Return the type of this value.
void denyOperation()
Deny the given ops.
A pass that lowers tensor ops to memref ops, regardless of whether they are dense or sparse.
SparsificationAndBufferizationPass(const bufferization::OneShotBufferizationOptions &bufferizationOptions, const SparsificationOptions &sparsificationOptions, bool createSparseDeallocs, bool enableRuntimeLibrary, bool enableBufferInitialization, unsigned vl, bool vla, bool index32, bool gpu, SparseEmitStrategy emitStrategy, SparseParallelizationStrategy parallelizationStrategy)
void runOnOperation() override
LogicalResult runDenseBufferization()
Bufferize all dense ops.
SparsificationAndBufferizationPass(const bufferization::OneShotBufferizationOptions &bufferizationOptions, const SparsificationOptions &sparsificationOptions, bool createSparseDeallocs, bool enableRuntimeLibrary, bool enableBufferInitialization)
BaseMemRefType getMemRefTypeWithStaticIdentityLayout(TensorType tensorType, Attribute memorySpace=nullptr)
Return a MemRef type with a static identity layout (i.e., no layout map).
LogicalResult insertTensorCopies(Operation *op, const OneShotBufferizationOptions &options, BufferizationStatistics *statistics=nullptr)
Resolve RaW and other conflicts by inserting bufferization.alloc_tensor ops.
void removeBufferizationAttributesInModule(ModuleOp moduleOp)
Remove bufferization attributes on every FuncOp arguments in the ModuleOp.
std::unique_ptr< Pass > createEmptyTensorToAllocTensorPass()
Create a pass that rewrites tensor.empty to bufferization.alloc_tensor.
llvm::LogicalResult bufferizeModuleOp(ModuleOp moduleOp, const OneShotBufferizationOptions &options, BufferizationStatistics *statistics=nullptr)
Bufferize op and its nested ops that implement BufferizableOpInterface.
static bool containsSparseTensor(TypeRange types)
Return true if one of the given types is a sparse tensor type.
SparseTensorEncodingAttr getSparseTensorEncoding(Type type)
Convenience method to get a sparse encoding attribute from a type.
Include the generated interface declarations.
std::unique_ptr< Pass > createSparseVectorizationPass()
std::unique_ptr< Pass > createLowerSparseOpsToForeachPass()
std::unique_ptr< Pass > createSparseTensorCodegenPass()
std::unique_ptr< Pass > createSparseGPUCodegenPass()
std::unique_ptr< Pass > createSparseSpaceCollapsePass()
std::unique_ptr< Pass > createLoopInvariantCodeMotionPass()
Creates a loop invariant code motion pass that hoists loop invariant instructions out of the loop.
bufferization::OneShotBufferizationOptions getBufferizationOptionsForSparsification(bool analysisOnly)
std::unique_ptr< Pass > createSparseReinterpretMapPass()
std::unique_ptr< Pass > createSparseTensorConversionPass()
std::unique_ptr< Pass > createSparseBufferRewritePass()
std::unique_ptr< Pass > createSparsificationAndBufferizationPass()
SparseParallelizationStrategy
Defines a parallelization strategy.
SparseEmitStrategy
Defines a scope for reinterpret map pass.
std::unique_ptr< Pass > createPreSparsificationRewritePass()
std::unique_ptr< Pass > createLowerForeachToSCFPass()
std::unique_ptr< Pass > createLowerSparseIterationToSCFPass()
std::unique_ptr< Pass > createStageSparseOperationsPass()
std::unique_ptr< Pass > createSparsificationPass()
Options for the Sparsification pass.
SparseEmitStrategy sparseEmitStrategy
SparseParallelizationStrategy parallelizationStrategy
Options for BufferizableOpInterface-based bufferization.
bool testAnalysisOnly
If set to true, does not modify the IR apart from adding attributes (for checking the results of the ...
OpFilter opFilter
A filter that specifies which ops should be bufferized and which ops should be ignored.
Options for analysis-enabled bufferization.