Intel® oneAPI Math Kernel Library Developer Reference - Fortran
?hesv_rk computes the solution to a system of linear equations A * X = B for Hermitian matrices.
call chesv_rk(uplo, n, nrhs, A, lda, e, ipiv, B, ldb, work, lwork, info)
call zhesv_rk(uplo, n, nrhs, A, lda, e, ipiv, B, ldb, work, lwork, info)
?hesv_rk computes the solution to a complex system of linear equations A * X = B, where A is an n-by-n Hermitian matrix and X and B are n-by-nrhs matrices.
The bounded Bunch-Kaufman (rook) diagonal pivoting method is used to factor A as A = P*U*D*(UH)*(PT), if uplo = 'U', or A = P*L*D*(LH)*(PT), if uplo = 'L', where U (or L) is unit upper (or lower) triangular matrix, UH (or LH) is the conjugate of U (or L), P is a permutation matrix, PT is the transpose of P, and D is Hermitian and block diagonal with 1-by-1 and 2-by-2 diagonal blocks.
?hetrf_rk is called to compute the factorization of a complex Hermitian matrix. The factored form of A is then used to solve the system of equations A * X = B by calling BLAS3 routine ?hetrs_3.
CHARACTER*1
Specifies whether the upper or lower triangular part of the Hermitian matrix A is stored:
INTEGER
The number of linear equations; that is, the order of the matrix A. n ≥ 0.
INTEGER
The number of right-hand sides; that is, the number of columns of the matrix B. nrhs ≥ 0.
COMPLEX for chesv_rk
COMPLEX*16 for zhesv_rk
Array, dimension (lda,n). On entry, the Hermitian matrix A. If uplo = 'U': the leading n-by-n upper triangular part of A contains the upper triangular part of the matrix A, and the strictly lower triangular part of A is not referenced. If uplo = 'L': the leading n-by-n lower triangular part of A contains the lower triangular part of the matrix A, and the strictly upper triangular part of A is not referenced.
INTEGER
The leading dimension of the array A.lda ≥ max(1, n).
COMPLEX for chesv_rk
COMPLEX*16 for zhesv_rk
On entry, the n-by-nrhs right-hand side matrix B.
The second dimension of B must be at least max(1, nrhs).
INTEGER
The leading dimension of the array B. ldb ≥ max(1, n).
INTEGER
The length of the array work.
If lwork = -1, a workspace query is assumed; the routine calculates only the optimal size of the work array for the factorization stage and returns this value as the first entry of the work array, and no error message related to lwork is issued by XERBLA.
COMPLEX for chesv_rk
COMPLEX*16 for zhesv_rk
On exit, if info = 0, diagonal of the block diagonal matrix D and factors U or L as computed by ?hetrf_rk:
Only diagonal elements of the Hermitian block diagonal matrix D on the diagonal of A; that is, D(k,k) = A(k,k); (superdiagonal (or subdiagonal) elements of D are stored on exit in array e).
—and—
For more information, see the description of the ?hetrf_rk routine.
COMPLEX for chesv_rk
COMPLEX*16 for zhesv_rk
Array, dimension (n). On exit, contains the output computed by the factorization routine ?hetrf_rk; that is, the superdiagonal (or subdiagonal) elements of the Hermitian block diagonal matrix D with 1-by-1 or 2-by-2 diagonal blocks:
For more information, see the description of the ?hetrf_rk routine.
INTEGER
Array, dimension (n). Details of the interchanges and the block structure of D, as determined by ?hetrf_rk.
COMPLEX for chesv_rk
COMPLEX*16 for zhesv_rk
On exit, if info = 0, the n-by-nrhs solution matrix X.
COMPLEX for chesv_rk
COMPLEX*16 for zhesv_rk
Array, dimension ( MAX(1,lwork) ). Work array used in the factorization stage. On exit, if info = 0, work(1) returns the optimal lwork.
INTEGER