[Mlir-commits] [mlir] Add support of param type for transform.structured.tile_using_forall (PR #72097)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Nov 15 14:53:09 PST 2023


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 b25d36c3abae945788b881defc7eff4fdb46e3a2 d53f53cb6add1f66173cb2bdf18bb8200543f96c -- mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp b/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
index c52d4e813d..da23ea5e0d 100644
--- a/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
+++ b/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
@@ -145,7 +145,7 @@ static DiagnosedSilenceableFailure unpackSingleIndexResultPayloadOperations(
     ArrayRef<Attribute> params = state.getParams(packedHandle);
     if (params.size() != 1)
       return transformOp.emitDefiniteFailure()
-              << "requires exactly one parameter associated";
+             << "requires exactly one parameter associated";
     ArrayAttr paramsArray = dyn_cast<ArrayAttr>(params[0]);
     if (!paramsArray)
       return transformOp.emitDefiniteFailure() << "param array is null";

``````````

</details>


https://github.com/llvm/llvm-project/pull/72097


More information about the Mlir-commits mailing list