Home
last modified time | relevance | path

Searched refs:weights (Results 1 – 13 of 13) sorted by relevance

/cmsis-dsp-latest/Testing/PatternGeneration/
DSupport.py17 weights=[]
24 weights += list(vb)
39 weights=np.array(weights)
42 config.writeInput(nb, weights,"Weights")
48 weights=[]
72 weights += list(coefs)
75 weights=np.array(weights)
79 config.writeInput(nb, weights,"Weights")
/cmsis-dsp-latest/Source/SupportFunctions/
Darm_barycenter_f32.c54 const float32_t *weights, in arm_barycenter_f32() argument
70 pW = weights; in arm_barycenter_f32()
199 ARM_DSP_ATTRIBUTE void arm_barycenter_f32(const float32_t *in, const float32_t *weights, float32_t … in arm_barycenter_f32() argument
214 pW = weights; in arm_barycenter_f32()
352 ARM_DSP_ATTRIBUTE void arm_barycenter_f32(const float32_t *in, const float32_t *weights, float32_t … in arm_barycenter_f32() argument
365 pW = weights; in arm_barycenter_f32()
Darm_barycenter_f16.c67 const float16_t *weights, in arm_barycenter_f16() argument
83 pW = weights; in arm_barycenter_f16()
209 ARM_DSP_ATTRIBUTE void arm_barycenter_f16(const float16_t *in, const float16_t *weights, float16_t … in arm_barycenter_f16() argument
222 pW = weights; in arm_barycenter_f16()
/cmsis-dsp-latest/Source/TransformFunctions/
Darm_dct4_f32.c136 const float32_t *weights = S->pTwiddle; /* Pointer to the Weights table */ in arm_dct4_f32() local
244 arm_cmplx_mult_cmplx_f32 (pState, weights, pState, S->N); in arm_dct4_f32()
389 arm_cmplx_mult_cmplx_f32 (pState, weights, pState, S->N); in arm_dct4_f32()
Darm_dct4_q15.c62 const q15_t *weights = S->pTwiddle; /* Pointer to the Weights table */ in arm_dct4_q15() local
170 arm_cmplx_mult_cmplx_q15 (pState, weights, pState, S->N); in arm_dct4_q15()
319 arm_cmplx_mult_cmplx_q15 (pState, weights, pState, S->N); in arm_dct4_q15()
Darm_dct4_q31.c64 const q31_t *weights = S->pTwiddle; /* Pointer to the Weights table */ in arm_dct4_q31() local
172 arm_cmplx_mult_cmplx_q31 (pState, weights, pState, S->N); in arm_dct4_q31()
321 arm_cmplx_mult_cmplx_q31 (pState, weights, pState, S->N); in arm_dct4_q31()
/cmsis-dsp-latest/Testing/Source/Benchmarks/
DSupportF16.cpp61 weights.reload(SupportF16::WEIGHTS6_F16_ID,mgr,this->nbSamples); in setUp()
64 this->pWeights=weights.ptr(); in setUp()
DSupportF32.cpp69 weights.reload(SupportF32::WEIGHTS6_F32_ID,mgr,this->nbSamples); in setUp()
72 this->pWeights=weights.ptr(); in setUp()
/cmsis-dsp-latest/Testing/Include/Benchmarks/
DSupportF16.h15 Client::Pattern<float16_t> weights; variable
DSupportF32.h15 Client::Pattern<float32_t> weights; variable
/cmsis-dsp-latest/Include/dsp/
Dsupport_functions_f16.h136 , const float16_t *weights
Dsupport_functions.h528 , const float32_t *weights
/cmsis-dsp-latest/PythonWrapper/examples/
Dtestdsp5.py98 weights = w.reshape(12) variable
103 result=dsp.arm_barycenter_f32(points,weights,12,3)