Developer Reference for Intel® oneAPI Math Kernel Library for C
?hetrs_rook
Solves a system of linear equations with a UDU- or LDL-factored Hermitian coefficient matrix.
Syntax
lapack_intLAPACKE_chetrs_rook ( intmatrix_layout , charuplo , lapack_intn , lapack_intnrhs , constlapack_complex_float*a , lapack_intlda , constlapack_int*ipiv , lapack_complex_float*b , lapack_intldb );
lapack_intLAPACKE_zhetrs_rook ( intmatrix_layout , charuplo , lapack_intn , lapack_intnrhs , constlapack_complex_double*a , lapack_intlda , constlapack_int*ipiv , lapack_complex_double*b , lapack_intldb );
Include Files
mkl.h
Description
chetrs_rook zhetrs_rook hetrs_rook
The routine solves for a system of linear equations A*X = B with a complex Hermitian matrix A using the factorization A = U*D*U^{H} or A = L*D*L^{H} computed by ?hetrf_rook (Computes the bounded Bunch-Kaufman factorization of a complex Hermitian matrix.) .
Input Parameters
matrix_layout
Specifies whether matrix storage layout for array b is row major ( LAPACK_ROW_MAJOR ) or column major ( LAPACK_COL_MAJOR ).
uplo
Must be ‘U’ or ‘L’ .
Indicates how the input matrix A has been factored:
If uplo = 'U' , the factorization is of the form A = U*D*U^{H} .
If uplo = 'L' , the factorization is of the form A = L*D*L^{H} .
n
The order of matrix A ; n ≥ 0.
nrhs
The number of right-hand sides; nrhs ≥ 0.
ipiv
Array, size at least max(1, n) .
The ipiv array, as returned by ?hetrf_rook (Computes the bounded Bunch-Kaufman factorization of a complex Hermitian matrix.) .
a , b
Arrays: a (lda*n)) , b(ldb*nrhs) .
The array a contains the block diagonal matrix D and the multipliers used to obtain the factor U or L as computed by ?hetrf_rook (Computes the bounded Bunch-Kaufman factorization of a complex Hermitian matrix.) (see uplo ).
The array b contains the matrix B whose columns are the right-hand sides for the system of equations.
lda
The leading dimension of a ; lda≥ max(1, n) .
ldb
The leading dimension of b ; ldb≥ max(1, n)ldb ≥ max(1, n ) for column major layout and ldb ≥ nrhs ) for row major layout .
Output Parameters
b
Overwritten by the solution matrix X .
Return Values
This function returns a value info .
If info=0 , the execution is successful.
If info = -i , the i- th parameter had an illegal value.
LAPACK 95 Interface Notes
There exist FORTRAN 77 and FORTRAN 95 interfaces for this routine. See the Intel® oneMKL Fortran Developer Reference for details.