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
No related branches found
No related tags found
No related merge requests found
...@@ -349,7 +349,7 @@ namespace Faust ...@@ -349,7 +349,7 @@ namespace Faust
x_nrows = this->getNbRow(); x_nrows = this->getNbRow();
else else
x_nrows = this->getNbCol(); 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 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) // 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; 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