[Mlir-commits] [mlir] [MLIR] [NVVM] Update summary and description fields for Barrier Ops in NVVMOps.td (PR #156726)
Guray Ozen
llvmlistbot at llvm.org
Wed Sep 3 23:19:31 PDT 2025
================
@@ -556,6 +628,25 @@ def NVVM_MBarrierArriveSharedOp : NVVM_Op<"mbarrier.arrive.shared">,
def NVVM_MBarrierArriveNocompleteOp : NVVM_Op<"mbarrier.arrive.nocomplete">,
Results<(outs LLVM_Type:$res)>,
Arguments<(ins LLVM_AnyPointer:$addr, I32:$count)> {
+ let summary = "MBarrier Arrive No-Complete Operation";
+ let description = [{
+ The `nvvm.mbarrier.arrive.nocomplete` operation performs an arrive-on operation
+ on the mbarrier object with the guarantee that it will not cause the barrier to
+ complete its current phase. Uses the default `.release.cta` semantics.
+
+ This operation causes the executing thread to signal its arrival at the barrier
+ with a specified count, but ensures that the barrier phase will not complete as
+ a result of this operation. The operation returns an opaque 64-bit value that
----------------
grypp wrote:
same about 64-bit address in the doc
https://github.com/llvm/llvm-project/pull/156726
More information about the Mlir-commits
mailing list