[Mlir-commits] [mlir] [mlir][linalg] Add pass to transpose A matrix of matmul op (PR #89075)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Apr 17 07:18:40 PDT 2024
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 06eedffe0d2782922e63cc25cb927f4acdaf7b30 3bd53f154a2fcab7f952d190923b41430830907c -- mlir/lib/Dialect/Linalg/Transforms/MatmulToMatmulTransposeA.cpp mlir/include/mlir/Dialect/Linalg/Transforms/Transforms.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/mlir/lib/Dialect/Linalg/Transforms/MatmulToMatmulTransposeA.cpp b/mlir/lib/Dialect/Linalg/Transforms/MatmulToMatmulTransposeA.cpp
index 45551cd916..73a812ce45 100644
--- a/mlir/lib/Dialect/Linalg/Transforms/MatmulToMatmulTransposeA.cpp
+++ b/mlir/lib/Dialect/Linalg/Transforms/MatmulToMatmulTransposeA.cpp
@@ -42,8 +42,8 @@ struct MatmulToMatmulTransposeA final
Value a = matmulOp.getInputs()[0];
auto aType = cast<ShapedType>(a.getType());
if (aType.getRank() != 2)
- return rewriter.notifyMatchFailure(
- matmulOp, "only 2-D matmul ops are supported");
+ return rewriter.notifyMatchFailure(matmulOp,
+ "only 2-D matmul ops are supported");
Location loc = matmulOp.getLoc();
``````````
</details>
https://github.com/llvm/llvm-project/pull/89075
More information about the Mlir-commits
mailing list