Home | History | Annotate | Download | only in test

Lines Matching refs:ComputeThinU

80   if(computationOptions & (ComputeFullU|ComputeThinU))
92 if(computationOptions & ComputeThinU) VERIFY_IS_APPROX(svd.matrixU(), referenceSvd.matrixU().leftCols(diagSize));
251 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeFullV, fullSvd) ));
252 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU , fullSvd) ));
253 CALL_SUBTEST(( svd_compare_to_full(m, ComputeThinU|ComputeThinV, fullSvd) ));
256 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeThinU | ComputeFullV) ));
257 CALL_SUBTEST(( svd_least_square<SvdType>(m, ComputeThinU | ComputeThinV) ));
260 CALL_SUBTEST(( svd_min_norm(m, ComputeThinU | ComputeFullV) ));
261 CALL_SUBTEST(( svd_min_norm(m, ComputeThinU | ComputeThinV) ));
266 SvdType svd(m, ComputeThinU | ComputeThinV);
466 svd.compute(a, ComputeThinU);
477 VERIFY_RAISES_ASSERT(svd.compute(a, ComputeThinU))