From 0ae6d3e1f257c741e7563cb9446d89dd64395fa5 Mon Sep 17 00:00:00 2001 From: Longsheng Mou 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; AnnotationlFnType annotateFn = nullptr;