Home
last modified time | relevance | path

Searched refs:ComputeThinU (Results 1 – 10 of 10) sorted by relevance

/external/eigen/unsupported/test/
Dsvd_common.h69 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()
Djacobisvd.cpp86 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()
Dbdcsvd.cpp94 if(computationOptions & ComputeThinU) in compare_bdc_jacobi()
/external/eigen/test/
Djacobisvd.cpp58 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/
DTutorialLinAlgSVDSolve.cpp14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl; in main()
/external/eigen/doc/snippets/
DJacobiSVD_basic.cpp3 JacobiSVD<MatrixXf> svd(m, ComputeThinU | ComputeThinV);
/external/eigen/Eigen/src/Core/util/
DConstants.h329 ComputeThinU = 0x08, enumerator
/external/eigen/unsupported/Eigen/src/SVD/
DSVDBase.h212 m_computeThinU = (computationOptions & ComputeThinU) != 0; in allocate()
/external/ceres-solver/internal/ceres/
Dcovariance_impl.cc589 Eigen::ComputeThinU | Eigen::ComputeThinV); in ComputeCovarianceValuesUsingDenseSVD()
/external/eigen/Eigen/src/SVD/
DJacobiSVD.h792 m_computeThinU = (computationOptions & ComputeThinU) != 0;