[Mlir-commits] [mlir] b9cf684 - [mlir][scf] Fix typo of square brackets(NFC) (#128455)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Feb 24 22:13:30 PST 2025


Author: Longsheng Mou
Date: 2025-02-25T14:13:26+08:00
New Revision: b9cf684d7c39a9c36c562b67e6e53882f645fe74

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

LOG: [mlir][scf] Fix typo of square brackets(NFC) (#128455)

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/SCF/Transforms/Transforms.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/SCF/Transforms/Transforms.h b/mlir/include/mlir/Dialect/SCF/Transforms/Transforms.h
index ea2f457c4e889..63163b77f7f16 100644
--- a/mlir/include/mlir/Dialect/SCF/Transforms/Transforms.h
+++ b/mlir/include/mlir/Dialect/SCF/Transforms/Transforms.h
@@ -136,7 +136,7 @@ struct PipeliningOption {
   /// The callback passes the operation created along with the part of the
   /// pipeline and the iteration index. The iteration index is always 0 for the
   /// kernel. For the prologue and epilogue, it corresponds to the iteration
-  /// peeled out of the loop in the range [0, maxStage[.
+  /// peeled out of the loop in the range [0, maxStage].
   using AnnotationlFnType =
       std::function<void(Operation *, PipelinerPart, unsigned)>;
   AnnotationlFnType annotateFn = nullptr;


        


More information about the Mlir-commits mailing list