Mentions légales du service

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

Fix windows compiling issue #190.

parent 31c5ebbd
Branches
Tags
No related merge requests found
......@@ -349,7 +349,7 @@ namespace Faust
x_nrows = this->getNbRow();
else
x_nrows = this->getNbCol();
MatDense<FPP,GPU2> gpu_x(x_nrows, x_ncols, cpu_x_buf);
MatDense<FPP,GPU2> gpu_x(x_nrows, x_ncols, cpu_x_buf, false);
MatDense<FPP,GPU2> gpu_M = this->multiply(gpu_x, transpose, conjugate); //TODO: handle transpose and conjugate
// TODO: fix this function, it works until here then it segfaults or gives a cuda error with tocpu (even if I use a cpu matdense set locally)
this->is_transposed ^= transpose;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment