[Mlir-commits] [mlir] [MLIR][Tensor] Fix Chained tensor.cast canonicalization pattern (PR #113551)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Oct 24 04:53:14 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 cd0373e029fdca7d6d99677b805e728016574a1f cb008443422319bd55ad6e20e1e025bea687759b --extensions cpp -- mlir/lib/Dialect/Tensor/IR/TensorOps.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp b/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp
index 13af1497d3..d1b73ff2db 100644
--- a/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp
+++ b/mlir/lib/Dialect/Tensor/IR/TensorOps.cpp
@@ -433,8 +433,7 @@ struct ChainedTensorCast : public OpRewritePattern<CastOp> {
// We can remove the intermediate cast if joining all three produces the
// same result as just joining the source and result shapes.
- auto firstJoin =
- joinShapes(sourceType, intermediateType);
+ auto firstJoin = joinShapes(sourceType, intermediateType);
// The join might not exist if the cast sequence would fail at runtime.
if (!firstJoin)
``````````
</details>
https://github.com/llvm/llvm-project/pull/113551
More information about the Mlir-commits
mailing list