f77_blas_tpmv Module



Interfaces

public interface f77_tpmv

Generic old style interface for TPMV. Supports s, d, c, z. See also: mfi_tpmv, stpmv, dtpmv, ctpmv, ztpmv.

  • public pure subroutine stpmv(uplo, trans, diag, n, ap, x, incx)

    Original interface for STPMV See also: mfi_tpmv, tpmv.

    Arguments

    Type IntentOptional Attributes Name
    character(len=1), intent(in) :: uplo
    character(len=1), intent(in) :: trans
    character(len=1), intent(in) :: diag
    integer, intent(in) :: n
    real(kind=REAL32), intent(in) :: ap(*)
    real(kind=REAL32), intent(inout) :: x(*)
    integer, intent(in) :: incx
  • public pure subroutine dtpmv(uplo, trans, diag, n, ap, x, incx)

    Original interface for DTPMV See also: mfi_tpmv, tpmv.

    Arguments

    Type IntentOptional Attributes Name
    character(len=1), intent(in) :: uplo
    character(len=1), intent(in) :: trans
    character(len=1), intent(in) :: diag
    integer, intent(in) :: n
    real(kind=REAL64), intent(in) :: ap(*)
    real(kind=REAL64), intent(inout) :: x(*)
    integer, intent(in) :: incx
  • public pure subroutine ctpmv(uplo, trans, diag, n, ap, x, incx)

    Original interface for CTPMV See also: mfi_tpmv, tpmv.

    Arguments

    Type IntentOptional Attributes Name
    character(len=1), intent(in) :: uplo
    character(len=1), intent(in) :: trans
    character(len=1), intent(in) :: diag
    integer, intent(in) :: n
    complex(kind=REAL32), intent(in) :: ap(*)
    complex(kind=REAL32), intent(inout) :: x(*)
    integer, intent(in) :: incx
  • public pure subroutine ztpmv(uplo, trans, diag, n, ap, x, incx)

    Original interface for ZTPMV See also: mfi_tpmv, tpmv.

    Arguments

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