Reduce compiler memory consumption for SVD unit tests

This commit is contained in:
Gael Guennebaud
2015-06-22 09:58:06 +02:00
parent 40821876ea
commit b3b3dcad05
3 changed files with 6 additions and 4 deletions

View File

@@ -114,7 +114,7 @@ void test_jacobisvd()
CALL_SUBTEST_7( JacobiSVD<MatrixXf>(10,10) );
// Check that preallocation avoids subsequent mallocs
CALL_SUBTEST_9( svd_preallocate() );
CALL_SUBTEST_9( svd_preallocate<void>() );
CALL_SUBTEST_2( svd_underoverflow() );
CALL_SUBTEST_2( svd_underoverflow<void>() );
}