potrf Interface

public interface potrf

POTRF computes the Cholesky factorization of a complex Hermitian positive definite matrix A. The factorization has the form A = UH * U, if UPLO = 'U', or A = L * LH, if UPLO = 'L', where U is an upper triangular matrix and L is lower triangular. This is the block version of the algorithm, calling Level 3 BLAS.


Subroutines

public pure subroutine cpotrf(uplo, n, a, lda, info)

Arguments

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

public pure subroutine dpotrf(uplo, n, a, lda, info)

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer(kind=ilp), intent(in) :: n
real(kind=dp), intent(inout) :: a(lda,*)
integer(kind=ilp), intent(in) :: lda
integer(kind=ilp), intent(out) :: info

public pure subroutine spotrf(uplo, n, a, lda, info)

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: uplo
integer(kind=ilp), intent(in) :: n
real(kind=sp), intent(inout) :: a(lda,*)
integer(kind=ilp), intent(in) :: lda
integer(kind=ilp), intent(out) :: info

public pure subroutine zpotrf(uplo, n, a, lda, info)

Arguments

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

Module Procedures

public interface stdlib_cpotrf()

Arguments

None

public interface stdlib_dpotrf()

Arguments

None

public interface stdlib_spotrf()

Arguments

None

public interface stdlib_zpotrf()

Arguments

None