Searched refs:ComputeThinU (Results 1 – 10 of 10) sorted by relevance
/external/eigen/unsupported/test/ |
D | svd_common.h | 69 if(computationOptions & ComputeThinU) in svd_compare_to_full() 125 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU|ComputeFullV, fullSvd); in svd_test_computation_options_2() 126 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU , fullSvd); in svd_test_computation_options_2() 127 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinU|ComputeThinV, fullSvd); in svd_test_computation_options_2() 129 svd_solve<MatrixType, SVD>(m, ComputeThinU | ComputeFullV); in svd_test_computation_options_2() 130 svd_solve<MatrixType, SVD>(m, ComputeThinU | ComputeThinV); in svd_test_computation_options_2() 134 SVD svd(m, ComputeThinU | ComputeThinV); in svd_test_computation_options_2() 169 svd.compute(a, ComputeThinU); in svd_verify_assert() 180 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU)) in svd_verify_assert()
|
D | jacobisvd.cpp | 86 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV)) in jacobisvd_verify_assert() 87 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV)) in jacobisvd_verify_assert()
|
D | bdcsvd.cpp | 94 if(computationOptions & ComputeThinU) in compare_bdc_jacobi()
|
/external/eigen/test/ |
D | jacobisvd.cpp | 58 if(computationOptions & ComputeThinU) in jacobisvd_compare_to_full() 195 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU|ComputeFullV, fullSvd) )); in jacobisvd_test_all_computation_options() 196 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU , fullSvd) )); in jacobisvd_test_all_computation_options() 197 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd) )); in jacobisvd_test_all_computation_options() 199 CALL_SUBTEST(( jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeThinU | ComputeFullV) )); in jacobisvd_test_all_computation_options() 200 CALL_SUBTEST(( jacobisvd_solve<MatrixType, QRPreconditioner>(m, ComputeThinU | ComputeThinV) )); in jacobisvd_test_all_computation_options() 205 JacobiSVD<MatrixType, QRPreconditioner> svd(m, ComputeThinU | ComputeThinV); in jacobisvd_test_all_computation_options() 270 svd.compute(a, ComputeThinU); in jacobisvd_verify_assert() 282 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeThinV)) in jacobisvd_verify_assert() 283 VERIFY_RAISES_ASSERT(svd_fullqr.compute(a, ComputeThinU|ComputeFullV)) in jacobisvd_verify_assert() [all …]
|
/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/eigen/Eigen/src/Core/util/ |
D | Constants.h | 329 ComputeThinU = 0x08, enumerator
|
/external/eigen/unsupported/Eigen/src/SVD/ |
D | SVDBase.h | 212 m_computeThinU = (computationOptions & ComputeThinU) != 0; in allocate()
|
/external/ceres-solver/internal/ceres/ |
D | covariance_impl.cc | 589 Eigen::ComputeThinU | Eigen::ComputeThinV); in ComputeCovarianceValuesUsingDenseSVD()
|
/external/eigen/Eigen/src/SVD/ |
D | JacobiSVD.h | 792 m_computeThinU = (computationOptions & ComputeThinU) != 0;
|