[Mlir-commits] [mlir] [mlir][nvgpu] Move dependent dialect from C++ to TableGen for nvgpu-to-nvvm pass (NFC) (PR #155801)
Mehdi Amini
llvmlistbot at llvm.org
Thu Aug 28 03:51:22 PDT 2025
================
@@ -970,7 +970,10 @@ def ConvertNVGPUToNVVMPass : Pass<"convert-nvgpu-to-nvvm"> {
}];
let dependentDialects = [
- "NVVM::NVVMDialect",
+ "arith::ArithDialect",
+ "LLVM::LLVMDialect",
+ "memref::MemRefDialect",
+ "NVVM::NVVMDialect"
----------------
joker-eph wrote:
The dependent dialects of a pass have nothing to do with the **input** of the pass but only with the **output** of the pass: the dialect listed here should be the ones that are not present in an input but present in the output of the pass.
https://github.com/llvm/llvm-project/pull/155801
More information about the Mlir-commits
mailing list