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.
CMSIS-DSP/Testing/Include/Tests/InterpolationTestsQ15.h

19 lines
693 B
C++

#include "Test.h"
#include "Pattern.h"
class InterpolationTestsQ15:public Client::Suite
{
public:
InterpolationTestsQ15(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 "InterpolationTestsQ15_decl.h"
Client::Pattern<q31_t> input;
Client::Pattern<q15_t> y;
Client::LocalPattern<q15_t> output;
// Reference patterns are not loaded when we are in dump mode
Client::RefPattern<q15_t> ref;
};