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/Softmax.h

25 lines
729 B
C++

#include "Test.h"
#include "Pattern.h"
class Softmax:public Client::Suite
{
public:
Softmax(Testing::testID_t id);
void setUp(Testing::testID_t,std::vector<Testing::param_t>& paramsArgs,Client::PatternMgr *mgr);
void tearDown(Testing::testID_t,Client::PatternMgr *mgr);
private:
#include "Softmax_decl.h"
Client::Pattern<int16_t> dims;
Client::Pattern<q7_t> input;
Client::RefPattern<int16_t> ref;
Client::RefPattern<q7_t> samples;
Client::LocalPattern<int16_t> output;
Client::LocalPattern<q7_t> temp;
int nbSamples;
int vecDim;
};