Home
last modified time | relevance | path

Searched refs:nbTaps (Results 1 – 19 of 19) sorted by relevance

/cmsis-dsp-latest/Testing/Source/Benchmarks/
DDECIMF32.cpp23 this->nbTaps = *it++; in setUp()
28 coefs.reload(DECIMF32::COEFS1_F32_ID,mgr,this->nbTaps); in setUp()
37 state.create(this->nbSamples + this->nbTaps - 1,DECIMF32::STATE_F32_ID,mgr); in setUp()
40 this->nbTaps, in setUp()
51 int phase = this->nbTaps / this->interpolationFactor; in setUp()
57 this->nbTaps, in setUp()
DFIRF32.cpp30 this->nbTaps = *it++; in setUp()
34 coefs.reload(FIRF32::COEFS1_F32_ID,mgr,this->nbTaps); in setUp()
36 state.create(this->nbSamples + this->nbSamples + this->nbTaps - 1,FIRF32::STATE_F32_ID,mgr); in setUp()
50 memcpy(coeffArray,ptr,this->nbTaps*sizeof(float32_t)); in setUp()
60 arm_fir_init_f32(&instFir,this->nbTaps,this->pCoefs,state.ptr(),this->nbSamples); in setUp()
66 arm_lms_init_f32(&instLms,this->nbTaps,coefs.ptr(),state.ptr(),0.1,this->nbSamples); in setUp()
78 … arm_lms_norm_init_f32(&instLmsNorm,this->nbTaps,coefs.ptr(),state.ptr(),0.1,this->nbSamples); in setUp()
DFIRQ15.cpp29 this->nbTaps = *it++; in setUp()
33 coefs.reload(FIRQ15::COEFS1_Q15_ID,mgr,this->nbTaps); in setUp()
35 state.create(this->nbSamples + this->nbTaps - 1,FIRQ15::STATE_Q15_ID,mgr); in setUp()
48 memcpy(coeffArray,ptr,this->nbTaps*sizeof(q15_t)); in setUp()
53 arm_fir_init_q15(&instFir,this->nbTaps,coefs.ptr(),state.ptr(),this->nbSamples); in setUp()
62 arm_lms_init_q15(&instLms,this->nbTaps,coefs.ptr(),state.ptr(),100,this->nbSamples,1); in setUp()
74 … arm_lms_norm_init_q15(&instLmsNorm,this->nbTaps,coefs.ptr(),state.ptr(),100,this->nbSamples,1); in setUp()
DFIRQ31.cpp30 this->nbTaps = *it++; in setUp()
34 coefs.reload(FIRQ31::COEFS1_Q31_ID,mgr,this->nbTaps); in setUp()
36 …state.create(2*ROUND_UP(this->nbSamples,4) + this->nbSamples + this->nbTaps - 1,FIRQ31::STATE_Q31_… in setUp()
49 memcpy(coeffArray,ptr,this->nbTaps*sizeof(q31_t)); in setUp()
55 arm_fir_init_q31(&instFir,this->nbTaps,coefs.ptr(),state.ptr(),this->nbSamples); in setUp()
65 arm_lms_init_q31(&instLms,this->nbTaps,coefs.ptr(),state.ptr(),100,this->nbSamples,1); in setUp()
78 … arm_lms_norm_init_q31(&instLmsNorm,this->nbTaps,coefs.ptr(),state.ptr(),100,this->nbSamples,1); in setUp()
DDECIMQ15.cpp23 this->nbTaps = *it++; in setUp()
28 coefs.reload(DECIMQ15::COEFS1_Q15_ID,mgr,this->nbTaps); in setUp()
30 state.create(this->nbSamples + this->nbTaps - 1,DECIMQ15::STATE_Q15_ID,mgr); in setUp()
38 this->nbTaps, in setUp()
50 this->nbTaps, in setUp()
DDECIMQ31.cpp23 this->nbTaps = *it++; in setUp()
28 coefs.reload(DECIMQ31::COEFS1_Q31_ID,mgr,this->nbTaps); in setUp()
30 state.create(this->nbSamples + this->nbTaps - 1,DECIMQ31::STATE_Q31_ID,mgr); in setUp()
38 this->nbTaps, in setUp()
50 this->nbTaps, in setUp()
DFIRF16.cpp21 this->nbTaps = *it++; in setUp()
25 coefs.reload(FIRF16::COEFS1_F16_ID,mgr,this->nbTaps); in setUp()
27 …state.create(ROUND_UP(this->nbSamples,8) + this->nbSamples + this->nbTaps - 1,FIRF16::STATE_F16_ID… in setUp()
40 memcpy(coeffArray,ptr,this->nbTaps*sizeof(float16_t)); in setUp()
46 arm_fir_init_f16(&instFir,this->nbTaps,coefs.ptr(),state.ptr(),this->nbSamples); in setUp()
DFIRQ7.cpp21 this->nbTaps = *it++; in setUp()
25 coefs.reload(FIRQ7::COEFS1_Q7_ID,mgr,this->nbTaps); in setUp()
27 state.create(this->nbSamples + this->nbTaps - 1,FIRQ7::STATE_Q7_ID,mgr); in setUp()
40 memcpy(coeffArray,ptr,this->nbTaps*sizeof(q7_t)); in setUp()
45 arm_fir_init_q7(&instFir,this->nbTaps,coefs.ptr(),state.ptr(),this->nbSamples); in setUp()
/cmsis-dsp-latest/Testing/PatternGeneration/
DFIR.py72 nbTaps=t
74 pythonCoefs = np.array(list(range(1,nbTaps+1)))/(1.0*(nbTaps+2))
79 nbTaps = nbTaps + 1
88 defs += [b,nbTaps]
/cmsis-dsp-latest/Testing/Include/Benchmarks/
DDECIMF32.h20 int nbTaps; variable
DDECIMQ15.h20 int nbTaps; variable
DDECIMQ31.h20 int nbTaps; variable
DFIRF16.h22 int nbTaps; variable
DFIRQ7.h22 int nbTaps; variable
DFIRF32.h22 int nbTaps; variable
DFIRQ15.h22 int nbTaps; variable
DFIRQ31.h22 int nbTaps; variable
/cmsis-dsp-latest/Source/FilteringFunctions/
Darm_fir_q15.c218 int32_t nbTaps = (numTaps + 7) >> 3; in arm_fir_q15() local
220 switch(nbTaps) { in arm_fir_q15()
/cmsis-dsp-latest/dsppp/tests/
Dfilter_test.cpp177 int32_t nbTaps = (numTaps + 7) >> 3; in debug_arm_fir_q15() local
179 switch(nbTaps) { in debug_arm_fir_q15()