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.
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
#include "Test.h"
|
|
#include "Pattern.h"
|
|
|
|
#include "dsp/support_functions.h"
|
|
|
|
class SupportTestsF64:public Client::Suite
|
|
{
|
|
public:
|
|
SupportTestsF64(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 "SupportTestsF64_decl.h"
|
|
|
|
Client::Pattern<float64_t> input;
|
|
Client::Pattern<float64_t> coefs;
|
|
Client::LocalPattern<float64_t> buffer;
|
|
|
|
Client::LocalPattern<float64_t> output;
|
|
Client::LocalPattern<q15_t> outputQ15;
|
|
Client::LocalPattern<q31_t> outputQ31;
|
|
Client::LocalPattern<q7_t> outputQ7;
|
|
|
|
// Reference patterns are not loaded when we are in dump mode
|
|
Client::RefPattern<float64_t> ref;
|
|
Client::RefPattern<q15_t> refQ15;
|
|
Client::RefPattern<q31_t> refQ31;
|
|
Client::RefPattern<q7_t> refQ7;
|
|
|
|
int nbSamples;
|
|
int offset;
|
|
|
|
};
|