[all-commits] [llvm/llvm-project] e07c92: [mlir] Fix TileUsingForOp attr-dict printing/parsi...
Felix Schneider via All-commits
all-commits at lists.llvm.org
Wed Dec 6 11:08:15 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: e07c92a9c3e37c506e34196ccbafa20cfc064a2a
https://github.com/llvm/llvm-project/commit/e07c92a9c3e37c506e34196ccbafa20cfc064a2a
Author: Felix Schneider <fx.schn at gmail.com>
Date: 2023-12-06 (Wed, 06 Dec 2023)
Changed paths:
M mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
M mlir/test/Dialect/Linalg/transform-ops.mlir
M mlir/test/Dialect/Linalg/transform-patterns.mlir
Log Message:
-----------
[mlir] Fix TileUsingForOp attr-dict printing/parsing (#73261)
`TileUsingForOp` has an optional Attribute `interchange` which was given
in curly braces like this: `{interchange = [...]}`. The way this was
parsed meant that no `attr-dict` could be attached to the Op.
This patch adds printing / parsing of an `attr-dict` to the Op and
prints/parses the `interchange` Attribute separate from the
discardable Attributes.
More information about the All-commits
mailing list