Searched refs:NbColsAtOnce (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DSparseSolverBase.h27 // we process the sparse rhs per block of NbColsAtOnce columns temporarily stored into a dense matrix.
28 static const Index NbColsAtOnce = 4; local
31 // the temporary matrices do not need more columns than NbColsAtOnce:
32 Index tmpCols = (std::min)(rhsCols, NbColsAtOnce);
35 for(Index k=0; k<rhsCols; k+=NbColsAtOnce)
37 Index actualCols = std::min<Index>(rhsCols-k, NbColsAtOnce);

Completed in 1044 milliseconds