Files
clang-p2996/mlir/lib/Dialect/Transform/DebugExtension/CMakeLists.txt
Oleksandr "Alex" Zinenko 2798b72ae7 [mlir] introduce debug transform dialect extension (#77595)
Introduce a new extension for simple print-debugging of the transform
dialect scripts. The initial version of this extension consists of two
ops that are printing the payload objects associated with transform
dialect values. Similar ops were already available in the test extenion
and several downstream projects, and were extensively used for testing.
2024-01-12 13:24:02 +01:00

12 lines
209 B
CMake

add_mlir_dialect_library(MLIRTransformDebugExtension
DebugExtension.cpp
DebugExtensionOps.cpp
DEPENDS
MLIRTransformDialectDebugExtensionOpsIncGen
LINK_LIBS PUBLIC
MLIRIR
MLIRTransformDialect
)