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
::
ierr
Source Code
function create_comm_from_mpi(mpi_comm_in)result(comm)integer,intent(in)::mpi_comm_intype(comm_t)::comminteger(int32)::ierrcomm%m_comm=mpi_comm_inif(mpi_comm_in/=MPI_COMM_NULL)then call MPI_Comm_rank(comm%m_comm,comm%m_rank,ierr)call MPI_Comm_size(comm%m_comm,comm%m_size,ierr)comm%is_valid=.true.elsecomm%is_valid=.false.end if end function create_comm_from_mpi