irecv Interface

public interface irecv

Calls

interface~~irecv~2~~CallsGraph interface~irecv~2 irecv proc~comm_irecv_integer64_array~2 comm_irecv_integer64_array interface~irecv~2->proc~comm_irecv_integer64_array~2 proc~comm_irecv_integer64~2 comm_irecv_integer64 interface~irecv~2->proc~comm_irecv_integer64~2 proc~comm_irecv_integer_array~2 comm_irecv_integer_array interface~irecv~2->proc~comm_irecv_integer_array~2 proc~comm_irecv_integer~2 comm_irecv_integer interface~irecv~2->proc~comm_irecv_integer~2 proc~comm_irecv_logical~2 comm_irecv_logical interface~irecv~2->proc~comm_irecv_logical~2 proc~comm_irecv_real_dp_array_2d~2 comm_irecv_real_dp_array_2d interface~irecv~2->proc~comm_irecv_real_dp_array_2d~2 proc~comm_irecv_real_dp_array~2 comm_irecv_real_dp_array interface~irecv~2->proc~comm_irecv_real_dp_array~2 proc~comm_irecv_real_dp~2 comm_irecv_real_dp interface~irecv~2->proc~comm_irecv_real_dp~2 proc~comm_irecv_real_sp_array_2d~2 comm_irecv_real_sp_array_2d interface~irecv~2->proc~comm_irecv_real_sp_array_2d~2 proc~comm_irecv_real_sp_array~2 comm_irecv_real_sp_array interface~irecv~2->proc~comm_irecv_real_sp_array~2 proc~comm_irecv_real_sp~2 comm_irecv_real_sp interface~irecv~2->proc~comm_irecv_real_sp~2 mpi_irecv mpi_irecv proc~comm_irecv_integer64_array~2->mpi_irecv proc~comm_irecv_integer64~2->mpi_irecv proc~comm_irecv_integer_array~2->mpi_irecv proc~comm_irecv_integer~2->mpi_irecv proc~comm_irecv_logical~2->mpi_irecv proc~comm_irecv_real_dp_array_2d~2->mpi_irecv mpi_recv mpi_recv proc~comm_irecv_real_dp_array_2d~2->mpi_recv proc~comm_irecv_real_dp_array~2->mpi_irecv proc~comm_irecv_real_dp~2->mpi_irecv proc~comm_irecv_real_sp_array_2d~2->mpi_irecv proc~comm_irecv_real_sp_array_2d~2->mpi_recv proc~comm_irecv_real_sp_array~2->mpi_irecv proc~comm_irecv_real_sp~2->mpi_irecv

Module Procedures

private subroutine comm_irecv_integer(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
integer(kind=int32), intent(out) :: data
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_integer_array(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
integer(kind=int32), intent(out) :: data(:)
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_integer64(comm, data, source, tag, request)

Initiates a non-blocking receive operation of an integer64

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
integer(kind=int64), intent(out) :: data
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_integer64_array(comm, data, source, tag, request)

Initiates a non-blocking receive operation of an integer64 array

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
integer(kind=int64), intent(out) :: data(:)
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_real_dp(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=dp), intent(out) :: data
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_real_dp_array(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=dp), intent(out) :: data(:)
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_real_dp_array_2d(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=dp), intent(inout), allocatable :: data(:,:)
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_real_sp(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=sp), intent(out) :: data
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_real_sp_array(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=sp), intent(out) :: data(:)
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_real_sp_array_2d(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
real(kind=sp), intent(inout), allocatable :: data(:,:)
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request

private subroutine comm_irecv_logical(comm, data, source, tag, request)

Arguments

Type IntentOptional Attributes Name
type(comm_t), intent(in) :: comm
logical, intent(out) :: data
integer(kind=int32), intent(in) :: source
integer(kind=int32), intent(in) :: tag
type(request_t), intent(out) :: request