mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-10 07:01:51 +08:00
bug #1456: add perf recommendation for LLT and storage format
(grafted from 21d0a0bcf5eef2fb89f1ca48b65d52ec03e97272 )
This commit is contained in:
parent
b87875abf8
commit
55fbf4fedd
@ -41,6 +41,11 @@ template<typename MatrixType, int UpLo> struct LLT_Traits;
|
||||
* Example: \include LLT_example.cpp
|
||||
* Output: \verbinclude LLT_example.out
|
||||
*
|
||||
* \b Performance: for best performance, it is recommended to use a column-major storage format
|
||||
* with the Lower triangular part (the default), or, equivalently, a row-major storage format,
|
||||
* with the Upper triangular part. Otherwise, you might get a 20% slowdown for the full factorization
|
||||
* step, and rank-updates can be up to 3 times slower.
|
||||
*
|
||||
* This class supports the \link InplaceDecomposition inplace decomposition \endlink mechanism.
|
||||
*
|
||||
* \sa MatrixBase::llt(), SelfAdjointView::llt(), class LDLT
|
||||
|
Loading…
x
Reference in New Issue
Block a user