isend Interface

public interface isend

Calls

interface~~isend~~CallsGraph interface~isend isend proc~comm_isend_integer comm_isend_integer interface~isend->proc~comm_isend_integer proc~comm_isend_integer64 comm_isend_integer64 interface~isend->proc~comm_isend_integer64 proc~comm_isend_integer64_array comm_isend_integer64_array interface~isend->proc~comm_isend_integer64_array proc~comm_isend_integer_array comm_isend_integer_array interface~isend->proc~comm_isend_integer_array proc~comm_isend_logical comm_isend_logical interface~isend->proc~comm_isend_logical proc~comm_isend_real_dp comm_isend_real_dp interface~isend->proc~comm_isend_real_dp proc~comm_isend_real_dp_array comm_isend_real_dp_array interface~isend->proc~comm_isend_real_dp_array proc~comm_isend_real_dp_array_2d comm_isend_real_dp_array_2d interface~isend->proc~comm_isend_real_dp_array_2d proc~comm_isend_real_dp_array_2d_n comm_isend_real_dp_array_2d_n interface~isend->proc~comm_isend_real_dp_array_2d_n proc~comm_isend_real_sp comm_isend_real_sp interface~isend->proc~comm_isend_real_sp proc~comm_isend_real_sp_array comm_isend_real_sp_array interface~isend->proc~comm_isend_real_sp_array proc~comm_isend_real_sp_array_2d comm_isend_real_sp_array_2d interface~isend->proc~comm_isend_real_sp_array_2d mpi_isend mpi_isend proc~comm_isend_integer->mpi_isend proc~comm_isend_integer64->mpi_isend proc~comm_isend_integer64_array->mpi_isend proc~comm_isend_integer_array->mpi_isend proc~comm_isend_logical->mpi_isend proc~comm_isend_real_dp->mpi_isend proc~comm_isend_real_dp_array->mpi_isend proc~comm_isend_real_dp_array_2d->mpi_isend mpi_send mpi_send proc~comm_isend_real_dp_array_2d->mpi_send proc~comm_isend_real_dp_array_2d_n->mpi_isend proc~comm_isend_real_sp->mpi_isend proc~comm_isend_real_sp_array->mpi_isend proc~comm_isend_real_sp_array_2d->mpi_isend proc~comm_isend_real_sp_array_2d->mpi_send

Module Procedures

private subroutine comm_isend_integer(comm, data, dest, tag, request)

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

Arguments

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

private subroutine comm_isend_integer_array(comm, data, dest, tag, request)

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

Arguments

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

private subroutine comm_isend_integer64(comm, data, dest, tag, request)

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

Arguments

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

private subroutine comm_isend_integer64_array(comm, data, dest, tag, request)

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

Arguments

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

private subroutine comm_isend_real_dp(comm, data, dest, tag, request)

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

Arguments

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

private subroutine comm_isend_real_dp_array(comm, data, dest, tag, request)

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

Arguments

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

private subroutine comm_isend_real_dp_array_2d(comm, data, dest, tag, request)

Non-blocking send of a 2D double precision real array

Arguments

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

public subroutine comm_isend_real_dp_array_2d_n(comm, data, count, dest, tag, request)

Non-blocking send of a contiguous 2D double-precision array with explicit count — no dim-prefix protocol. Pairs with comm_recv_real_dp_array_2d_n on the receive side. The caller must keep data valid until wait/waitall on the returned request completes.

Arguments

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

private subroutine comm_isend_real_sp(comm, data, dest, tag, request)

Non-blocking send of a single single-precision real

Arguments

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

private subroutine comm_isend_real_sp_array(comm, data, dest, tag, request)

Non-blocking send of a single-precision real array

Arguments

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

private subroutine comm_isend_real_sp_array_2d(comm, data, dest, tag, request)

Non-blocking send of a 2D single-precision real array

Arguments

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

private subroutine comm_isend_logical(comm, data, dest, tag, request)

Non-blocking send of a logical value

Arguments

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