mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
MIsc. source and comment typos
Found using `codespell` and `grep` from downstream FreeCAD
This commit is contained in:
@@ -62,7 +62,7 @@ struct traits<BDCSVD<_MatrixType> >
|
||||
* recommended and can several order of magnitude faster.
|
||||
*
|
||||
* \warning this algorithm is unlikely to provide accurate result when compiled with unsafe math optimizations.
|
||||
* For instance, this concerns Intel's compiler (ICC), which perfroms such optimization by default unless
|
||||
* For instance, this concerns Intel's compiler (ICC), which performs such optimization by default unless
|
||||
* you compile with the \c -fp-model \c precise option. Likewise, the \c -ffast-math option of GCC or clang will
|
||||
* significantly degrade the accuracy.
|
||||
*
|
||||
|
||||
@@ -202,7 +202,7 @@ void upperbidiagonalization_blocked_helper(MatrixType& A,
|
||||
{
|
||||
SubColumnType y_k( Y.col(k).tail(remainingCols) );
|
||||
|
||||
// let's use the begining of column k of Y as a temporary vector
|
||||
// let's use the beginning of column k of Y as a temporary vector
|
||||
SubColumnType tmp( Y.col(k).head(k) );
|
||||
y_k.noalias() = A.block(k,k+1, remainingRows,remainingCols).adjoint() * v_k; // bottleneck
|
||||
tmp.noalias() = V_k1.adjoint() * v_k;
|
||||
@@ -231,7 +231,7 @@ void upperbidiagonalization_blocked_helper(MatrixType& A,
|
||||
{
|
||||
SubColumnType x_k ( X.col(k).tail(remainingRows-1) );
|
||||
|
||||
// let's use the begining of column k of X as a temporary vectors
|
||||
// let's use the beginning of column k of X as a temporary vectors
|
||||
// note that tmp0 and tmp1 overlaps
|
||||
SubColumnType tmp0 ( X.col(k).head(k) ),
|
||||
tmp1 ( X.col(k).head(k+1) );
|
||||
|
||||
Reference in New Issue
Block a user