[Mlir-commits] [mlir] 5fdf4d5 - [mlir][Linalg] NFC - Add builder for MatchOp
Nicolas Vasilache
llvmlistbot at llvm.org
Tue Apr 18 05:01:36 PDT 2023
Author: Nicolas Vasilache
Date: 2023-04-18T05:00:53-07:00
New Revision: 5fdf4d53819e613f5c5be0ca0ec12444c17812d7
URL: https://github.com/llvm/llvm-project/commit/5fdf4d53819e613f5c5be0ca0ec12444c17812d7
DIFF: https://github.com/llvm/llvm-project/commit/5fdf4d53819e613f5c5be0ca0ec12444c17812d7.diff
LOG: [mlir][Linalg] NFC - Add builder for MatchOp
Added:
Modified:
mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
Removed:
################################################################################
diff --git a/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td b/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
index 56fd2e054197..cdeabb743551 100644
--- a/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
+++ b/mlir/include/mlir/Dialect/Linalg/TransformOps/LinalgTransformOps.td
@@ -387,7 +387,8 @@ def MatchOp : Op<Transform_Dialect, "structured.match",
let results = (outs TransformHandleTypeInterface:$results);
let builders = [
- OpBuilder<(ins "Value":$target, "ArrayRef<StringRef>":$opNames)>
+ OpBuilder<(ins "Value":$target, "ArrayRef<StringRef>":$opNames)>,
+ OpBuilder<(ins "TypeRange":$resultTypes, "Value":$target, "ArrayRef<StringRef>":$opNames)>
];
let assemblyFormat = [{
diff --git a/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp b/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
index 33de27265afb..3bd3dae4de33 100644
--- a/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
+++ b/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
@@ -208,7 +208,8 @@ transform::DecomposeOp::applyToOne(LinalgOp target,
/// Apply a tiling transformation to all payload ops and store both the
/// tiled operation as well as the created tile loops.
static LogicalResult applyTilingToAll(
- RewriterBase &rewriter, Operation *transformOp, ArrayRef<Operation *> payloadOps, unsigned numLoops,
+ RewriterBase &rewriter, Operation *transformOp,
+ ArrayRef<Operation *> payloadOps, unsigned numLoops,
transform::TransformResults &transformResults,
function_ref<FailureOr<scf::SCFTileAndFuseResult>(TilingInterface)>
applyFn) {
@@ -1027,6 +1028,15 @@ void transform::MatchOp::build(OpBuilder &builder, OperationState &result,
result.addTypes(pdl::OperationType::get(builder.getContext()));
}
+void transform::MatchOp::build(OpBuilder &builder, OperationState &result,
+ TypeRange resultTypes, Value target,
+ ArrayRef<StringRef> opNames) {
+ result.addOperands(target);
+ result.addAttribute(MatchOp::getOpsAttrName(result.name),
+ builder.getStrArrayAttr(opNames));
+ result.addTypes(resultTypes);
+}
+
DiagnosedSilenceableFailure
transform::MatchOp::apply(transform::TransformResults &results,
transform::TransformState &state) {
More information about the Mlir-commits
mailing list