HomeSort by relevance Sort by last modified time
    Searched refs:rhsCols (Results 1 - 5 of 5) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparseSolverBase.h 29 Index rhsCols = rhs.cols();
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);
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 338 Index rhsCols = b.cols();
346 typename DestDerived::PlainObject tmp(cols(),rhsCols);
347 for(Index k=0; k<rhsCols; ++k)
  /external/eigen/test/
sparse_solver.h 286 int rhsCols = internal::random<int>(1,16);
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);
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);
549 DenseMatrix dB(A.rows(),rhsCols);
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 654 const Index rhsCols = b.cols();
662 m_sluFerr.resize(rhsCols);
663 m_sluBerr.resize(rhsCols);
    [all...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 475 Index rhsCols = b.cols();
488 for (int j=0; j<rhsCols; ++j)

Completed in 3371 milliseconds