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
integer,
private
::
mpi_op
integer,
private
::
n
Source Code
subroutine allreduce_i32_array(comm,buffer,count,op)type(comm_t),intent(in)::comminteger(int32),intent(inout)::buffer(:)integer,intent(in),optional::countinteger,intent(in),optional::opinteger::mpi_opinteger::ierr,nif(present(count))thenn=countelsen=size(buffer)end if if(present(op))thenmpi_op=opelsempi_op=MPI_SUMend if call MPI_Allreduce(MPI_IN_PLACE,buffer,n,MPI_INTEGER,&mpi_op,comm%get(),ierr)end subroutine allreduce_i32_array