[Mlir-commits] [mlir] 4cc9af2 - [mlir][bufferization] Fix a typo in to_tensor op's summary field (#149082)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Jul 16 05:37:16 PDT 2025


Author: Chaitanya Koparkar
Date: 2025-07-16T14:37:12+02:00
New Revision: 4cc9af219fbeece77e0d874d9eb4b479b6e475d1

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

LOG: [mlir][bufferization] Fix a typo in to_tensor op's summary field (#149082)

Fixes #149081

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td b/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td
index f175b15c8770f..271b42025e0af 100644
--- a/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td
+++ b/mlir/include/mlir/Dialect/Bufferization/IR/BufferizationOps.td
@@ -401,7 +401,7 @@ def Bufferization_ToTensorOp : Bufferization_Op<"to_tensor", [
     SameOperandsAndResultElementType,
     Bufferization_TensorAndBufferMatch<"result", "buffer">
   ]> {
-  let summary = "create a buffer-like type from a tensor-like type";
+  let summary = "create a tensor-like type from a buffer-like type";
   let description = [{
     An operation that creates a tensor from a buffer. The result value is a
     tensor-like type that must match the corresponding buffer-like operand as


        


More information about the Mlir-commits mailing list