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
type(MPI_Op),
private
::
mpi_op
Source Code
subroutine win_accumulate_sp(this,target_rank,target_disp,count,buffer,op)class(win_t),intent(in)::thisinteger(int32),intent(in)::target_rankinteger(MPI_ADDRESS_KIND),intent(in)::target_dispinteger(int32),intent(in)::countreal(sp),intent(in)::buffer(*)type(MPI_Op),intent(in),optional::optype(MPI_Op)::mpi_opinteger(int32)::ierrif(present(op))thenmpi_op=opelsempi_op=MPI_SUMend if call MPI_Accumulate(buffer,count,MPI_REAL,&target_rank,target_disp,count,MPI_REAL,&mpi_op,this%m_win,ierr)end subroutine win_accumulate_sp