From aea4929dbb63818da446ac2e562078469dd090c9 Mon Sep 17 00:00:00 2001 From: Nicolas Vasilache Date: Wed, 2 Feb 2022 05:01:42 -0500 Subject: [PATCH] [mlir][async] Add AutomaticAllocationScope to async::ExecuteOp Differential Revision: https://reviews.llvm.org/D118761 --- mlir/include/mlir/Dialect/Async/IR/AsyncOps.td | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td b/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td index 5a7ec4e..11a2714 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, - AttrSizedOperandSegments]> { + AttrSizedOperandSegments, + AutomaticAllocationScope]> { let summary = "Asynchronous execute operation"; let description = [{ The `body` region attached to the `async.execute` operation semantically -- 2.7.4