Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Variables
Type
Visibility
Attributes
Name
Initial
integer(kind=int32),
private
::
dim1
integer(kind=int32),
private
::
dim2
integer(kind=int32),
private
::
ierr
Source Code
subroutine comm_send_real_dp_array_2d(comm,data,dest,tag)!! Blocking send of a 2D double precision real array to specified destinationtype(comm_t),intent(in)::commreal(dp),intent(in)::data(:,:)integer(int32),intent(in)::destinteger(int32),intent(in)::taginteger(int32)::ierr,dim1,dim2! Send dimensions firstdim1=size(data,1)dim2=size(data,2)call MPI_Send(dim1,1,MPI_INTEGER,dest,tag,comm%m_comm,ierr)call MPI_Send(dim2,1,MPI_INTEGER,dest,tag,comm%m_comm,ierr)! Send datacall MPI_Send(data,size(data),MPI_DOUBLE_PRECISION,dest,tag,comm%m_comm,ierr)end subroutine comm_send_real_dp_array_2d