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,
private
::
ierr
type(MPI_Op),
private
::
mpi_op
Source Code
subroutine allreduce_sp_to(comm,sendbuf,recvbuf,op)type(comm_t),intent(in)::commreal(sp),intent(in)::sendbufreal(sp),intent(out)::recvbuftype(MPI_Op),intent(in),optional::optype(MPI_Op)::mpi_opinteger::ierrif(present(op))thenmpi_op=opelsempi_op=MPI_SUMend if call MPI_Allreduce(sendbuf,recvbuf,1,MPI_REAL,&mpi_op,comm%get(),ierr)end subroutine allreduce_sp_to