Lines Matching refs:ComputeThinU
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()
466 svd.compute(a, ComputeThinU); in svd_verify_assert()
477 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU)) in svd_verify_assert()