Mentions légales du service

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

Update GPU power iteration algorithm to support complex Faust.

It's just the use of adjoint Faust instead of just the transpose.
parent 2d57ef77
No related branches found
No related tags found
No related merge requests found
......@@ -415,7 +415,7 @@ namespace Faust
@FAUST_SCALAR_FOR_GM@ beta = 0.0;
//TODO: consider the optimal order: FF'*xk or F'F*xk
gm_Op op = OP_NOTRANSP;
gm_Op op2 = OP_TRANSP; //TODO: complex case //verify if OP_CONJTRANSP is more costful
gm_Op op2 = OP_CONJTRANSP;
// if(transpose)
// if(conjugate)
// op = OP_CONJTRANSP;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment