[Mlir-commits] [mlir] [mlir][gpu] Add field to mark asynchronous side effects (PR #72013)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sat Nov 11 01:07:32 PST 2023


================
@@ -183,6 +184,9 @@ class SideEffect<EffectOpInterfaceBase interface, string effectName,
 
   // Does this side effect act on every single value of resource.
   bit effectOnFullRegion = range.Value;
+
+  // Does this side effect potentially occur after op exit
+  bit asynchronous = isAsync;
----------------
spaceotter wrote:

That's fair. I will mark this as a draft until I can work out the proposal with my teammates.

https://github.com/llvm/llvm-project/pull/72013


More information about the Mlir-commits mailing list