isend Interface

public interface isend

Calls

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

Module Procedures

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

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)

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 of an integer64

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 of an integer64 array

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)

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)

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)

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 dp array with explicit count. No dim-prefix protocol; pairs with comm_recv_real_dp_array_2d_n on the receive side.

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)

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)

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)

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)

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