Searched refs:ComputeThinU (Results 1 – 12 of 12) sorted by relevance
/external/eigen/test/ |
D | svd_common.h | 80 if(computationOptions & (ComputeFullU|ComputeThinU)) in svd_compare_to_full() 92 …if(computationOptions & ComputeThinU) VERIFY_IS_APPROX(svd.matrixU(), referenceSvd.matrixU().left… in svd_compare_to_full() 251 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeFullV, fullSvd) )); in svd_test_all_computation_options() 252 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU , fullSvd) )); in svd_test_all_computation_options() 253 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd) )); in svd_test_all_computation_options() 256 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeThinU | ComputeFullV) )); in svd_test_all_computation_options() 257 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeThinU | ComputeThinV) )); in svd_test_all_computation_options() 260 CALL_SUBTEST(( svd_min_norm(m, ComputeThinU | ComputeFullV) )); in svd_test_all_computation_options() 261 CALL_SUBTEST(( svd_min_norm(m, ComputeThinU | ComputeThinV) )); in svd_test_all_computation_options() 266 SvdType svd(m, ComputeThinU | ComputeThinV); in svd_test_all_computation_options() [all …]
|
D | jacobisvd.cpp | 55 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV)) in jacobisvd_verify_assert() 56 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV)) in jacobisvd_verify_assert()
|
D | bdcsvd.cpp | 60 if(computationOptions & ComputeThinU) VERIFY_IS_APPROX(bdc_svd.matrixU(), jacobi_svd.matrixU()); in compare_bdc_jacobi()
|
D | qr_colpivoting.cpp | 57 JacobiSVD<MatrixType> svd(matrix, ComputeThinU | ComputeThinV); in cod()
|
/external/eigen/lapack/ |
D | svd.cpp | 52 : *jobz=='S' ? ComputeThinU|ComputeThinV 53 : *jobz=='O' ? ComputeThinU|ComputeThinV 121 int option = (*jobu=='A' ? ComputeFullU : *jobu=='S' || *jobu=='O' ? ComputeThinU : 0)
|
/external/eigen/doc/examples/ |
D | TutorialLinAlgSVDSolve.cpp | 14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl; in main()
|
/external/eigen/doc/snippets/ |
D | JacobiSVD_basic.cpp | 3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
|
/external/tensorflow/tensorflow/core/kernels/ |
D | svd_op_impl.h | 86 : Eigen::ComputeThinU | Eigen::ComputeThinV; in ComputeMatrix()
|
/external/eigen/Eigen/src/Core/util/ |
D | Constants.h | 385 ComputeThinU = 0x08, enumerator
|
/external/eigen/Eigen/src/SVD/ |
D | SVDBase.h | 293 m_computeThinU = (computationOptions & ComputeThinU) != 0; in allocate()
|
D | JacobiSVD.h | 631 m_computeThinU = (computationOptions & ComputeThinU) != 0;
|
/external/eigen/bench/ |
D | dense_solvers.cpp | 41 int svd_opt = ComputeThinU|ComputeThinV; in bench()
|