Skip to content
Snippets Groups Projects
Commit c06080c9 authored by Marcin Kirsz's avatar Marcin Kirsz
Browse files

Merge branch 'develop' into 'main'

Removed c++17 struct bindings as MODELS is c++11

See merge request !6
parents 9a91f913 9bf0123b
No related branches found
No related tags found
2 merge requests!13Main,!6Removed c++17 struct bindings as MODELS is c++11
Pipeline #48340 failed
......@@ -72,11 +72,11 @@ TEST_CASE("SVD Numeric Accuracy - Column-Major Order") {
double* S = svd.getS();
double* VT = svd.getVT();
auto [ldu, ucol] = svd.shapeU();
auto [ldvt, n] = svd.shapeVT();
int m = svd.shapeU().first;
int n = svd.shapeU().second;
Matrix mU (U, ldu,ucol);
Matrix mVT (VT,ldvt,n);
Matrix mU (U, m,n);
Matrix mVT (VT,n,n);
aed_type2 vec(S, n);
REQUIRE_THAT(16.848103352614209, Catch::Matchers::WithinRel(S[0]));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment