Mentions légales du service

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

Fix missing transpose copy in assignment operator overload of MatButterfly<FPP, GPU2>.

parent 62e81648
Branches
Tags
No related merge requests found
......@@ -37,10 +37,11 @@ namespace Faust
this->d1 = bmat.d1;
this->d2 = bmat.d2;
this->d2t = bmat.d2t;
this->is_transp = bmat.is_transp;
this->level = bmat.level;
this->subdiag_ids = new int[d1.size()];
std::copy(bmat.subdiag_ids, bmat.subdiag_ids+d1.size(), this->subdiag_ids);
if(bmat.is_transp)
transpose();
return *this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment