[Mlir-commits] [mlir] [mlir][transform] Fix new interpreter and library preloading passes. (PR #69190)
Oleksandr Alex Zinenko
llvmlistbot at llvm.org
Mon Oct 16 15:38:40 PDT 2023
================
@@ -51,8 +51,9 @@ def PreloadLibraryPass : Pass<"transform-preload-library"> {
Warning: Only a single such pass should exist for a given MLIR context.
This is a temporary solution until a resource-based solution is available.
- TODO: investigate using a resource blob if some ownership mode allows it.
}];
+ // TODO: investigate using a resource blob if some ownership mode allows it.
+ let dependentDialects = ["transform::TransformDialect"];
----------------
ftynse wrote:
Nit: use fully-qualified names in .td, e.g., `::mlir::transform::TransformDialect`.
https://github.com/llvm/llvm-project/pull/69190
More information about the Mlir-commits
mailing list