[Mlir-commits] [mlir] [mlir][Tosa] Fix typo in avg_pool2d summary (PR #116538)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Nov 17 02:57:00 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-tosa
Author: None (sondre-teigen)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/116538.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td (+1-1)
``````````diff
diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
index db6c4732a15837..9f57efff5d1fd2 100644
--- a/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
+++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td
@@ -63,7 +63,7 @@ def Tosa_AccType : AnyTypeOf<[I<32>, SI<32>, F16, F32]>;
// Operator: avg_pool2d
//===----------------------------------------------------------------------===//
def Tosa_AvgPool2dOp : Tosa_InferShapedTypeOp<"avg_pool2d"> {
- let summary = "Performs max pooling on the input.";
+ let summary = "Performs average pooling on the input.";
let description = [{
This performs an average pooling over the given input tensor. A sliding
``````````
</details>
https://github.com/llvm/llvm-project/pull/116538
More information about the Mlir-commits
mailing list