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
Source Code
subroutine win_accumulate_dp(this,target_rank,target_disp,count,buffer,op)class(win_t),intent(in)::thisinteger,intent(in)::target_rankinteger(MPI_ADDRESS_KIND),intent(in)::target_dispinteger,intent(in)::countreal(dp),intent(in)::buffer(*)integer,intent(in),optional::opinteger::mpi_opinteger::ierrif(present(op))thenmpi_op=opelsempi_op=MPI_SUMend if call MPI_Accumulate(buffer,count,MPI_DOUBLE_PRECISION,&target_rank,target_disp,count,MPI_DOUBLE_PRECISION,&mpi_op,this%m_win,ierr)end subroutine win_accumulate_dp