Home
last modified time | relevance | path

Searched refs:m_computeThinU (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SVD/
DSVDBase.h188 inline bool computeU() const { return m_computeFullU || m_computeThinU; } in computeU()
233 bool m_computeFullU, m_computeThinU; variable
293 m_computeThinU = (computationOptions & ComputeThinU) != 0; in allocate()
296 …eigen_assert(!(m_computeFullU && m_computeThinU) && "SVDBase: you can't ask for both full and thin… in allocate()
298 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami… in allocate()
304 m_matrixU.resize(m_rows, m_computeFullU ? m_rows : m_computeThinU ? m_diagSize : 0); in allocate()
DJacobiSVD.h167 else if (svd.m_computeThinU) m_workspace.resize(svd.cols()); in allocate()
177 else if(svd.m_computeThinU) in run()
266 else if (svd.m_computeThinU) m_workspace.resize(svd.cols()); in allocate()
276 else if(svd.m_computeThinU) in run()
591 using Base::m_computeThinU;
631 m_computeThinU = (computationOptions & ComputeThinU) != 0;
634 …eigen_assert(!(m_computeFullU && m_computeThinU) && "JacobiSVD: you can't ask for both full and th…
636 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami…
640 eigen_assert(!(m_computeThinU || m_computeThinV) &&
648 : m_computeThinU ? m_diagSize
[all …]
DJacobiSVD_LAPACKE.h57 jobu = (m_computeFullU) ? 'A' : (m_computeThinU) ? 'S' : 'N'; \
DBDCSVD.h201 using Base::m_computeThinU;
317 Index Ucols = m_computeThinU ? m_diagSize : householderU.cols();