f77_hpmv Interface

public interface f77_hpmv

Generic old style interface for HPMV. Supports c, z. See also: mfi_hpmv, chpmv, zhpmv.


Subroutines

public pure subroutine chpmv(uplo, n, alpha, ap, x, incx, beta, y, incy)

Original interface for CHPMV See also: mfi_hpmv, f77_hpmv.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
complex(kind=REAL32), intent(in) :: alpha
complex(kind=REAL32), intent(in) :: ap(*)
complex(kind=REAL32), intent(in) :: x(*)
integer, intent(in) :: incx
complex(kind=REAL32), intent(in) :: beta
complex(kind=REAL32), intent(inout) :: y(*)
integer, intent(in) :: incy

public pure subroutine zhpmv(uplo, n, alpha, ap, x, incx, beta, y, incy)

Original interface for ZHPMV See also: mfi_hpmv, f77_hpmv.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
complex(kind=REAL64), intent(in) :: alpha
complex(kind=REAL64), intent(in) :: ap(*)
complex(kind=REAL64), intent(in) :: x(*)
integer, intent(in) :: incx
complex(kind=REAL64), intent(in) :: beta
complex(kind=REAL64), intent(inout) :: y(*)
integer, intent(in) :: incy