Searched refs:fullSvd (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/test/ |
D | svd_common.h | 106 void svd_test_computation_options_1(const MatrixType& m, const SVD& fullSvd) in svd_test_computation_options_1() argument 108 svd_check_full< MatrixType, SVD >(m, fullSvd); in svd_test_computation_options_1() 114 void svd_test_computation_options_2(const MatrixType& m, const SVD& fullSvd) in svd_test_computation_options_2() argument 116 svd_compare_to_full< MatrixType, SVD >(m, ComputeFullU, fullSvd); in svd_test_computation_options_2() 117 svd_compare_to_full< MatrixType, SVD >(m, ComputeFullV, fullSvd); in svd_test_computation_options_2() 118 svd_compare_to_full< MatrixType, SVD >(m, 0, fullSvd); in svd_test_computation_options_2() 123 svd_compare_to_full< MatrixType, SVD >(m, ComputeFullU|ComputeThinV, fullSvd); in svd_test_computation_options_2() 124 svd_compare_to_full< MatrixType, SVD >(m, ComputeThinV, fullSvd); in svd_test_computation_options_2() 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() [all …]
|
D | jacobisvd.cpp | 43 JacobiSVD< MatrixType, QRPreconditioner > fullSvd(m, ComputeFullU|ComputeFullV); in jacobisvd_test_all_computation_options() local 44 …vd_test_computation_options_1< MatrixType, JacobiSVD< MatrixType, QRPreconditioner > >(m, fullSvd); in jacobisvd_test_all_computation_options() 48 …vd_test_computation_options_2< MatrixType, JacobiSVD< MatrixType, QRPreconditioner > >(m, fullSvd); in jacobisvd_test_all_computation_options()
|
D | bdcsvd.cpp | 45 BDCSVD<MatrixType> fullSvd(m, ComputeFullU|ComputeFullV); in bdcsvd_test_all_computation_options() local 46 svd_test_computation_options_1< MatrixType, BDCSVD< MatrixType > >(m, fullSvd); in bdcsvd_test_all_computation_options() 47 svd_test_computation_options_2< MatrixType, BDCSVD< MatrixType > >(m, fullSvd); in bdcsvd_test_all_computation_options()
|
/external/eigen/test/ |
D | jacobisvd.cpp | 176 JacobiSVD<MatrixType, QRPreconditioner> fullSvd(m, ComputeFullU|ComputeFullV); in jacobisvd_test_all_computation_options() local 177 CALL_SUBTEST(( jacobisvd_check_full(m, fullSvd) )); in jacobisvd_test_all_computation_options() 187 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeFullU, fullSvd) )); in jacobisvd_test_all_computation_options() 188 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeFullV, fullSvd) )); in jacobisvd_test_all_computation_options() 189 CALL_SUBTEST(( jacobisvd_compare_to_full(m, 0, fullSvd) )); in jacobisvd_test_all_computation_options() 193 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeFullU|ComputeThinV, fullSvd) )); in jacobisvd_test_all_computation_options() 194 CALL_SUBTEST(( jacobisvd_compare_to_full(m, ComputeThinV, fullSvd) )); in jacobisvd_test_all_computation_options() 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()
|