@@ -66,11 +66,6 @@ def ConvertAffineToStandard : Pass<"lower-affine"> {
66
66
`affine.apply`.
67
67
}];
68
68
let constructor = "mlir::createLowerAffinePass()";
69
- let dependentDialects = [
70
- "scf::SCFDialect",
71
- "StandardOpsDialect",
72
- "vector::VectorDialect"
73
- ];
74
69
}
75
70
76
71
//===----------------------------------------------------------------------===//
@@ -81,7 +76,6 @@ def ConvertAVX512ToLLVM : Pass<"convert-avx512-to-llvm", "ModuleOp"> {
81
76
let summary = "Convert the operations from the avx512 dialect into the LLVM "
82
77
"dialect";
83
78
let constructor = "mlir::createConvertAVX512ToLLVMPass()";
84
- let dependentDialects = ["LLVM::LLVMDialect", "LLVM::LLVMAVX512Dialect"];
85
79
}
86
80
87
81
//===----------------------------------------------------------------------===//
@@ -104,7 +98,6 @@ def GpuToLLVMConversionPass : Pass<"gpu-to-llvm", "ModuleOp"> {
104
98
def ConvertGpuOpsToNVVMOps : Pass<"convert-gpu-to-nvvm", "gpu::GPUModuleOp"> {
105
99
let summary = "Generate NVVM operations for gpu operations";
106
100
let constructor = "mlir::createLowerGpuOpsToNVVMOpsPass()";
107
- let dependentDialects = ["NVVM::NVVMDialect"];
108
101
let options = [
109
102
Option<"indexBitwidth", "index-bitwidth", "unsigned",
110
103
/*default=kDeriveIndexBitwidthFromDataLayout*/"0",
@@ -119,7 +112,6 @@ def ConvertGpuOpsToNVVMOps : Pass<"convert-gpu-to-nvvm", "gpu::GPUModuleOp"> {
119
112
def ConvertGpuOpsToROCDLOps : Pass<"convert-gpu-to-rocdl", "gpu::GPUModuleOp"> {
120
113
let summary = "Generate ROCDL operations for gpu operations";
121
114
let constructor = "mlir::createLowerGpuOpsToROCDLOpsPass()";
122
- let dependentDialects = ["ROCDL::ROCDLDialect"];
123
115
let options = [
124
116
Option<"indexBitwidth", "index-bitwidth", "unsigned",
125
117
/*default=kDeriveIndexBitwidthFromDataLayout*/"0",
@@ -134,7 +126,6 @@ def ConvertGpuOpsToROCDLOps : Pass<"convert-gpu-to-rocdl", "gpu::GPUModuleOp"> {
134
126
def ConvertGPUToSPIRV : Pass<"convert-gpu-to-spirv", "ModuleOp"> {
135
127
let summary = "Convert GPU dialect to SPIR-V dialect";
136
128
let constructor = "mlir::createConvertGPUToSPIRVPass()";
137
- let dependentDialects = ["spirv::SPIRVDialect"];
138
129
}
139
130
140
131
//===----------------------------------------------------------------------===//
@@ -145,15 +136,13 @@ def ConvertGpuLaunchFuncToVulkanLaunchFunc
145
136
: Pass<"convert-gpu-launch-to-vulkan-launch", "ModuleOp"> {
146
137
let summary = "Convert gpu.launch_func to vulkanLaunch external call";
147
138
let constructor = "mlir::createConvertGpuLaunchFuncToVulkanLaunchFuncPass()";
148
- let dependentDialects = ["spirv::SPIRVDialect"];
149
139
}
150
140
151
141
def ConvertVulkanLaunchFuncToVulkanCalls
152
142
: Pass<"launch-func-to-vulkan", "ModuleOp"> {
153
143
let summary = "Convert vulkanLaunch external call to Vulkan runtime external "
154
144
"calls";
155
145
let constructor = "mlir::createConvertVulkanLaunchFuncToVulkanCallsPass()";
156
- let dependentDialects = ["LLVM::LLVMDialect"];
157
146
}
158
147
159
148
//===----------------------------------------------------------------------===//
@@ -164,7 +153,6 @@ def ConvertLinalgToLLVM : Pass<"convert-linalg-to-llvm", "ModuleOp"> {
164
153
let summary = "Convert the operations from the linalg dialect into the LLVM "
165
154
"dialect";
166
155
let constructor = "mlir::createConvertLinalgToLLVMPass()";
167
- let dependentDialects = ["scf::SCFDialect", "LLVM::LLVMDialect"];
168
156
}
169
157
170
158
//===----------------------------------------------------------------------===//
@@ -175,7 +163,6 @@ def ConvertLinalgToStandard : Pass<"convert-linalg-to-std", "ModuleOp"> {
175
163
let summary = "Convert the operations from the linalg dialect into the "
176
164
"Standard dialect";
177
165
let constructor = "mlir::createConvertLinalgToStandardPass()";
178
- let dependentDialects = ["StandardOpsDialect"];
179
166
}
180
167
181
168
//===----------------------------------------------------------------------===//
@@ -185,7 +172,6 @@ def ConvertLinalgToStandard : Pass<"convert-linalg-to-std", "ModuleOp"> {
185
172
def ConvertLinalgToSPIRV : Pass<"convert-linalg-to-spirv", "ModuleOp"> {
186
173
let summary = "Convert Linalg ops to SPIR-V ops";
187
174
let constructor = "mlir::createLinalgToSPIRVPass()";
188
- let dependentDialects = ["spirv::SPIRVDialect"];
189
175
}
190
176
191
177
//===----------------------------------------------------------------------===//
@@ -196,7 +182,6 @@ def SCFToStandard : Pass<"convert-scf-to-std"> {
196
182
let summary = "Convert SCF dialect to Standard dialect, replacing structured"
197
183
" control flow with a CFG";
198
184
let constructor = "mlir::createLowerToCFGPass()";
199
- let dependentDialects = ["StandardOpsDialect"];
200
185
}
201
186
202
187
//===----------------------------------------------------------------------===//
@@ -206,7 +191,6 @@ def SCFToStandard : Pass<"convert-scf-to-std"> {
206
191
def ConvertAffineForToGPU : FunctionPass<"convert-affine-for-to-gpu"> {
207
192
let summary = "Convert top-level AffineFor Ops to GPU kernels";
208
193
let constructor = "mlir::createAffineForToGPUPass()";
209
- let dependentDialects = ["gpu::GPUDialect"];
210
194
let options = [
211
195
Option<"numBlockDims", "gpu-block-dims", "unsigned", /*default=*/"1u",
212
196
"Number of GPU block dimensions for mapping">,
@@ -218,7 +202,6 @@ def ConvertAffineForToGPU : FunctionPass<"convert-affine-for-to-gpu"> {
218
202
def ConvertParallelLoopToGpu : Pass<"convert-parallel-loops-to-gpu"> {
219
203
let summary = "Convert mapped scf.parallel ops to gpu launch operations";
220
204
let constructor = "mlir::createParallelLoopToGpuPass()";
221
- let dependentDialects = ["AffineDialect", "gpu::GPUDialect"];
222
205
}
223
206
224
207
//===----------------------------------------------------------------------===//
@@ -229,7 +212,6 @@ def ConvertShapeToStandard : Pass<"convert-shape-to-std", "ModuleOp"> {
229
212
let summary = "Convert operations from the shape dialect into the standard "
230
213
"dialect";
231
214
let constructor = "mlir::createConvertShapeToStandardPass()";
232
- let dependentDialects = ["StandardOpsDialect"];
233
215
}
234
216
235
217
//===----------------------------------------------------------------------===//
@@ -239,7 +221,6 @@ def ConvertShapeToStandard : Pass<"convert-shape-to-std", "ModuleOp"> {
239
221
def ConvertShapeToSCF : FunctionPass<"convert-shape-to-scf"> {
240
222
let summary = "Convert operations from the shape dialect to the SCF dialect";
241
223
let constructor = "mlir::createConvertShapeToSCFPass()";
242
- let dependentDialects = ["scf::SCFDialect"];
243
224
}
244
225
245
226
//===----------------------------------------------------------------------===//
@@ -249,7 +230,6 @@ def ConvertShapeToSCF : FunctionPass<"convert-shape-to-scf"> {
249
230
def ConvertSPIRVToLLVM : Pass<"convert-spirv-to-llvm", "ModuleOp"> {
250
231
let summary = "Convert SPIR-V dialect to LLVM dialect";
251
232
let constructor = "mlir::createConvertSPIRVToLLVMPass()";
252
- let dependentDialects = ["LLVM::LLVMDialect"];
253
233
}
254
234
255
235
//===----------------------------------------------------------------------===//
@@ -284,7 +264,6 @@ def ConvertStandardToLLVM : Pass<"convert-std-to-llvm", "ModuleOp"> {
284
264
LLVM IR types.
285
265
}];
286
266
let constructor = "mlir::createLowerToLLVMPass()";
287
- let dependentDialects = ["LLVM::LLVMDialect"];
288
267
let options = [
289
268
Option<"useAlignedAlloc", "use-aligned-alloc", "bool", /*default=*/"false",
290
269
"Use aligned_alloc in place of malloc for heap allocations">,
@@ -312,13 +291,11 @@ def ConvertStandardToLLVM : Pass<"convert-std-to-llvm", "ModuleOp"> {
312
291
def LegalizeStandardForSPIRV : Pass<"legalize-std-for-spirv"> {
313
292
let summary = "Legalize standard ops for SPIR-V lowering";
314
293
let constructor = "mlir::createLegalizeStdOpsForSPIRVLoweringPass()";
315
- let dependentDialects = ["spirv::SPIRVDialect"];
316
294
}
317
295
318
296
def ConvertStandardToSPIRV : Pass<"convert-std-to-spirv", "ModuleOp"> {
319
297
let summary = "Convert Standard Ops to SPIR-V dialect";
320
298
let constructor = "mlir::createConvertStandardToSPIRVPass()";
321
- let dependentDialects = ["spirv::SPIRVDialect"];
322
299
}
323
300
324
301
//===----------------------------------------------------------------------===//
@@ -329,7 +306,6 @@ def ConvertVectorToSCF : FunctionPass<"convert-vector-to-scf"> {
329
306
let summary = "Lower the operations from the vector dialect into the SCF "
330
307
"dialect";
331
308
let constructor = "mlir::createConvertVectorToSCFPass()";
332
- let dependentDialects = ["AffineDialect", "scf::SCFDialect"];
333
309
let options = [
334
310
Option<"fullUnroll", "full-unroll", "bool", /*default=*/"false",
335
311
"Perform full unrolling when converting vector transfers to SCF">,
@@ -344,7 +320,6 @@ def ConvertVectorToLLVM : Pass<"convert-vector-to-llvm", "ModuleOp"> {
344
320
let summary = "Lower the operations from the vector dialect into the LLVM "
345
321
"dialect";
346
322
let constructor = "mlir::createConvertVectorToLLVMPass()";
347
- let dependentDialects = ["LLVM::LLVMDialect"];
348
323
let options = [
349
324
Option<"reassociateFPReductions", "reassociate-fp-reductions",
350
325
"bool", /*default=*/"false",
@@ -360,7 +335,6 @@ def ConvertVectorToROCDL : Pass<"convert-vector-to-rocdl", "ModuleOp"> {
360
335
let summary = "Lower the operations from the vector dialect into the ROCDL "
361
336
"dialect";
362
337
let constructor = "mlir::createConvertVectorToROCDLPass()";
363
- let dependentDialects = ["ROCDL::ROCDLDialect"];
364
338
}
365
339
366
340
#endif // MLIR_CONVERSION_PASSES
0 commit comments