wait_nostat Subroutine

private subroutine wait_nostat(request)

This routine waits for the communication, given by the message request, to complete. We ignore the status information

Arguments

Type IntentOptional Attributes Name
integer, intent(inout) :: request

Contents

Source Code


Source Code

  subroutine wait_nostat (request)
    implicit none
    integer, intent (inout) :: request
# ifdef MPI
    integer :: ierror
!$OMP MASTER
    call time_message(.false., time_mp_sync, ' MPI Sync')
!$OMP END MASTER
    call mpi_wait(request,MPI_STATUS_IGNORE,ierror)
!$OMP MASTER
    call time_message(.false., time_mp_sync, ' MPI Sync')
!$OMP END MASTER
# endif
  end subroutine wait_nostat