| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- #include "SupportTestsF16.h"
- #include <stdlib.h>
- #include <stdio.h>
- #include "Error.h"
- #include "Test.h"
- #define SNR_THRESHOLD 120
- #define REL_ERROR (1.0e-5)
- #define ABS_WEIGHTEDSUM_ERROR (1.0e-1)
- #define REL_WEIGHTEDSUM_ERROR (5.0e-3)
- #define ABS_ERROR_F32 (1.0e-3)
- #define REL_ERROR_F32 (1.0e-3)
- #define ABS_Q15_ERROR ((q15_t)10)
- #define ABS_Q31_ERROR ((q31_t)80)
- #define ABS_Q7_ERROR ((q7_t)10)
- void SupportTestsF16::test_weighted_sum_f16()
- {
- const float16_t *inp = input.ptr();
- const float16_t *coefsp = coefs.ptr();
- float16_t *refp = ref.ptr();
- float16_t *outp = output.ptr();
-
-
- *outp=arm_weighted_sum_f16(inp, coefsp,this->nbSamples);
- ASSERT_CLOSE_ERROR(*outp,refp[this->offset],ABS_WEIGHTEDSUM_ERROR,REL_WEIGHTEDSUM_ERROR);
- ASSERT_EMPTY_TAIL(output);
- }
- void SupportTestsF16::test_copy_f16()
- {
- const float16_t *inp = input.ptr();
- float16_t *outp = output.ptr();
-
-
- arm_copy_f16(inp, outp,this->nbSamples);
-
-
- ASSERT_EQ(input,output);
- ASSERT_EMPTY_TAIL(output);
- }
- void SupportTestsF16::test_fill_f16()
- {
- float16_t *outp = output.ptr();
- float16_t val = 1.1;
- int i;
-
- arm_fill_f16(val, outp,this->nbSamples);
-
-
- for(i=0 ; i < this->nbSamples; i++)
- {
- ASSERT_EQ(val,outp[i]);
- }
- ASSERT_EMPTY_TAIL(output);
- }
- void SupportTestsF16::test_f16_q15()
- {
- const float16_t *inp = input.ptr();
- q15_t *outp = outputQ15.ptr();
-
-
- arm_f16_to_q15(inp, outp,this->nbSamples);
-
-
- ASSERT_NEAR_EQ(refQ15,outputQ15,ABS_Q15_ERROR);
- ASSERT_EMPTY_TAIL(outputQ15);
- }
- void SupportTestsF16::test_f16_f32()
- {
- const float16_t *inp = input.ptr();
- float32_t *outp = outputF32.ptr();
-
-
- arm_f16_to_float(inp, outp,this->nbSamples);
-
-
- ASSERT_REL_ERROR(refF32,outputF32,REL_ERROR_F32);
- ASSERT_EMPTY_TAIL(outputF32);
- }
- void SupportTestsF16::test_q15_f16()
- {
- const q15_t *inp = inputQ15.ptr();
- float16_t *outp = output.ptr();
-
-
- arm_q15_to_f16(inp, outp,this->nbSamples);
-
-
- ASSERT_REL_ERROR(ref,output,REL_ERROR);
- ASSERT_EMPTY_TAIL(outputF32);
- }
- void SupportTestsF16::test_f32_f16()
- {
- const float32_t *inp = inputF32.ptr();
- float16_t *outp = output.ptr();
-
-
- arm_float_to_f16(inp, outp,this->nbSamples);
-
-
- ASSERT_REL_ERROR(ref,output,REL_ERROR);
- ASSERT_EMPTY_TAIL(outputF32);
- }
- void SupportTestsF16::setUp(Testing::testID_t id,std::vector<Testing::param_t>& paramsArgs,Client::PatternMgr *mgr)
- {
- (void)paramsArgs;
- switch(id)
- {
- case TEST_WEIGHTED_SUM_F16_1:
- this->nbSamples = 7;
- input.reload(SupportTestsF16::INPUTS_F16_ID,mgr,this->nbSamples);
- coefs.reload(SupportTestsF16::WEIGHTS_F16_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::REF_F16_ID,mgr);
- output.create(1,SupportTestsF16::OUT_F16_ID,mgr);
- this->offset=0;
- break;
- case TEST_WEIGHTED_SUM_F16_2:
- this->nbSamples = 16;
- input.reload(SupportTestsF16::INPUTS_F16_ID,mgr,this->nbSamples);
- coefs.reload(SupportTestsF16::WEIGHTS_F16_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::REF_F16_ID,mgr);
- output.create(1,SupportTestsF16::OUT_F16_ID,mgr);
- this->offset=1;
- break;
- case TEST_WEIGHTED_SUM_F16_3:
- this->nbSamples = 23;
- input.reload(SupportTestsF16::INPUTS_F16_ID,mgr,this->nbSamples);
- coefs.reload(SupportTestsF16::WEIGHTS_F16_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::REF_F16_ID,mgr);
- output.create(1,SupportTestsF16::OUT_F16_ID,mgr);
- this->offset=2;
- break;
- case TEST_COPY_F16_4:
- this->nbSamples = 7;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(input.nbSamples(),SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_COPY_F16_5:
- this->nbSamples = 16;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(input.nbSamples(),SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_COPY_F16_6:
- this->nbSamples = 23;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(input.nbSamples(),SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_FILL_F16_7:
- this->nbSamples = 7;
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_FILL_F16_8:
- this->nbSamples = 16;
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_FILL_F16_9:
- this->nbSamples = 23;
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_F16_Q15_10:
- this->nbSamples = 7;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- refQ15.reload(SupportTestsF16::SAMPLES_Q15_ID,mgr,this->nbSamples);
- outputQ15.create(this->nbSamples,SupportTestsF16::OUT_Q15_ID,mgr);
- break;
- case TEST_F16_Q15_11:
- this->nbSamples = 16;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- refQ15.reload(SupportTestsF16::SAMPLES_Q15_ID,mgr,this->nbSamples);
- outputQ15.create(this->nbSamples,SupportTestsF16::OUT_Q15_ID,mgr);
- break;
- case TEST_F16_Q15_12:
- this->nbSamples = 23;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- refQ15.reload(SupportTestsF16::SAMPLES_Q15_ID,mgr,this->nbSamples);
- outputQ15.create(this->nbSamples,SupportTestsF16::OUT_Q15_ID,mgr);
- break;
- case TEST_F16_F32_13:
- this->nbSamples = 7;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- refF32.reload(SupportTestsF16::SAMPLES_F32_ID,mgr,this->nbSamples);
- outputF32.create(this->nbSamples,SupportTestsF16::OUT_F32_ID,mgr);
- break;
- case TEST_F16_F32_14:
- this->nbSamples = 16;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- refF32.reload(SupportTestsF16::SAMPLES_F32_ID,mgr,this->nbSamples);
- outputF32.create(this->nbSamples,SupportTestsF16::OUT_F32_ID,mgr);
- break;
- case TEST_F16_F32_15:
- this->nbSamples = 23;
- input.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- refF32.reload(SupportTestsF16::SAMPLES_F32_ID,mgr,this->nbSamples);
- outputF32.create(this->nbSamples,SupportTestsF16::OUT_F32_ID,mgr);
- break;
- case TEST_Q15_F16_16:
- this->nbSamples = 7;
- inputQ15.reload(SupportTestsF16::SAMPLES_Q15_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_Q15_F16_17:
- this->nbSamples = 16;
- inputQ15.reload(SupportTestsF16::SAMPLES_Q15_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_Q15_F16_18:
- this->nbSamples = 23;
- inputQ15.reload(SupportTestsF16::SAMPLES_Q15_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_F32_F16_19:
- this->nbSamples = 7;
- inputF32.reload(SupportTestsF16::SAMPLES_F32_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_F32_F16_20:
- this->nbSamples = 16;
- inputF32.reload(SupportTestsF16::SAMPLES_F32_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- case TEST_F32_F16_21:
- this->nbSamples = 23;
- inputF32.reload(SupportTestsF16::SAMPLES_F32_ID,mgr,this->nbSamples);
- ref.reload(SupportTestsF16::SAMPLES_F16_ID,mgr,this->nbSamples);
- output.create(this->nbSamples,SupportTestsF16::OUT_F16_ID,mgr);
- break;
- }
- }
- void SupportTestsF16::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
- {
- (void)id;
- output.dump(mgr);
- }
|