LAHEF_ROOK: computes a partial factorization of a complex Hermitian matrix A using the bounded Bunch-Kaufman ("rook") diagonal pivoting method. The partial factorization has the form: A = ( I U12 ) ( A11 0 ) ( I 0 ) if UPLO = 'U', or: ( 0 U22 ) ( 0 D ) ( U12**H U22**H ) A = ( L11 0 ) ( D 0 ) ( L11**H L21**H ) if UPLO = 'L' ( L21 I ) ( 0 A22 ) ( 0 I ) where the order of D is at most NB. The actual order is returned in the argument KB, and is either NB or NB-1, or N if N <= NB. Note that U**H denotes the conjugate transpose of U. LAHEF_ROOK is an auxiliary routine called by CHETRF_ROOK. It uses blocked code (calling Level 3 BLAS) to update the submatrix A11 (if UPLO = 'U') or A22 (if UPLO = 'L').
More...
|
pure subroutine | clahef_rook (uplo, n, nb, kb, a, lda, ipiv, w, ldw, info) |
|
| la_clahef_rook |
|
| la_wlahef_rook |
|
pure subroutine | zlahef_rook (uplo, n, nb, kb, a, lda, ipiv, w, ldw, info) |
|
| la_zlahef_rook |
|
LAHEF_ROOK: computes a partial factorization of a complex Hermitian matrix A using the bounded Bunch-Kaufman ("rook") diagonal pivoting method. The partial factorization has the form: A = ( I U12 ) ( A11 0 ) ( I 0 ) if UPLO = 'U', or: ( 0 U22 ) ( 0 D ) ( U12**H U22**H ) A = ( L11 0 ) ( D 0 ) ( L11**H L21**H ) if UPLO = 'L' ( L21 I ) ( 0 A22 ) ( 0 I ) where the order of D is at most NB. The actual order is returned in the argument KB, and is either NB or NB-1, or N if N <= NB. Note that U**H denotes the conjugate transpose of U. LAHEF_ROOK is an auxiliary routine called by CHETRF_ROOK. It uses blocked code (calling Level 3 BLAS) to update the submatrix A11 (if UPLO = 'U') or A22 (if UPLO = 'L').
◆ clahef_rook()
pure subroutine la_lapack::lahef_rook::clahef_rook |
( |
character, intent(in) |
uplo, |
|
|
integer(ilp), intent(in) |
n, |
|
|
integer(ilp), intent(in) |
nb, |
|
|
integer(ilp), intent(out) |
kb, |
|
|
complex(sp), dimension(lda,*), intent(inout) |
a, |
|
|
integer(ilp), intent(in) |
lda, |
|
|
integer(ilp), dimension(*), intent(out) |
ipiv, |
|
|
complex(sp), dimension(ldw,*), intent(out) |
w, |
|
|
integer(ilp), intent(in) |
ldw, |
|
|
integer(ilp), intent(out) |
info |
|
) |
| |
◆ la_clahef_rook()
la_lapack::lahef_rook::la_clahef_rook |
◆ la_wlahef_rook()
la_lapack::lahef_rook::la_wlahef_rook |
◆ la_zlahef_rook()
la_lapack::lahef_rook::la_zlahef_rook |
◆ zlahef_rook()
pure subroutine la_lapack::lahef_rook::zlahef_rook |
( |
character, intent(in) |
uplo, |
|
|
integer(ilp), intent(in) |
n, |
|
|
integer(ilp), intent(in) |
nb, |
|
|
integer(ilp), intent(out) |
kb, |
|
|
complex(dp), dimension(lda,*), intent(inout) |
a, |
|
|
integer(ilp), intent(in) |
lda, |
|
|
integer(ilp), dimension(*), intent(out) |
ipiv, |
|
|
complex(dp), dimension(ldw,*), intent(out) |
w, |
|
|
integer(ilp), intent(in) |
ldw, |
|
|
integer(ilp), intent(out) |
info |
|
) |
| |
The documentation for this interface was generated from the following file: