summaryrefslogtreecommitdiff
path: root/mlir/lib/Dialect/Transform/LoopExtension/LoopExtensionOps.cpp
AgeCommit message (Collapse)Author
2025-07-11[mlir] Remove unused includes (NFC) (#148119)Kazu Hirata
These are identified by misc-include-cleaner. I've filtered out those that break builds. Also, I'm staying away from llvm-config.h, config.h, and Compiler.h, which likely cause platform- or compiler-specific build failures.
2024-06-19[mlir][side effect] refactor(*): Include more precise side effects (#94213)donald chen
This patch adds more precise side effects to the current ops with memory effects, allowing us to determine which OpOperand/OpResult/BlockArgument the operation reads or writes, rather than just recording the reading and writing of values. This allows for convenient use of precise side effects to achieve analysis and optimization. Related discussions: https://discourse.llvm.org/t/rfc-add-operandindex-to-sideeffect-instance/79243
2023-11-05[mlir][transform] LISH: Add transform op (#70630)Matthias Springer
Add a transform op for loop-invariant subset hoisting. Delete the old transform op from the Linalg dialect.