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(benchmark,comm,rc)type(BW_Benchmark),intent(in)::benchmarkinteger,intent(in)::comminteger,optional,intent(out)::rcinteger::statusinteger::rankinteger(kind=INT64)::c0,c1,count_ratecall MPI_Barrier(comm,status)_VERIFY(status)call system_clock(c0)call benchmark%run(_RC)call MPI_Barrier(comm,status)_VERIFY(status)call system_clock(c1,count_rate=count_rate)time=real(c1-c0)/count_rate_RETURN(_SUCCESS)end function time