Lines Matching refs:ComputeThinU
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()
287 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU)) in jacobisvd_verify_assert()