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 MAPL_MemUtilsInit(mode,RC)integer,optional,intent(IN)::modeinteger,optional,intent(OUT)::RCcharacter(len=ESMF_MAXSTR),parameter::IAm="MAPL_MemUtilsInit"!initialize memutils module!currently sets default cache characteristics!(will provide overrides later)!also sets pe to my_pe on t3e#ifdef _CRAYT3E!all sizes in bytesl1_cache_line_size=32l1_cache_size=8192l1_associativity=1l2_cache_line_size=64l2_cache_size=98304l2_associativity=3#else!defaultsl1_cache_line_size=1l1_cache_size=1l1_associativity=1l2_cache_line_size=1l2_cache_size=1l2_associativity=1#endif#ifdef _CRAYT3Epe=SHMEM_MY_PE()#endifmemutils_initialized=.TRUE.gmax_save=0.0if(present(mode))thenMAPL_MemUtilsMode=modeelseMAPL_memUtilsMode=MAPL_MemUtilsModeBaseendif_RETURN(ESMF_SUCCESS)end subroutine MAPL_MemUtilsInit