f77_potrs Interface

public interface f77_potrs

Generic old style interface for POTRS. Supports s, d, c, z. See also: mfi_potrs, spotrs, dpotrs, cpotrs, zpotrs.


Subroutines

public pure subroutine spotrs(uplo, n, nrhs, a, lda, b, ldb, info)

Original interface for SPOTRS See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
integer, intent(in) :: nrhs
real(kind=REAL32), intent(in) :: a(lda,*)
integer, intent(in) :: lda
real(kind=REAL32), intent(in) :: b(ldb,*)
integer, intent(in) :: ldb
integer, intent(out) :: info

public pure subroutine dpotrs(uplo, n, nrhs, a, lda, b, ldb, info)

Original interface for DPOTRS See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
integer, intent(in) :: nrhs
real(kind=REAL64), intent(in) :: a(lda,*)
integer, intent(in) :: lda
real(kind=REAL64), intent(in) :: b(ldb,*)
integer, intent(in) :: ldb
integer, intent(out) :: info

public pure subroutine cpotrs(uplo, n, nrhs, a, lda, b, ldb, info)

Original interface for CPOTRS See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
integer, intent(in) :: nrhs
complex(kind=REAL32), intent(in) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL32), intent(in) :: b(ldb,*)
integer, intent(in) :: ldb
integer, intent(out) :: info

public pure subroutine zpotrs(uplo, n, nrhs, a, lda, b, ldb, info)

Original interface for ZPOTRS See also: mfi_potrs, f77_potrs.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
integer, intent(in) :: nrhs
complex(kind=REAL64), intent(in) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL64), intent(in) :: b(ldb,*)
integer, intent(in) :: ldb
integer, intent(out) :: info