Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/src/SVD/
DSVDBase.h157 inline bool computeV() const { return m_computeFullV || m_computeThinV; } in computeV()
173 bool m_computeFullV, m_computeThinV; variable
214 m_computeThinV = (computationOptions & ComputeThinV) != 0; in allocate()
216 …eigen_assert(!(m_computeFullV && m_computeThinV) && "SVDBase: you can't ask for both full and thin… in allocate()
217 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami… in allocate()
228 : m_computeThinV ? m_diagSize in allocate()
DJacobiSVD.h222 else if (svd.m_computeThinV) m_workspace.resize(svd.rows()); in allocate()
235 else if(svd.m_computeThinV) in run()
321 else if (svd.m_computeThinV) m_workspace.resize(svd.rows()); in allocate()
334 else if(svd.m_computeThinV) in run()
627 eigen_assert(!(this->m_computeThinU || this->m_computeThinV) &&
660 if(this->m_computeThinV) this->m_matrixV.setIdentity(this->m_cols, this->m_diagSize);
DBDCSVD.h246 this->m_computeThinU = this->m_computeThinV; in allocate()
247 this->m_computeThinV = aux; in allocate()
337 if (this->m_computeThinV){ in copyUV()
/external/eigen/Eigen/src/SVD/
DJacobiSVD.h222 else if (svd.m_computeThinV) m_workspace.resize(svd.rows()); in allocate()
235 else if(svd.m_computeThinV) in run()
321 else if (svd.m_computeThinV) m_workspace.resize(svd.rows()); in allocate()
334 else if(svd.m_computeThinV) in run()
650 inline bool computeV() const { return m_computeFullV || m_computeThinV; }
753 bool m_computeFullV, m_computeThinV;
789 m_computeThinV = (computationOptions & ComputeThinV) != 0;
791 …eigen_assert(!(m_computeFullV && m_computeThinV) && "JacobiSVD: you can't ask for both full and th…
792 …eigen_assert(EIGEN_IMPLIES(m_computeThinU || m_computeThinV, MatrixType::ColsAtCompileTime==Dynami…
796 eigen_assert(!(m_computeThinU || m_computeThinV) &&
[all …]
DJacobiSVD_MKL.h60 jobvt = (m_computeFullV) ? 'A' : (m_computeThinV) ? 'S' : 'N'; \
66 ldvt = (m_computeFullV) ? m_cols : (m_computeThinV) ? m_diagSize : 1; \