CMSIS-NN: First untested version of arm_nn_elementwise_add_s8.
parent
1c97f73bd3
commit
29d61b19e9
@ -0,0 +1,14 @@
|
|||||||
|
#include "Test.h"
|
||||||
|
#include "Pattern.h"
|
||||||
|
class NNSupport:public Client::Suite
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
NNSupport(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 "NNSupport_decl.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
@ -0,0 +1,39 @@
|
|||||||
|
#include "NNSupport.h"
|
||||||
|
#include "Error.h"
|
||||||
|
#include "arm_nnfunctions.h"
|
||||||
|
#include "Test.h"
|
||||||
|
|
||||||
|
#include <cstdio>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void NNSupport::test_nn_elementwise_add_s8()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void NNSupport::setUp(Testing::testID_t id,std::vector<Testing::param_t>& paramsArgs,Client::PatternMgr *mgr)
|
||||||
|
{
|
||||||
|
|
||||||
|
switch(id)
|
||||||
|
{
|
||||||
|
case NNSupport::TEST_NN_ELEMENTWISE_ADD_S8_1:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void NNSupport::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue