Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f5b3cee3 authored by hhakim's avatar hhakim
Browse files

Fix GPU batched SVD test in case of complex matrix.

parent 0a81d1bc
No related branches found
No related tags found
No related merge requests found
Pipeline #848104 passed
...@@ -41,7 +41,7 @@ void test_batched_full_svd() ...@@ -41,7 +41,7 @@ void test_batched_full_svd()
SD.getData()[j * m + j] = (*S)(j); SD.getData()[j * m + j] = (*S)(j);
auto E = *A; auto E = *A;
auto P = *U; auto P = *U;
P.multiplyRight(SD); P.multiplyRight(SD.cast<FPP>());
V->adjoint(); V->adjoint();
P.multiplyRight(*V); P.multiplyRight(*V);
E -= P; E -= P;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment