f77_hetrf Interface

public interface f77_hetrf

Generic old style interface for HETRF. Supports c, z. See also: mfi_hetrf, chetrf, zhetrf.


Subroutines

public pure subroutine chetrf(uplo, n, a, lda, ipiv, work, lwork, info)

Original interface for CHETRF See also: mfi_hetrf, f77_hetrf.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
complex(kind=REAL32), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
integer, intent(in) :: ipiv(*)
complex(kind=REAL32), intent(inout) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info

public pure subroutine zhetrf(uplo, n, a, lda, ipiv, work, lwork, info)

Original interface for ZHETRF See also: mfi_hetrf, f77_hetrf.

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer, intent(in) :: n
complex(kind=REAL64), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
integer, intent(in) :: ipiv(*)
complex(kind=REAL64), intent(inout) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info