win_flush Subroutine

private subroutine win_flush(this, rank)

Type Bound

win_t

Arguments

Type IntentOptional Attributes Name
class(win_t), intent(in) :: this
integer(kind=int32), intent(in) :: rank

Calls

proc~~win_flush~~CallsGraph proc~win_flush win_t%win_flush mpi_win_flush mpi_win_flush proc~win_flush->mpi_win_flush

Variables

Type Visibility Attributes Name Initial
integer(kind=int32), private :: ierr

Source Code

   subroutine win_flush(this, rank)
      class(win_t), intent(in) :: this
      integer(int32), intent(in) :: rank
      integer(int32) :: ierr

      call MPI_Win_flush(rank, this%m_win, ierr)
   end subroutine win_flush