[Mlir-commits] [mlir] 85c91af - [mlir][tensor] fix typo in pad tiling comment

llvmlistbot at llvm.org llvmlistbot at llvm.org
Thu Dec 12 09:52:47 PST 2024


Author: Nirvedh
Date: 2024-12-12T11:52:30-06:00
New Revision: 85c91afb85be52399e0fc7f082dd1c99932dffaa

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

LOG: [mlir][tensor] fix typo in pad tiling comment

Added: 
    

Modified: 
    mlir/lib/Dialect/Tensor/IR/TensorTilingInterfaceImpl.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Dialect/Tensor/IR/TensorTilingInterfaceImpl.cpp b/mlir/lib/Dialect/Tensor/IR/TensorTilingInterfaceImpl.cpp
index 6e63cf068bce57..ec8ea74362710d 100644
--- a/mlir/lib/Dialect/Tensor/IR/TensorTilingInterfaceImpl.cpp
+++ b/mlir/lib/Dialect/Tensor/IR/TensorTilingInterfaceImpl.cpp
@@ -825,7 +825,7 @@ FailureOr<TilingResult> tensor::bubbleUpPadSlice(OpBuilder &b,
     // Note that there are many ways to order this indexing math to compute
     // newLength, but we want to make sure that the final affine.min ops in the
     // sequence are bounding the index to as small a value as possible. If
-    // ValueBoundsOpInterface is used, this calcuation will get upper bounds
+    // ValueBoundsOpInterface is used, this calcualation will get upper bounds
     // from the affine.min ops, so we want to use the smallest known value to
     // set the bound at the end of the computation sequence. In this case, the
     // index will be upper bounded by length - newLow.


        


More information about the Mlir-commits mailing list