Add R-Bidiagonalization step to BDCSVD

This commit is contained in:
Arthur
2022-05-27 02:00:24 +00:00
committed by Rasmus Munk Larsen
parent e99163e732
commit 705ae70646
5 changed files with 82 additions and 28 deletions

View File

@@ -430,7 +430,9 @@ enum QRPreconditioners {
/** Use a QR decomposition without pivoting as the first step. */
HouseholderQRPreconditioner = 0x80,
/** Use a QR decomposition with full pivoting as the first step. */
FullPivHouseholderQRPreconditioner = 0xC0
FullPivHouseholderQRPreconditioner = 0xC0,
/** Used to disable the QR Preconditioner in BDCSVD. */
DisableQRDecomposition = NoQRPreconditioner
};
#ifdef Success