MLIR  20.0.0git
SparseTensorPipelines.cpp
Go to the documentation of this file.
1 //===- SparseTensorPipelines.cpp - Pipelines for sparse tensor code -------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
10 
14 #include "mlir/Conversion/Passes.h"
27 #include "mlir/Pass/PassManager.h"
28 #include "mlir/Transforms/Passes.h"
29 
30 //===----------------------------------------------------------------------===//
31 // Pipeline implementation.
32 //===----------------------------------------------------------------------===//
33 
35  const SparsifierOptions &options) {
36  // Rewrite named linalg ops into generic ops and apply fusion.
37  pm.addNestedPass<func::FuncOp>(createLinalgGeneralizeNamedOpsPass());
38  pm.addNestedPass<func::FuncOp>(createLinalgElementwiseOpFusionPass());
39 
40  // Sparsification and bufferization mini-pipeline.
43  options.testBufferizationAnalysisOnly),
44  options.sparsificationOptions(), options.createSparseDeallocs,
45  options.enableRuntimeLibrary, options.enableBufferInitialization,
46  options.vectorLength,
47  /*enableVLAVectorization=*/options.armSVE,
48  /*enableSIMDIndex32=*/options.force32BitVectorIndices,
49  options.enableGPULibgen,
50  options.sparsificationOptions().sparseEmitStrategy,
51  options.sparsificationOptions().parallelizationStrategy));
52 
53  // Bail-early for test setup.
54  if (options.testBufferizationAnalysisOnly)
55  return;
56 
57  // Storage specifier lowering and bufferization wrap-up.
59  pm.addNestedPass<func::FuncOp>(createCanonicalizerPass());
60 
61  // GPU code generation.
62  const bool gpuCodegen = options.gpuTriple.hasValue();
63  if (gpuCodegen) {
65  pm.addNestedPass<gpu::GPUModuleOp>(createStripDebugInfoPass());
66  pm.addNestedPass<gpu::GPUModuleOp>(createConvertSCFToCFPass());
67  pm.addNestedPass<gpu::GPUModuleOp>(createConvertGpuOpsToNVVMOps());
68  }
69 
70  // Progressively lower to LLVM. Note that the convert-vector-to-llvm
71  // pass is repeated on purpose.
72  // TODO(springerm): Add sparse support to the BufferDeallocation pass and add
73  // it to this pipeline.
74  pm.addNestedPass<func::FuncOp>(createConvertLinalgToLoopsPass());
75  pm.addNestedPass<func::FuncOp>(createConvertVectorToSCFPass());
77  pm.addNestedPass<func::FuncOp>(createConvertSCFToCFPass());
80  pm.addPass(
81  createConvertVectorToLLVMPass(options.convertVectorToLLVMOptions()));
82  pm.addPass(createFinalizeMemRefToLLVMConversionPass());
84  pm.addNestedPass<func::FuncOp>(arith::createArithExpandOpsPass());
85  pm.addNestedPass<func::FuncOp>(createConvertMathToLLVMPass());
88  pm.addPass(
89  createConvertVectorToLLVMPass(options.convertVectorToLLVMOptions()));
90  pm.addPass(createConvertComplexToLLVMPass());
91  pm.addPass(
92  createConvertVectorToLLVMPass(options.convertVectorToLLVMOptions()));
93  pm.addPass(createConvertFuncToLLVMPass());
94  pm.addPass(createArithToLLVMConversionPass());
95  pm.addPass(createConvertControlFlowToLLVMPass());
96 
97  // Finalize GPU code generation.
98  if (gpuCodegen) {
99  GpuNVVMAttachTargetOptions nvvmTargetOptions;
100  nvvmTargetOptions.triple = options.gpuTriple;
101  nvvmTargetOptions.chip = options.gpuChip;
102  nvvmTargetOptions.features = options.gpuFeatures;
103  pm.addPass(createGpuNVVMAttachTarget(nvvmTargetOptions));
104  pm.addPass(createGpuToLLVMConversionPass());
105  GpuModuleToBinaryPassOptions gpuModuleToBinaryPassOptions;
106  gpuModuleToBinaryPassOptions.compilationTarget = options.gpuFormat;
107  pm.addPass(createGpuModuleToBinaryPass(gpuModuleToBinaryPassOptions));
108  }
109 
110  // Ensure all casts are realized.
112 }
113 
114 //===----------------------------------------------------------------------===//
115 // Pipeline registration.
116 //===----------------------------------------------------------------------===//
117 
120  "sparsifier",
121  "The standard pipeline for taking sparsity-agnostic IR using the"
122  " sparse-tensor type, and lowering it to LLVM IR with concrete"
123  " representations and algorithms for sparse tensors.",
125 }
static llvm::ManagedStatic< PassManagerOptions > options
This class represents a pass manager that runs passes on either a specific operation type,...
Definition: PassManager.h:47
void addPass(std::unique_ptr< Pass > pass)
Add the given pass to this pass manager.
Definition: Pass.cpp:363
void addNestedPass(std::unique_ptr< Pass > pass)
Add the given pass to a nested pass manager for the given operation kind OpT.
Definition: PassManager.h:116
std::unique_ptr< Pass > createExpandStridedMetadataPass()
Creates an operation pass to expand some memref operation into easier to reason about operations.
std::unique_ptr< Pass > createExpandReallocPass(bool emitDeallocs=true)
Creates an operation pass to expand memref.realloc operations into their components.
void buildSparsifier(OpPassManager &pm, const SparsifierOptions &options)
Adds the "sparsifier" pipeline to the OpPassManager.
void registerSparseTensorPipelines()
Registers all pipelines for the sparse_tensor dialect.
std::unique_ptr< OperationPass< ModuleOp > > createConvertComplexToLibmPass()
Create a pass to convert Complex operations to libm calls.
std::unique_ptr< Pass > createSparseGPUCodegenPass()
bufferization::OneShotBufferizationOptions getBufferizationOptionsForSparsification(bool analysisOnly)
std::unique_ptr< Pass > createStripDebugInfoPass()
Creates a pass to strip debug information from a function.
std::unique_ptr< Pass > createSparsificationAndBufferizationPass()
std::unique_ptr< Pass > createConvertSCFToCFPass()
Creates a pass to convert SCF operations to CFG branch-based operation in the ControlFlow dialect.
std::unique_ptr< OperationPass< ModuleOp > > createConvertMathToLibmPass()
Create a pass to convert Math operations to libm calls.
Definition: MathToLibm.cpp:221
std::unique_ptr< Pass > createStorageSpecifierToLLVMPass()
std::unique_ptr< Pass > createCanonicalizerPass()
Creates an instance of the Canonicalizer pass, configured with default settings (which can be overrid...
std::unique_ptr< Pass > createReconcileUnrealizedCastsPass()
Creates a pass that eliminates noop unrealized_conversion_cast operation sequences.
std::unique_ptr< Pass > createConvertVectorToSCFPass(const VectorTransferToSCFOptions &options=VectorTransferToSCFOptions())
Create a pass to convert a subset of vector ops to SCF.
std::unique_ptr< Pass > createConvertComplexToStandardPass()
Create a pass to convert Complex operations to the Standard dialect.
std::unique_ptr< Pass > createLowerAffinePass()
Lowers affine control flow operations (ForStmt, IfStmt and AffineApplyOp) to equivalent lower-level c...
PassPipelineRegistration provides a global initializer that registers a Pass pipeline builder routine...
Definition: PassRegistry.h:177
Options for the "sparsifier" pipeline.
Definition: Passes.h:30