You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
734 B
C++
27 lines
734 B
C++
#include "Test.h"
|
|
#include "Pattern.h"
|
|
|
|
#include "dsp/transform_functions.h"
|
|
|
|
class TransformCF64:public Client::Suite
|
|
{
|
|
public:
|
|
TransformCF64(Testing::testID_t id);
|
|
virtual void setUp(Testing::testID_t,std::vector<Testing::param_t>& paramsArgs,Client::PatternMgr *mgr);
|
|
virtual void tearDown(Testing::testID_t,Client::PatternMgr *mgr);
|
|
private:
|
|
#include "TransformCF64_decl.h"
|
|
|
|
Client::Pattern<float64_t> input;
|
|
Client::LocalPattern<float64_t> outputfft;
|
|
|
|
Client::RefPattern<float64_t> ref;
|
|
|
|
arm_cfft_instance_f64 varInstCfftF64;
|
|
|
|
int ifft;
|
|
|
|
arm_status status;
|
|
|
|
};
|