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.
Source Code
subroutine initialize_global_time_profiler(unusable,name,comm)class(KeywordEnforcer),optional,intent(in)::unusablecharacter(*),optional,intent(in)::nameinteger,optional,intent(in)::commtype(TimeProfiler),pointer::time_profilercharacter(:),allocatable::name_integer::world_commif(present(name))thenname_=nameelsename_='All'end if if(present(comm))thenworld_comm=commelseworld_comm=MPI_COMM_WORLDend iftime_profiler=>get_global_time_profiler()time_profiler=TimeProfiler(name_,comm_world=world_comm)_UNUSED_DUMMY(unusable)end subroutine initialize_global_time_profiler