Skip to content

Commit

Permalink
flush_local
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Hammond <[email protected]>
  • Loading branch information
jeffhammond committed Feb 1, 2024
1 parent effda8b commit b50be2a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/onesided.jl
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,18 @@ function Win_fence(win::Win; nostore=false, noput=false, noprecede=false, nosucc
Win_fence(assert, win)
end

"""
Win_flush_local(win::Win; rank)
Completes locally all outstanding RMA operations initiated by the calling process to the
target rank on the specified window.
# External links
$(_doc_external("MPI_Win_flush_local"))
"""
Win_flush_local(win::Win; rank) = Win_flush_local(rank, win)
Win_flush_local(rank::Integer, win::Win) = API.MPI_Win_flush_local(rank, win)

"""
Win_flush(win::Win; rank)
Expand Down

0 comments on commit b50be2a

Please sign in to comment.