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.
Subroutines
private pure subroutine cgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)
Arguments
Type
Intent
Optional
Attributes
Name
character(len=1),
intent(in)
::
trans
integer(kind=default_int),
intent(in)
::
m
integer(kind=default_int),
intent(in)
::
n
complex(kind=sp),
intent(in)
::
alpha
complex(kind=sp),
intent(in)
::
a(lda,*)
integer(kind=default_int),
intent(in)
::
lda
complex(kind=sp),
intent(in)
::
x(*)
integer(kind=default_int),
intent(in)
::
incx
complex(kind=sp),
intent(in)
::
beta
complex(kind=sp),
intent(inout)
::
y(*)
integer(kind=default_int),
intent(in)
::
incy
private pure subroutine dgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)
Arguments
Type
Intent
Optional
Attributes
Name
character(len=1),
intent(in)
::
trans
integer(kind=default_int),
intent(in)
::
m
integer(kind=default_int),
intent(in)
::
n
real(kind=dp),
intent(in)
::
alpha
real(kind=dp),
intent(in)
::
a(lda,*)
integer(kind=default_int),
intent(in)
::
lda
real(kind=dp),
intent(in)
::
x(*)
integer(kind=default_int),
intent(in)
::
incx
real(kind=dp),
intent(in)
::
beta
real(kind=dp),
intent(inout)
::
y(*)
integer(kind=default_int),
intent(in)
::
incy
private pure subroutine sgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)
Arguments
Type
Intent
Optional
Attributes
Name
character(len=1),
intent(in)
::
trans
integer(kind=default_int),
intent(in)
::
m
integer(kind=default_int),
intent(in)
::
n
real(kind=sp),
intent(in)
::
alpha
real(kind=sp),
intent(in)
::
a(lda,*)
integer(kind=default_int),
intent(in)
::
lda
real(kind=sp),
intent(in)
::
x(*)
integer(kind=default_int),
intent(in)
::
incx
real(kind=sp),
intent(in)
::
beta
real(kind=sp),
intent(inout)
::
y(*)
integer(kind=default_int),
intent(in)
::
incy
private pure subroutine zgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)