CMSIS-DSP: Removed build warnings for tests.

pull/19/head
Christophe Favergeon 5 years ago
parent af027f97c5
commit fa73bb9825

@ -97,4 +97,6 @@
void BIQUADF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void BIQUADF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -93,4 +93,6 @@
void BasicMathsBenchmarksF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void BasicMathsBenchmarksF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -75,5 +75,6 @@
void BayesF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void BayesF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id; (void)id;
(void)mgr;
this->nb++; this->nb++;
} }

@ -56,4 +56,6 @@
void BinaryF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void BinaryF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -79,4 +79,6 @@
void ComplexMathsBenchmarksF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void ComplexMathsBenchmarksF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -119,4 +119,5 @@
void DistanceF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void DistanceF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id; (void)id;
(void)mgr;
} }

@ -43,4 +43,6 @@
void FIRF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void FIRF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -31,7 +31,7 @@
void FastMathF16::setUp(Testing::testID_t id,std::vector<Testing::param_t>& params,Client::PatternMgr *mgr) void FastMathF16::setUp(Testing::testID_t id,std::vector<Testing::param_t>& params,Client::PatternMgr *mgr)
{ {
(void)id;
std::vector<Testing::param_t>::iterator it = params.begin(); std::vector<Testing::param_t>::iterator it = params.begin();
this->nbSamples = *it; this->nbSamples = *it;
@ -46,4 +46,6 @@
void FastMathF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void FastMathF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -49,4 +49,6 @@
void MISCF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void MISCF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -238,6 +238,7 @@ void SVMF16::setUp(Testing::testID_t id,std::vector<Testing::param_t>& testparam
void SVMF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void SVMF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)mgr;
switch(id) switch(id)
{ {
case SVMF16::TEST_SVM_LINEAR_PREDICT_F16_1: case SVMF16::TEST_SVM_LINEAR_PREDICT_F16_1:

@ -186,5 +186,5 @@
void StatsF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void StatsF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id; (void)id;
(void)mgr;
} }

@ -39,4 +39,7 @@
void SupportBarF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void SupportBarF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -72,4 +72,6 @@
void SupportF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void SupportF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -104,4 +104,6 @@
void TransformF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void TransformF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -272,4 +272,6 @@ static int cholesky_offset(int d)
void UnaryF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr) void UnaryF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{ {
(void)id;
(void)mgr;
} }

@ -89,7 +89,7 @@ static int cholesky_offset(int d)
arm_mat_solve_lower_triangular_f32(&this->in1,&this->in2,&this->out); arm_mat_solve_lower_triangular_f32(&this->in1,&this->in2,&this->out);
} }
void UnaryF32::test_ldlt_decomposition() void UnaryF32::test_ldlt_decomposition_f32()
{ {
arm_mat_ldlt_f32(&this->in1,&this->outll,&this->outd,(uint16_t*)outp); arm_mat_ldlt_f32(&this->in1,&this->outll,&this->outd,(uint16_t*)outp);
} }
@ -257,7 +257,7 @@ static int cholesky_offset(int d)
} }
break; break;
case TEST_LDLT_DECOMPOSITION_11: case TEST_LDLT_DECOMPOSITION_F32_11:
{ {
float32_t *p, *aPtr; float32_t *p, *aPtr;

@ -1308,7 +1308,7 @@ group Root {
Cholesky decomposition:test_mat_cholesky_dpo_f32 -> PARAM_CHOLESKY_ID Cholesky decomposition:test_mat_cholesky_dpo_f32 -> PARAM_CHOLESKY_ID
Backward substitution:test_solve_upper_triangular_f32 -> PARAM_CHOLESKY_ID Backward substitution:test_solve_upper_triangular_f32 -> PARAM_CHOLESKY_ID
Foward substitution:test_solve_lower_triangular_f32 -> PARAM_CHOLESKY_ID Foward substitution:test_solve_lower_triangular_f32 -> PARAM_CHOLESKY_ID
LDLT decomposition:test_ldlt_decomposition -> PARAM_CHOLESKY_ID LDLT decomposition:test_ldlt_decomposition_f32 -> PARAM_CHOLESKY_ID
} -> PARAM1_ID } -> PARAM1_ID
} }

@ -490,11 +490,11 @@ group Root {
Pattern REFLDLT_D_DPO1_F16_ID : RefLDLT_D_DPO1_f16.txt Pattern REFLDLT_D_DPO1_F16_ID : RefLDLT_D_DPO1_f16.txt
Pattern REFLDLT_LL_DPO1_F16_ID : RefLDLT_LL_DPO1_f16.txt Pattern REFLDLT_LL_DPO1_F16_ID : RefLDLT_LL_DPO1_f16.txt
Pattern REFLDLT_PERM_DPO1_F16_ID : RefLDLT_PERM_DPO1_f16.txt Pattern REFLDLT_PERM_DPO1_F16_ID : RefLDLT_PERM_DPO1_s16.txt
Pattern REFLDLT_D_SDPO1_F16_ID : RefLDLT_D_SDPO1_f16.txt Pattern REFLDLT_D_SDPO1_F16_ID : RefLDLT_D_SDPO1_f16.txt
Pattern REFLDLT_LL_SDPO1_F16_ID : RefLDLT_LL_SDPO1_f16.txt Pattern REFLDLT_LL_SDPO1_F16_ID : RefLDLT_LL_SDPO1_f16.txt
Pattern REFLDLT_PERM_SDPO1_F16_ID : RefLDLT_PERM_SDPO1_f16.txt Pattern REFLDLT_PERM_SDPO1_F16_ID : RefLDLT_PERM_SDPO1_s16.txt
Pattern INPUT_UT_DPO_F16_ID : InputUTDPO1_f16.txt Pattern INPUT_UT_DPO_F16_ID : InputUTDPO1_f16.txt
Pattern INPUT_LT_DPO_F16_ID : InputLTDPO1_f16.txt Pattern INPUT_LT_DPO_F16_ID : InputLTDPO1_f16.txt

@ -106,11 +106,13 @@ INSERT INTO CORE VALUES(13,"a15","ARMCA15");
INSERT INTO CORE VALUES(14,"m55mvef","ARMv81MML_DSP_DP_MVE_FP"); INSERT INTO CORE VALUES(14,"m55mvef","ARMv81MML_DSP_DP_MVE_FP");
# Second item is text as displayed in UI /*
# Third is CONFIGID generated by run script Second item is text as displayed in UI
# and different from COREID as was used before Third is CONFIGID generated by run script
# Above we have entries with COREIDs but it is and different from COREID as was used before
# no more used Above we have entries with COREIDs but it is
no more used
*/
INSERT INTO CORE VALUES(15,"m0","M0"); INSERT INTO CORE VALUES(15,"m0","M0");
INSERT INTO CORE VALUES(16,"m7","M7"); INSERT INTO CORE VALUES(16,"m7","M7");
INSERT INTO CORE VALUES(17,"m33","M33"); INSERT INTO CORE VALUES(17,"m33","M33");
@ -121,7 +123,7 @@ INSERT INTO CORE VALUES(21,"r8","R8");
INSERT INTO CORE VALUES(22,"r5","R5"); INSERT INTO CORE VALUES(22,"r5","R5");
INSERT INTO CORE VALUES(23,"a32","A32"); INSERT INTO CORE VALUES(23,"a32","A32");
INSERT INTO CORE VALUES(24,"r52","R52"); INSERT INTO CORE VALUES(24,"r52","R52");
INSERT INTO CORE VALUES(25,"'m55 autovec","M55AUTOVEC"); INSERT INTO CORE VALUES(25,"m55 autovec","M55AUTOVEC");
.quit .quit

Loading…
Cancel
Save