Home
last modified time | relevance | path

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

/cmsis-dsp-3.7.0-3.6.0/Testing/FrameworkSource/
DError.cpp52 void assert_near_equal(unsigned long nb,double pa, double pb, double threshold) in assert_near_equal() argument
54 if (fabs(pa - pb) > threshold) in assert_near_equal()
57 sprintf(details,"diff %g > %g (%g,%g)",fabs(pa - pb) , threshold,pa,pb); in assert_near_equal()
63 void assert_near_equal(unsigned long nb,float32_t pa, float32_t pb, float32_t threshold) in assert_near_equal() argument
65 if (fabs(pa - pb) > threshold) in assert_near_equal()
68 sprintf(details,"diff %g > %g (%g,%g)",fabs(pa - pb) , threshold, pa, pb); in assert_near_equal()
75 void assert_near_equal(unsigned long nb,float16_t pa, float16_t pb, float16_t threshold) in assert_near_equal() argument
77 if (fabs(pa - pb) > threshold) in assert_near_equal()
80 sprintf(details,"diff %g > %g (%g,%g)",fabs(pa - pb) , threshold, pa, pb); in assert_near_equal()
87 void assert_near_equal(unsigned long nb,q63_t pa, q63_t pb, q63_t threshold) in assert_near_equal() argument
[all …]
/cmsis-dsp-3.7.0-3.6.0/Testing/FrameworkInclude/
DError.h85 extern void assert_relative_error(unsigned long nb,float16_t &a, float16_t &b, double threshold);
86 …ive_error(unsigned long nb,AnyPattern<float16_t> &pa, AnyPattern<float16_t> &pb, double threshold);
89 extern void assert_relative_error(unsigned long nb,float32_t &a, float32_t &b, double threshold);
90 …ive_error(unsigned long nb,AnyPattern<float32_t> &pa, AnyPattern<float32_t> &pb, double threshold);
92 extern void assert_relative_error(unsigned long nb,float64_t &a, float64_t &b, double threshold);
93 …ive_error(unsigned long nb,AnyPattern<float64_t> &pa, AnyPattern<float64_t> &pb, double threshold);
107 …r_error(unsigned long nb,AnyPattern<float64_t> &pa,AnyPattern<float64_t> &pb, float64_t threshold);
108 …r_error(unsigned long nb,AnyPattern<float32_t> &pa,AnyPattern<float32_t> &pb, float32_t threshold);
111 …r_error(unsigned long nb,AnyPattern<float16_t> &pa,AnyPattern<float16_t> &pb, float32_t threshold);
114 …ssert_snr_error(unsigned long nb,AnyPattern<q63_t> &pa,AnyPattern<q63_t> &pb, float32_t threshold);
[all …]
/cmsis-dsp-3.7.0-3.6.0/Source/MatrixFunctions/
Darm_householder_f32.c138 const float32_t threshold, in arm_householder_f32() argument
149 epsilon = threshold; in arm_householder_f32()
Darm_householder_f64.c63 const float64_t threshold, in arm_householder_f64() argument
74 epsilon = threshold; in arm_householder_f64()
Darm_householder_f16.c66 const float16_t threshold, in arm_householder_f16() argument
77 epsilon = threshold; in arm_householder_f16()
Darm_mat_qr_f64.c74 const float64_t threshold, in arm_mat_qr_f64() argument
109 beta = arm_householder_f64(pTmpA,threshold,pSrc->numRows - col,pTmpA); in arm_mat_qr_f64()
Darm_mat_qr_f16.c81 const float16_t threshold, in arm_mat_qr_f16() argument
119 beta = arm_householder_f16(pTmpA,threshold,pSrc->numRows - col,pTmpA); in arm_mat_qr_f16()
545 const float16_t threshold, in arm_mat_qr_f16() argument
580 beta = arm_householder_f16(pTmpA,threshold,pSrc->numRows - col,pTmpA); in arm_mat_qr_f16()
Darm_mat_qr_f32.c154 const float32_t threshold, in arm_mat_qr_f32() argument
192 beta = arm_householder_f32(pTmpA,threshold,pSrc->numRows - col,pTmpA); in arm_mat_qr_f32()
616 const float32_t threshold, in arm_mat_qr_f32() argument
651 beta = arm_householder_f32(pTmpA,threshold,pSrc->numRows - col,pTmpA); in arm_mat_qr_f32()
/cmsis-dsp-3.7.0-3.6.0/Include/dsp/
Dmatrix_functions.h787 const float32_t threshold,
812 const float64_t threshold,
831 const float32_t threshold,
847 const float64_t threshold,
Dmatrix_functions_f16.h233 const float16_t threshold,
251 const float16_t threshold,
/cmsis-dsp-3.7.0-3.6.0/PythonWrapper/cmsisdsp_pkg/src/
Dcmsisdsp_matrix.c1639 float64_t threshold; in cmsis_arm_mat_qr_f64() local
1644 if (PyArg_ParseTuple(args,"OdOO",&src,&threshold,&pTmpaIn,&pTmpbIn)) in cmsis_arm_mat_qr_f64()
1663 arm_status returnValue = arm_mat_qr_f64(&src_converted,threshold, in cmsis_arm_mat_qr_f64()
1703 float32_t threshold; in cmsis_arm_mat_qr_f32() local
1708 if (PyArg_ParseTuple(args,"OfOO",&src,&threshold,&pTmpaIn,&pTmpbIn)) in cmsis_arm_mat_qr_f32()
1727 arm_status returnValue = arm_mat_qr_f32(&src_converted,threshold, in cmsis_arm_mat_qr_f32()
1764 float64_t threshold; in cmsis_arm_householder_f64() local
1766 if (PyArg_ParseTuple(args,"Od",&pSrc,&threshold)) in cmsis_arm_householder_f64()
1775 pResult=arm_householder_f64(pSrc_converted,threshold,blockSize,pDst); in cmsis_arm_householder_f64()
1802 float32_t threshold; in cmsis_arm_householder_f32() local
[all …]
/cmsis-dsp-3.7.0-3.6.0/Documentation/Doxygen/
Ddsp.dxy.in2597 # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
2599 # for no limit. Note that the threshold may be exceeded by 50% before the limit
2600 # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
2622 # to display on a single line. If the actual line length exceeds this threshold
/cmsis-dsp-3.7.0-3.6.0/PythonWrapper/examples/
DNoise suppression.ipynb328 "This is a very simplified VAD algorithm based on energy threshold. "
369 "# Comparison with a threshold\n",
382 …on. It can be used to tune the threshold for the audio signal used in the notebook. It is unlikely…
465 " # The threshold is not easily related to the float implementation because\n",
478 …"Plot of the signal and VAD which can be used to tune the threshdold. The threshold is different b…
558 " # The threshold is not easily related to the float implementation because\n",