[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:56:13 PST 2024


https://github.com/sondre-teigen created https://github.com/llvm/llvm-project/pull/116538

None

>From 2d82f25fa9e2c56f72735b5dc1ed56a1c8a2365a Mon Sep 17 00:00:00 2001
From: sondre-teigen <119133807+sondre-teigen at users.noreply.github.com>
Date: Sun, 17 Nov 2024 11:50:26 +0100
Subject: [PATCH] Update TosaOps.td

---
 mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



More information about the Mlir-commits mailing list