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 multiply_matrix_vector(alpha,A,x,beta,y)implicit nonereal(real64),intent(in)::alphareal(real64),intent(in)::A(:,:)real(real64),intent(in)::x(:)real(real64),intent(in)::betareal(real64),intent(inout)::y(:)integer(int32)::i#ifdef _MKLcall dgemv('N',size(A,1),size(A,2),alpha,A,size(A,1),x,1,beta,y,1)#else!$omp parallel do private(i)do i=1,size(A,1)y(i)=alpha*dot_product(A(i,:),x)+beta*y(i)end do!$omp end parallel do#endifend subroutine multiply_matrix_vector