send Interface

public interface send

Calls

interface~~send~~CallsGraph interface~send send proc~comm_send_integer comm_send_integer interface~send->proc~comm_send_integer proc~comm_send_integer64 comm_send_integer64 interface~send->proc~comm_send_integer64 proc~comm_send_integer64_array comm_send_integer64_array interface~send->proc~comm_send_integer64_array proc~comm_send_integer_array comm_send_integer_array interface~send->proc~comm_send_integer_array proc~comm_send_integer_array_2d_n comm_send_integer_array_2d_n interface~send->proc~comm_send_integer_array_2d_n proc~comm_send_logical comm_send_logical interface~send->proc~comm_send_logical proc~comm_send_real_dp comm_send_real_dp interface~send->proc~comm_send_real_dp proc~comm_send_real_dp_array comm_send_real_dp_array interface~send->proc~comm_send_real_dp_array proc~comm_send_real_dp_array_2d comm_send_real_dp_array_2d interface~send->proc~comm_send_real_dp_array_2d proc~comm_send_real_dp_array_2d_n comm_send_real_dp_array_2d_n interface~send->proc~comm_send_real_dp_array_2d_n proc~comm_send_real_sp comm_send_real_sp interface~send->proc~comm_send_real_sp proc~comm_send_real_sp_array comm_send_real_sp_array interface~send->proc~comm_send_real_sp_array proc~comm_send_real_sp_array_2d comm_send_real_sp_array_2d interface~send->proc~comm_send_real_sp_array_2d mpi_send mpi_send proc~comm_send_integer->mpi_send proc~comm_send_integer64->mpi_send proc~comm_send_integer64_array->mpi_send proc~comm_send_integer_array->mpi_send proc~comm_send_integer_array_2d_n->mpi_send proc~comm_send_logical->mpi_send proc~comm_send_real_dp->mpi_send proc~comm_send_real_dp_array->mpi_send proc~comm_send_real_dp_array_2d->mpi_send proc~comm_send_real_dp_array_2d_n->mpi_send proc~comm_send_real_sp->mpi_send proc~comm_send_real_sp_array->mpi_send proc~comm_send_real_sp_array_2d->mpi_send

Module Procedures

private subroutine comm_send_integer(comm, data, dest, tag)

Blocking send of an integer to specified destination

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

private subroutine comm_send_integer_array(comm, data, dest, tag)

Blocking send of an integer array to specified destination

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

private subroutine comm_send_integer64(comm, data, dest, tag)

Blocking send of an integer64 to specified destination

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

private subroutine comm_send_integer64_array(comm, data, dest, tag)

Blocking send of an integer64 array to specified destination

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

private subroutine comm_send_real_dp(comm, data, dest, tag)

Blocking send of a single double precision real to specified destination

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

private subroutine comm_send_real_dp_array(comm, data, dest, tag)

Blocking send of a double precision real array to specified destination

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

private subroutine comm_send_real_dp_array_2d(comm, data, dest, tag)

Blocking send of a 2D double precision real array to specified destination

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

public subroutine comm_send_real_dp_array_2d_n(comm, data, count, dest, tag)

Blocking send of a contiguous 2D double-precision array using an explicit count. Unlike comm_send_real_dp_array_2d, this variant does NOT prefix the message with the dimensions — caller and receiver agree on the shape via the protocol. The receiver uses comm_recv_real_dp_array_2d_n (or any of the _array_n overloads) with the same count.

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

public subroutine comm_send_integer_array_2d_n(comm, data, count, dest, tag)

Blocking send of a contiguous 2D int32 array using an explicit count, no dim-prefix. Pairs with comm_recv_integer_array_2d_n.

Arguments

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

private subroutine comm_send_real_sp(comm, data, dest, tag)

Blocking send of a single single-precision real to specified destination

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

private subroutine comm_send_real_sp_array(comm, data, dest, tag)

Blocking send of a single-precision real array to specified destination

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

private subroutine comm_send_real_sp_array_2d(comm, data, dest, tag)

Blocking send of a 2D single-precision real array to specified destination

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

private subroutine comm_send_logical(comm, data, dest, tag)

Blocking send of a logical value to specified destination

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