Searched refs:rhsCols (Results 1 – 5 of 5) sorted by relevance
/external/eigen/Eigen/src/SparseCore/ |
D | SparseSolverBase.h | 29 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/ |
D | sparse_solver.h | 286 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/ |
D | IterativeSolverBase.h | 338 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/ |
D | SuperLUSupport.h | 654 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/ |
D | UmfPackSupport.h | 475 Index rhsCols = b.cols(); in _solve_impl() local 488 for (int j=0; j<rhsCols; ++j) in _solve_impl()
|