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.
19 lines
687 B
C++
19 lines
687 B
C++
#include "Test.h"
|
|
#include "Pattern.h"
|
|
class InterpolationTestsQ7:public Client::Suite
|
|
{
|
|
public:
|
|
InterpolationTestsQ7(Testing::testID_t id);
|
|
virtual void setUp(Testing::testID_t,std::vector<Testing::param_t>& params,Client::PatternMgr *mgr);
|
|
virtual void tearDown(Testing::testID_t,Client::PatternMgr *mgr);
|
|
private:
|
|
#include "InterpolationTestsQ7_decl.h"
|
|
|
|
Client::Pattern<q31_t> input;
|
|
Client::Pattern<q7_t> y;
|
|
Client::LocalPattern<q7_t> output;
|
|
// Reference patterns are not loaded when we are in dump mode
|
|
Client::RefPattern<q7_t> ref;
|
|
|
|
};
|