CMSIS-NN: First untested version of arm_nn_elementwise_add_s8.

pull/19/head
Christophe Favergeon 6 years ago
parent 1c97f73bd3
commit 29d61b19e9

@ -116,6 +116,7 @@ set(TESTSRC
Source/Tests/FullyConnected.cpp
Source/Tests/Pooling.cpp
Source/Tests/Softmax.cpp
Source/Tests/NNSupport.cpp
)
target_include_directories(TestingLib PRIVATE Include/Tests)

@ -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)
{
}

@ -464,6 +464,15 @@ group Root {
arm_softmax_with_batch_q7 Test 2:test_softmax_with_batch_q7
}
}
suite NNSupport {
class = NNSupport
folder = SupportQ7
Functions {
test_nn_elementwise_add_s8 Test 1:test_nn_elementwise_add_s8
}
}
}
}

Loading…
Cancel
Save