[Mlir-commits] [mlir] 37feced - [mlir][Tosa] Fix typo in avg_pool2d summary (#116538)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Nov 18 02:14:01 PST 2024


Author: sondre-teigen
Date: 2024-11-18T10:13:58Z
New Revision: 37feced61eb576aa93e2ea2dea700246b67e3a62

URL: https://github.com/llvm/llvm-project/commit/37feced61eb576aa93e2ea2dea700246b67e3a62
DIFF: https://github.com/llvm/llvm-project/commit/37feced61eb576aa93e2ea2dea700246b67e3a62.diff

LOG: [mlir][Tosa] Fix typo in avg_pool2d summary (#116538)

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Tosa/IR/TosaOps.td

Removed: 
    


################################################################################
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