Home
last modified time | relevance | path

Searched refs:rhsCols (Results 1 – 5 of 5) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DSparseSolverBase.h29 Index rhsCols = rhs.cols(); in solve_sparse_through_dense_panels() local
32 Index tmpCols = (std::min)(rhsCols, NbColsAtOnce); in solve_sparse_through_dense_panels()
35 for(Index k=0; k<rhsCols; k+=NbColsAtOnce) in solve_sparse_through_dense_panels()
37 Index actualCols = std::min<Index>(rhsCols-k, NbColsAtOnce); in solve_sparse_through_dense_panels()
/external/eigen/test/
Dsparse_solver.h286 int rhsCols = internal::random<int>(1,16); variable
287 double density = (std::max)(8./(size*rhsCols), 0.1);
288 SpMat B(size,rhsCols);
290 DenseMatrix dB(size,rhsCols);
408 int rhsCols = internal::random<int>(1,16); variable
417 DenseMatrix dB(size,rhsCols);
418 SpMat B(size,rhsCols);
419 double density = (std::max)(8./(size*rhsCols), 0.1);
540 int rhsCols = internal::random<int>(1,16); in check_sparse_leastsquare_solving() local
549 DenseMatrix dB(A.rows(),rhsCols); in check_sparse_leastsquare_solving()
[all …]
/external/eigen/Eigen/src/IterativeLinearSolvers/
DIterativeSolverBase.h338 Index rhsCols = b.cols(); in _solve_impl() local
346 typename DestDerived::PlainObject tmp(cols(),rhsCols); in _solve_impl()
347 for(Index k=0; k<rhsCols; ++k) in _solve_impl()
/external/eigen/Eigen/src/SuperLUSupport/
DSuperLUSupport.h654 const Index rhsCols = b.cols();
662 m_sluFerr.resize(rhsCols);
663 m_sluBerr.resize(rhsCols);
978 const int rhsCols = b.cols();
985 m_sluFerr.resize(rhsCols);
986 m_sluBerr.resize(rhsCols);
/external/eigen/Eigen/src/UmfPackSupport/
DUmfPackSupport.h475 Index rhsCols = b.cols(); in _solve_impl() local
488 for (int j=0; j<rhsCols; ++j) in _solve_impl()