[Mlir-commits] [mlir] aea4929 - [mlir][async] Add AutomaticAllocationScope to async::ExecuteOp

Nicolas Vasilache llvmlistbot at llvm.org
Wed Feb 2 02:15:28 PST 2022


Author: Nicolas Vasilache
Date: 2022-02-02T05:15:23-05:00
New Revision: aea4929dbb63818da446ac2e562078469dd090c9

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

LOG: [mlir][async] Add AutomaticAllocationScope to async::ExecuteOp

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

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Async/IR/AsyncOps.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td b/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
index 5a7ec4eb8c503..11a27148bc5d8 100644
--- a/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
+++ b/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
@@ -31,7 +31,8 @@ def Async_ExecuteOp :
   Async_Op<"execute", [SingleBlockImplicitTerminator<"YieldOp">,
                        DeclareOpInterfaceMethods<RegionBranchOpInterface,
                                                  ["getSuccessorEntryOperands"]>,
-                       AttrSizedOperandSegments]> {
+                       AttrSizedOperandSegments,
+                       AutomaticAllocationScope]> {
   let summary = "Asynchronous execute operation";
   let description = [{
     The `body` region attached to the `async.execute` operation semantically


        


More information about the Mlir-commits mailing list