aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/svd_common.h
Commit message (Collapse)AuthorAge
* Add an info() method to the SVDBase class to make it possible to tell the ↵Gravatar Rasmus Munk Larsen2021-03-31
| | | | | | user that the computation failed, possibly due to invalid input. Make Jacobi and divide-and-conquer fail fast and return info() == InvalidInput if the matrix contains NaN or +/-Inf.
* PR 567: makes all dense solvers inherit SoverBase (LU,Cholesky,QR,SVD).Gravatar Patrick Peltzer2019-01-17
| | | | | | | | | | | | | This changeset also includes: * add HouseholderSequence::conjugateIf * define int as the StorageIndex type for all dense solvers * dedicated unit tests, including assertion checking * _check_solve_assertion(): this method can be implemented in derived solver classes to implement custom checks * CompleteOrthogonalDecompositions: add applyZOnTheLeftInPlace, fix scalar type in applyZAdjointOnTheLeftInPlace(), add missing assertions * Cholesky: add missing assertions * FullPivHouseholderQR: Corrected Scalar type in _solve_impl() * BDCSVD: Unambiguous return type for ternary operator * SVDBase: Corrected Scalar type in _solve_impl()
* Remove local Index typedef from unit-testsGravatar Gael Guennebaud2018-07-12
|
* Fix test for nearly null inputGravatar Gael Guennebaud2016-07-12
|
* Enable and fix -Wdouble-conversion warningsGravatar Christoph Hertzberg2016-05-05
|
* Fix overflow when checking SVD accuracyGravatar Gael Guennebaud2015-06-23
|
* Reduce compiler memory consumption for SVD unit testsGravatar Gael Guennebaud2015-06-22
|
* Extend unit tests of sefladjoint-eigensolverGravatar Gael Guennebaud2015-05-07
|
* Fix transpose versus adjoint.Gravatar Gael Guennebaud2015-03-27
|
* Suppress some false negatives in SVD unit testGravatar Gael Guennebaud2015-03-27
|
* Make SVD unit test even more toughGravatar Gael Guennebaud2014-10-15
|
* Extend svd unit tests to stress problems with duplicated singular values.Gravatar Gael Guennebaud2014-10-15
|
* Various numerical fixes in D&C SVD: I cannot make it fail with double, but ↵Gravatar Gael Guennebaud2014-10-09
| | | | still need to tune for single precision, and carefully test with duplicated singular values
* D&C SVD: add scaling to avoid overflow, fix handling of fixed size matricesGravatar Gael Guennebaud2014-10-06
|
* Unify unit test for BDC and Jacobi SVD. This reveals some numerical issues ↵Gravatar Gael Guennebaud2014-09-19
in BDCSVD.