[Mlir-commits] [mlir] 48b8eda - [mlir][bufferize][NFC] Remove old references to Comprehensive Bufferize

Matthias Springer llvmlistbot at llvm.org
Sat Apr 23 02:04:00 PDT 2022


Author: Matthias Springer
Date: 2022-04-23T18:01:05+09:00
New Revision: 48b8edac1c1825b533bbe234e659ed488a20c67a

URL: https://github.com/llvm/llvm-project/commit/48b8edac1c1825b533bbe234e659ed488a20c67a
DIFF: https://github.com/llvm/llvm-project/commit/48b8edac1c1825b533bbe234e659ed488a20c67a.diff

LOG: [mlir][bufferize][NFC] Remove old references to Comprehensive Bufferize

Differential Revision: https://reviews.llvm.org/D124324

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/Bufferization/IR/BufferizableOpInterface.td b/mlir/include/mlir/Dialect/Bufferization/IR/BufferizableOpInterface.td
index f1e9bcf390b0a..620fff5506495 100644
--- a/mlir/include/mlir/Dialect/Bufferization/IR/BufferizableOpInterface.td
+++ b/mlir/include/mlir/Dialect/Bufferization/IR/BufferizableOpInterface.td
@@ -13,8 +13,8 @@ include "mlir/IR/OpBase.td"
 
 def BufferizableOpInterface : OpInterface<"BufferizableOpInterface"> {
   let description = [{
-    An op interface for Comprehensive Bufferization. Ops that implement this
-    interface can be bufferized using Comprehensive Bufferization.
+    An op interface for One-Shot Bufferize. Ops that implement this interface
+    interface can be analyzed and bufferized using One-Shot Bufferize.
   }];
   let cppNamespace = "::mlir::bufferization";
   let methods = [
@@ -26,9 +26,9 @@ def BufferizableOpInterface : OpInterface<"BufferizableOpInterface"> {
 
           Note: It is always safe to consider an OpOperand as a memory read,
           even if it does actually not read; however, this can introduce
-          unnecessary out-of-place bufferization decisions. The analysis of
-          Comprehensive Bufferize considers OpOperands of unknown ops (that do
-          not implement this interface) as reading OpOperands.
+          unnecessary out-of-place bufferization decisions. One-Shot Analysis
+          considers OpOperands of unknown ops (that do not implement this
+          interface) as reading OpOperands.
         }],
         /*retType=*/"bool",
         /*methodName=*/"bufferizesToMemoryRead",
@@ -55,9 +55,9 @@ def BufferizableOpInterface : OpInterface<"BufferizableOpInterface"> {
 
           Note: It is always safe to consider an OpOperand as a memory write,
           even if it does actually not write; however, this can introduce
-          unnecessary out-of-place bufferization decisions. The analysis of
-          Comprehensive Bufferize considers OpOperands of unknown ops (that do
-          not implement this interface) as writing OpOperands.
+          unnecessary out-of-place bufferization decisions. One-Shot Analysis
+          considers OpOperands of unknown ops (that do not implement this
+          interface) as writing OpOperands.
         }],
         /*retType=*/"bool",
         /*methodName=*/"bufferizesToMemoryWrite",


        


More information about the Mlir-commits mailing list