Mentions légales du service

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

Redefine TransformHelperButterfly::to_string to show butterfly opt flag.

 #275
parent 54ed2916
No related branches found
No related tags found
No related merge requests found
Pipeline #834115 skipped
......@@ -46,6 +46,7 @@ namespace Faust
public:
std::string to_string() const;
Vect<FPP, Cpu> multiply(const Vect<FPP, Cpu>& x);
void multiply(const FPP* x, FPP* y);
Vect<FPP,Cpu> multiply(const FPP* x);
......
......@@ -36,6 +36,15 @@ namespace Faust
}
}
template<typename FPP>
std::string TransformHelperButterfly<FPP,Cpu>::to_string() const
{
auto str = TransformHelper<FPP,Cpu>::to_string();
str += "- Butterfly structure optimized\r\n";
return str;
}
template<typename FPP>
TransformHelper<FPP,Cpu>* TransformHelperButterfly<FPP,Cpu>::fourierFaust(unsigned int n, const bool norma)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment