[Mlir-commits] [mlir] [MLIR][NVVM] Add asynchronous store Op (PR #210931)
Srinivasa Ravi
llvmlistbot at llvm.org
Tue Aug 4 04:27:20 PDT 2026
================
@@ -69,4 +69,18 @@ def SaturationModeAttr : EnumAttr<NVVM_Dialect, SaturationMode, "sat_mode"> {
let assemblyFormat = "`<` $value `>`";
}
+def AsyncStoreScopeNone : I32EnumCase<"NONE", 0, "none">;
+def AsyncStoreScopeSys : I32EnumCase<"SYS", 1, "sys">;
+def AsyncStoreScopeGpu : I32EnumCase<"GPU", 2, "gpu">;
----------------
Wolfram70 wrote:
Removed the new enum to reuse `MemScopeKindAttr`, thanks!
https://github.com/llvm/llvm-project/pull/210931
More information about the Mlir-commits
mailing list