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, intent(in) :: rank

Calls

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

Variables

Type Visibility Attributes Name Initial
integer, private :: ierr

Source Code

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

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