[llvm-branch-commits] [mlir] 2ff0385 - Update Bufferization.md
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Oct 25 20:44:51 PDT 2023
Author: Mehdi Amini
Date: 2023-10-25T20:44:48-07:00
New Revision: 2ff038576a0c505da1601d614d27110bc00624c9
URL: https://github.com/llvm/llvm-project/commit/2ff038576a0c505da1601d614d27110bc00624c9
DIFF: https://github.com/llvm/llvm-project/commit/2ff038576a0c505da1601d614d27110bc00624c9.diff
LOG: Update Bufferization.md
Added:
Modified:
mlir/docs/Bufferization.md
Removed:
################################################################################
diff --git a/mlir/docs/Bufferization.md b/mlir/docs/Bufferization.md
index 64b10d49bd11cbf..8329999162fb5aa 100644
--- a/mlir/docs/Bufferization.md
+++ b/mlir/docs/Bufferization.md
@@ -184,9 +184,7 @@ to a no-op (in the absence of RaW conflicts such as a subsequent read of `%s`).
RaW conflicts are detected with an analysis of SSA use-def chains (details
later). One-Shot Bufferize works best if there is a single SSA use-def chain,
-where the result of a tensor op is the
-operand of the next tensor
-ops, e.g.:
+where the result of a tensor op is the operand of the next tensor ops, e.g.:
```mlir
%0 = "my_dialect.some_op"(%t) : (tensor<?xf32>) -> (tensor<?xf32>)
More information about the llvm-branch-commits
mailing list