summaryrefslogtreecommitdiff
path: root/mlir/docs/Tutorials/transform/Ch0.md
AgeCommit message (Collapse)Author
2025-09-12Fix MLIR Transform Tutorial Doc (#155285)Brandon Kirincich
Fixes a small issue I noticed while reading through the tutorial.
2025-07-28[mlir][Vector] Remove `vector.extractelement` and `vector.insertelement` ops ↵Diego Caballero
(#149603) This PR removes `vector.extractelement` and `vector.insertelement` ops from the code base in favor of the `vector.extract` and `vector.insert` counterparts. See RFC: https://discourse.llvm.org/t/rfc-psa-remove-vector-extractelement-and-vector-insertelement-ops-in-favor-of-vector-extract-and-vector-insert-ops
2025-05-13[mlir][NFC] Fix the MLIR example format to conform to SSA form.yanming
2024-01-04[mlir][docs] Update TD tutorial - Ch0 (#76858)Andrzej Warzyński
Updates `generic` as `linalg.generic` (for consistency and to avoid ambiguity) and a few other fixes.
2023-05-30[mlir] add initial chapters of the transform dialect tutorialAlex Zinenko
The transform dialect has been around for a while and is sufficiently stable at this point. Add the first three chapters of the tutorial describing its usage and extension. Reviewed By: springerm Differential Revision: https://reviews.llvm.org/D151491