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
real function time(kernel,comm,rc)type(GathervKernel),intent(in)::kernelinteger,intent(in)::comminteger,optional,intent(out)::rcinteger::statusreal::t0,t1call MPI_Barrier(comm,status)_VERIFY(status)t0=MPI_Wtime()call kernel%run(_RC)call MPI_Barrier(comm,status)_VERIFY(status)t1=MPI_Wtime()time=t1-t0_RETURN(_SUCCESS)end function time