| 123456789101112131415161718192021222324252627282930313233343536 |
- #include "Test.h"
- #include "Pattern.h"
- #include "dsp/transform_functions.h"
- class TransformCQ31:public Client::Suite
- {
- public:
- TransformCQ31(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 "TransformCQ31_decl.h"
-
- Client::Pattern<q31_t> input;
- Client::LocalPattern<q31_t> outputfft;
- Client::LocalPattern<q31_t> outputifft;
- Client::RefPattern<q31_t> ref;
- arm_cfft_instance_q31 instCfftQ31;
- int ifft;
- /*
- ifft pattern is using the output of the fft and the input of the fft.
- Since output of the fft is scaled, the input is not recovered without an additional scaling.
- */
- int scaling;
- arm_status status;
-
- };
|