Mentions légales du service

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

Fix GPU faust core compiling error due to missing...

Fix GPU faust core compiling error due to missing TransformHelperButterfly<FPP,GPU2>::optFaust function (implemented only on CPU).
parent e3d8a160
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,8 @@ namespace Faust
//
public:
static TransformHelperButterfly<FPP,GPU2>* fourierFaust(unsigned int n, const bool norma=true) { throw std::runtime_error("Not yet implemented on GPU");};
static TransformHelper<FPP,GPU2>* fourierFaust(unsigned int n, const bool norma=true) { throw std::runtime_error("Not yet implemented on GPU");};
static TransformHelper<FPP,GPU2>* optFaust(const TransformHelper<FPP, GPU2>* F) { throw std::runtime_error("Not yet implemented on GPU");};
// Vect<FPP, GPU2> multiply(const Vect<FPP, GPU2>& x);
// void multiply(const FPP* x, FPP* y);
// Vect<FPP,GPU2> multiply(const FPP* x);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment