[Mlir-commits] [mlir] [mlir][nvgpu] Move dependent dialect from C++ to TableGen for nvgpu-to-nvvm pass (NFC) (PR #155801)
Guray Ozen
llvmlistbot at llvm.org
Thu Aug 28 05:12:26 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"
----------------
grypp wrote:
Alternatively, we could've generate directly llvm instead of memref.
https://github.com/llvm/llvm-project/pull/155801
More information about the Mlir-commits
mailing list