start_persist Subroutine

private subroutine start_persist(handle)

Starts a single persistent communication represented by handle

Arguments

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

Contents

Source Code


Source Code

  subroutine start_persist(handle)
    implicit none
    integer, intent(inout) :: handle
# ifdef MPI
    integer :: ierror
!$OMP MASTER
    call time_message(.false., time_mp_ptp, ' MPI Point-to-point')
!$OMP END MASTER
    call mpi_start(handle,ierror)
!$OMP MASTER
    call time_message(.false., time_mp_ptp, ' MPI Point-to-point')
!$OMP END MASTER
# endif
  end subroutine start_persist