irecv Interface

public interface irecv

Calls

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

Module Procedures

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

Initiates a non-blocking receive operation. The request must be waited on using wait() or test() before the buffer can be used.

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)

Initiates a non-blocking receive operation. The request must be waited on using wait() or test() before the buffer can be used.

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. The request must be waited on using wait() or test() before the buffer can be used.

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. The request must be waited on using wait() or test() before the buffer can be used.

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)

Non-blocking receive of a 2D allocatable double precision real array

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)

Non-blocking receive of a single single-precision real

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)

Non-blocking receive of a single-precision real array

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)

Non-blocking receive of a 2D allocatable single-precision real array

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)

Non-blocking receive of a logical value

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