[Mlir-commits] [mlir] [mlir][scf] Fix typo of square brackets (PR #128455)
Longsheng Mou
llvmlistbot at llvm.org
Sun Feb 23 19:50:37 PST 2025
https://github.com/CoTinker created https://github.com/llvm/llvm-project/pull/128455
None
>From 0ae6d3e1f257c741e7563cb9446d89dd64395fa5 Mon Sep 17 00:00:00 2001
From: Longsheng Mou <longshengmou at gmail.com>
Date: Mon, 24 Feb 2025 11:49:47 +0800
Subject: [PATCH] [mlir][scf] Fix typo of square brackets
---
mlir/include/mlir/Dialect/SCF/Transforms/Transforms.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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