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 type_coo_gemv(alpha,A,x,beta,y)! y := alpha*A*x + beta*yimplicit nonereal(real64),intent(in)::alphatype(type_coo),intent(in)::Areal(real64),intent(in)::x(:)real(real64),intent(in)::betareal(real64),intent(inout)::y(:)integer(int32)::i!$omp parallel do default(shared) private(i)do i=1,A%nnz!$omp atomicy(A%row(i))=alpha*A%val(i)*x(A%col(i))+beta*y(A%row(i))end do!$omp end parallel doend subroutine type_coo_gemv