Hermitian solve

Implementation

Solve \(AX=B\), \(A^T X = B\), or \(A^H X = B\) for \(X\) given a Hermitian matrix \(A\) and a right-hand side matrix \(B\) using Bunch-Kaufman.

Note

Only the lower-triangular storage case (uplo=LOWER) is supported by the following routines.

C++ API

void HermitianSolve(UpperOrLower uplo, Orientation orientation, Matrix<F> &A, Matrix<F> &B, LDLPivotType pivotType = BUNCH_KAUFMAN_A)
void HermitianSolve(UpperOrLower uplo, Orientation orientation, AbstractDistMatrix<F> &A, AbstractDistMatrix<F> &B, LDLPivotType pivotType = BUNCH_KAUFMAN_A)

C API

ElError ElHermitianSolve_c(ElUpperOrLower uplo, ElOrientation orientation, ElMatrix_c A, ElMatrix_c B)
ElError ElHermitianSolve_z(ElUpperOrLower uplo, ElOrientation orientation, ElMatrix_z A, ElMatrix_z B)
ElError ElHermitianSolveDist_c(ElUpperOrLower uplo, ElOrientation orientation, ElDistMatrix_c A, ElDistMatrix_c B)
ElError ElHermitianSolveDist_z(ElUpperOrLower uplo, ElOrientation orientation, ElDistMatrix_z A, ElDistMatrix_z B)