Mentions légales du service

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

Fix GPU2 TransformHelper vertcat/horzcat.

parent df5e2377
No related branches found
No related tags found
No related merge requests found
......@@ -450,7 +450,7 @@ namespace Faust
TransformHelper<FPP,Cpu> th;
TransformHelper<FPP,Cpu> thG;
this->tocpu(th);
this->tocpu(thG);
G->tocpu(thG);
auto th_out = th.vertcat(&thG);
auto gpu_th_out = new TransformHelper<FPP,GPU2>(*th_out, -1, nullptr);
delete th_out;
......@@ -463,7 +463,7 @@ namespace Faust
TransformHelper<FPP,Cpu> th;
TransformHelper<FPP,Cpu> thG;
this->tocpu(th);
this->tocpu(thG);
G->tocpu(thG);
auto th_out = th.horzcat(&thG);
auto gpu_th_out = new TransformHelper<FPP,GPU2>(*th_out, -1, nullptr);
delete th_out;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment