f77_blas_hemv Module



Interfaces

public interface f77_hemv

Generic old style interface for HEMV. Supports c, z. See also: mfi_hemv, chemv, zhemv.

  • public pure subroutine chemv(uplo, n, alpha, a, lda, x, incx, beta, y, incy)

    Original interface for CHEMV See also: mfi_hemv, hemv.

    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) :: a(lda,*)
    integer, intent(in) :: lda
    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 zhemv(uplo, n, alpha, a, lda, x, incx, beta, y, incy)

    Original interface for ZHEMV See also: mfi_hemv, hemv.

    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) :: a(lda,*)
    integer, intent(in) :: lda
    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