MLIR  21.0.0git
InitAllDialects.h
Go to the documentation of this file.
1 //===- InitAllDialects.h - MLIR Dialects Registration -----------*- C++ -*-===//
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 //
9 // This file defines a helper to trigger the registration of all dialects and
10 // passes to the system.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef MLIR_INITALLDIALECTS_H_
15 #define MLIR_INITALLDIALECTS_H_
16 
37 #include "mlir/Dialect/DLTI/DLTI.h"
100 #include "mlir/IR/Dialect.h"
105 
106 namespace mlir {
107 
108 /// Add all the MLIR dialects to the provided registry.
109 inline void registerAllDialects(DialectRegistry &registry) {
110  // clang-format off
111  registry.insert<acc::OpenACCDialect,
112  affine::AffineDialect,
113  amdgpu::AMDGPUDialect,
114  amx::AMXDialect,
115  arith::ArithDialect,
116  arm_neon::ArmNeonDialect,
117  arm_sme::ArmSMEDialect,
118  arm_sve::ArmSVEDialect,
119  async::AsyncDialect,
120  bufferization::BufferizationDialect,
121  cf::ControlFlowDialect,
122  complex::ComplexDialect,
123  DLTIDialect,
124  emitc::EmitCDialect,
125  func::FuncDialect,
126  gpu::GPUDialect,
127  index::IndexDialect,
128  irdl::IRDLDialect,
129  linalg::LinalgDialect,
130  LLVM::LLVMDialect,
131  math::MathDialect,
132  memref::MemRefDialect,
133  mesh::MeshDialect,
134  ml_program::MLProgramDialect,
135  mpi::MPIDialect,
136  nvgpu::NVGPUDialect,
137  NVVM::NVVMDialect,
138  omp::OpenMPDialect,
139  pdl::PDLDialect,
140  pdl_interp::PDLInterpDialect,
141  polynomial::PolynomialDialect,
142  ptr::PtrDialect,
143  quant::QuantDialect,
144  ROCDL::ROCDLDialect,
145  scf::SCFDialect,
146  shape::ShapeDialect,
147  smt::SMTDialect,
148  sparse_tensor::SparseTensorDialect,
149  spirv::SPIRVDialect,
150  tensor::TensorDialect,
151  tosa::TosaDialect,
152  transform::TransformDialect,
153  ub::UBDialect,
154  vector::VectorDialect,
155  x86vector::X86VectorDialect,
156  xegpu::XeGPUDialect>();
157  // clang-format on
158 
159  // Register all external models.
167  registry);
201 }
202 
203 /// Append all the MLIR dialects to the registry contained in the given context.
204 inline void registerAllDialects(MLIRContext &context) {
205  DialectRegistry registry;
206  registerAllDialects(registry);
207  context.appendDialectRegistry(registry);
208 }
209 
210 } // namespace mlir
211 
212 #endif // MLIR_INITALLDIALECTS_H_
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
MLIRContext is the top-level object for a collection of MLIR operations.
Definition: MLIRContext.h:60
void appendDialectRegistry(const DialectRegistry &registry)
Append the contents of the given dialect registry to the registry associated with this context.
void registerInlinerInterface(DialectRegistry &registry)
Register the LLVMInlinerInterface implementation of DialectInlinerInterface with the LLVM dialect.
void registerNVVMTargetInterfaceExternalModels(DialectRegistry &registry)
Registers the TargetAttrInterface for the #nvvm.target attribute in the given registry.
Definition: Target.cpp:72
void registerInlinerInterface(DialectRegistry &registry)
Register the NVVMInlinerInterface implementation of DialectInlinerInterface with the NVVM dialect.
void registerROCDLTargetInterfaceExternalModels(DialectRegistry &registry)
Registers the TargetAttrInterface for the #rocdl.target attribute in the given registry.
Definition: Target.cpp:69
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferViewFlowOpInterfaceExternalModels(DialectRegistry &registry)
void registerShardingInterfaceExternalModels(DialectRegistry &registry)
void registerBufferDeallocationOpInterfaceExternalModels(DialectRegistry &registry)
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerCastOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferDeallocationOpInterfaceExternalModels(DialectRegistry &registry)
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferDeallocationOpInterfaceExternalModels(DialectRegistry &registry)
void registerAllDialectInterfaceImplementations(DialectRegistry &registry)
void registerRuntimeVerifiableOpInterfaceExternalModels(DialectRegistry &registry)
void registerMemorySlotExternalModels(DialectRegistry &registry)
void registerAllocationOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferViewFlowOpInterfaceExternalModels(DialectRegistry &registry)
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
void registerRuntimeVerifiableOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferDeallocationOpInterfaceExternalModels(DialectRegistry &registry)
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerSPIRVTargetInterfaceExternalModels(DialectRegistry &registry)
Registers the TargetAttrInterface for the #spirv.target_env attribute in the given registry.
Definition: Target.cpp:44
void registerInferTypeOpInterfaceExternalModels(mlir::DialectRegistry &registry)
Registers external models for Infer Type interfaces for tensor ops.
void registerSubsetOpInterfaceExternalModels(DialectRegistry &registry)
void registerFindPayloadReplacementOpInterfaceExternalModels(DialectRegistry &registry)
void registerTilingInterfaceExternalModels(mlir::DialectRegistry &registry)
Registers external models for Tiling interface for tensor ops.
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
void registerShardingInterfaceExternalModels(DialectRegistry &registry)
void registerSubsetOpInterfaceExternalModels(DialectRegistry &registry)
void registerBufferizableOpInterfaceExternalModels(DialectRegistry &registry)
void registerValueBoundsOpInterfaceExternalModels(DialectRegistry &registry)
Include the generated interface declarations.
void registerAllDialects(DialectRegistry &registry)
Add all the MLIR dialects to the provided registry.