send Interface

public interface send

Calls

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

Module Procedures

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

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)

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)

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)

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)

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 dp array using an explicit count. No dim-prefix protocol — caller and receiver agree on shape externally.

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 with explicit count.

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)

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)

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)

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)

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