Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 32) sorted by relevance

12

/cmsis-dsp-latest/Testing/cmsis_build/
Dcheck.bat3 python ..\processResult.py -f ..\Output.pickle -e -r results_m0p.txt -html > m0p.html
6 python ..\processResult.py -f ..\Output.pickle -e -r results_m23.txt -html > m23.html
9 python ..\processResult.py -f ..\Output.pickle -e -r results_m3.txt -html > m3.html
12 python ..\processResult.py -f ..\Output.pickle -e -r results_m4.txt -html > m4.html
15 python ..\processResult.py -f ..\Output.pickle -e -r results_m7.txt -html > m7.html
18 python ..\processResult.py -f ..\Output.pickle -e -r results_m7_unrolled.txt -html > m7_unrolled.h…
21 python ..\processResult.py -f ..\Output.pickle -e -r results_m33.txt -html > m33.html
24 python ..\processResult.py -f ..\Output.pickle -e -r results_cs300.txt -html > cs300.html
27 python ..\processResult.py -f ..\Output.pickle -e -r results_cs300_u55.txt -html > cs300_u55.html
30 python ..\processResult.py -f ..\Output.pickle -e -r results_cs310.txt -html > cs310.html
Dquicktest.bat4 python processTests.py -f Output.pickle -e UnaryTestsF32
12 REM python ..\processResult.py -f ..\Output.pickle -e -r results_cs300_u55.txt
21 REM python ..\processResult.py -f ..\Output.pickle -e -r results_m7_unrolled.txt
30 python ..\processResult.py -f ..\Output.pickle -e -r results_m0p.txt
39 REM python ..\processResult.py -f ..\Output.pickle -e -r results_m55.txt
Drunall.py101 except Exception as e:
104 return(Result(str(e),error=True))
/cmsis-dsp-latest/Source/FilteringFunctions/
Darm_lms_f32.c180 float32_t sum, e, d; /* accumulator, error, reference data sample */ in arm_lms_f32() local
186 e = 0.0f; in arm_lms_f32()
247 e = d - sum; in arm_lms_f32()
248 *pErr++ = e; in arm_lms_f32()
251 w = e * mu; in arm_lms_f32()
350 float32_t acc, e; /* Accumulator, error */ in arm_lms_f32() local
356 e = 0.0f; in arm_lms_f32()
423 e = (float32_t) *pRef++ - acc; in arm_lms_f32()
424 *pErr++ = e; in arm_lms_f32()
427 w = e * mu; in arm_lms_f32()
Darm_lms_norm_f32.c175 float32_t sum, e, d; /* accumulator, error, reference data sample */ in arm_lms_norm_f32() local
182 e = 0.0f; in arm_lms_norm_f32()
254 e = d - sum; in arm_lms_norm_f32()
255 *pErr++ = e; in arm_lms_norm_f32()
259 w = (e * mu) / (energy + 0.000000119209289f); in arm_lms_norm_f32()
361 float32_t acc, e; /* Accumulator, error */ in arm_lms_norm_f32() local
369 e = 0.0f; in arm_lms_norm_f32()
446 e = (float32_t) *pRef++ - acc; in arm_lms_norm_f32()
447 *pErr++ = e; in arm_lms_norm_f32()
451 w = (e * mu) / (energy + 0.000000119209289f); in arm_lms_norm_f32()
Darm_levinson_durbin_f16.c65 _Float16 e; in arm_levinson_durbin_f16() local
70 e = (_Float16)phi[0] - (_Float16)phi[1] * (_Float16)a[0]; in arm_levinson_durbin_f16()
203 e = e * (1.0f16 - k*k); in arm_levinson_durbin_f16()
207 *err = e; in arm_levinson_durbin_f16()
219 _Float16 e; in arm_levinson_durbin_f16() local
223 e = (_Float16)phi[0] - (_Float16)phi[1] * (_Float16)a[0]; in arm_levinson_durbin_f16()
262 e = e * (1.0f16 - k*k); in arm_levinson_durbin_f16()
266 *err = e; in arm_levinson_durbin_f16()
Darm_levinson_durbin_f32.c68 float32_t e; in arm_levinson_durbin_f32() local
73 e = phi[0] - phi[1] * a[0]; in arm_levinson_durbin_f32()
211 e = e * (1.0f - k*k); in arm_levinson_durbin_f32()
215 *err = e; in arm_levinson_durbin_f32()
224 float32_t e; in arm_levinson_durbin_f32() local
229 e = phi[0] - phi[1] * a[0]; in arm_levinson_durbin_f32()
268 e = e * (1.0f - k*k); in arm_levinson_durbin_f32()
272 *err = e; in arm_levinson_durbin_f32()
Darm_levinson_durbin_q31.c125 q31_t e; in arm_levinson_durbin_q31() local
134 e = phi[0] - mul32x32(phi[1],a[0]); in arm_levinson_durbin_q31()
291 e = mul32x32(e,ONE_Q31 - mul32x32(k,k)); in arm_levinson_durbin_q31()
295 *err = e; in arm_levinson_durbin_q31()
305 q31_t e; in arm_levinson_durbin_q31() local
313 e = phi[0] - mul32x32(phi[1],a[0]); in arm_levinson_durbin_q31()
365 e = mul32x32(e,ONE_Q31 - mul32x32(k,k)); in arm_levinson_durbin_q31()
369 *err = e; in arm_levinson_durbin_q31()
Darm_lms_q15.c77 q15_t e = 0; /* Error of data sample */ in arm_lms_q15() local
156 e = *pRef++ - (q15_t) acc; in arm_lms_q15()
157 *pErr++ = (q15_t) e; in arm_lms_q15()
160 alpha = (q15_t) (((q31_t) e * (mu)) >> 15); in arm_lms_q15()
Darm_lms_q31.c81 q31_t e = 0; /* Error of data sample */ in arm_lms_q31() local
165 e = *pRef++ - (q31_t) acc; in arm_lms_q31()
166 *pErr++ = e; in arm_lms_q31()
169 alpha = (q31_t) (((q63_t) e * mu) >> 31); in arm_lms_q31()
Darm_lms_norm_q31.c81 q31_t e = 0; /* Error data sample */ in arm_lms_norm_q31() local
179 e = *pRef++ - (q31_t) acc; in arm_lms_norm_q31()
180 *pErr++ = e; in arm_lms_norm_q31()
186 errorXmu = (q31_t) (((q63_t) e * mu) >> 31); in arm_lms_norm_q31()
Darm_lms_norm_q15.c81 q15_t e = 0, d = 0; /* Error, reference data sample */ in arm_lms_norm_q15() local
175 e = d - (q15_t) acc; in arm_lms_norm_q15()
176 *pErr++ = e; in arm_lms_norm_q15()
182 errorXmu = (q15_t) (((q31_t) e * mu) >> 15); in arm_lms_norm_q15()
/cmsis-dsp-latest/Include/
Darm_vec_math.h145 int32x4_t * e) in vmant_exp_f32() argument
155 *e = n; in vmant_exp_f32()
328 float32x4_t e = vrsqrteq_f32(x1); in __arm_vec_sqrt_f32_neon() local
329 e = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x1, e), e), e); in __arm_vec_sqrt_f32_neon()
330 e = vmulq_f32(vrsqrtsq_f32(vmulq_f32(x1, e), e), e); in __arm_vec_sqrt_f32_neon()
331 return vmulq_f32(x, e); in __arm_vec_sqrt_f32_neon()
/cmsis-dsp-latest/Testing/PatternGeneration/
DSupport.py27 e = np.sum(va[0:nbiters].T * vb[0:nbiters]) / np.sum(vb[0:nbiters])
28 output.append(e)
31 e = np.sum(va[0:nbiters].T * vb[0:nbiters]) / np.sum(vb[0:nbiters])
32 output.append(e)
35 e = np.sum(va[0:nbiters].T * vb[0:nbiters]) / np.sum(vb[0:nbiters])
36 output.append(e)
DFastMath.py42 e = 0
46 e = 1.0 / (1<<31)
50 e = 1.0 / (1<<15)
54 e = 1.0 / (1<<7)
72 if abs(a/b) > 1 - e:
DStats.py23 e = scipy.stats.entropy(v)
25 outputs.append(e)
43 e = scipy.special.logsumexp(v)
45 outputs.append(e)
69 e = scipy.stats.entropy(va,vb)
72 outputs.append(e)
103 e = np.log(np.dot(va,vb))
109 outputs.append(e)
/cmsis-dsp-latest/Testing/
DprocessResult.py550 analyseResult(resultPath,root,results,args.e,args.b,trace,CSVFormatter())
552 analyseResult(resultPath,root,results,args.e,args.b,trace,HTMLFormatter())
554 analyseResult(resultPath,root,results,args.e,args.b,trace,HTMLFormatter(append=True))
556 analyseResult(resultPath,root,results,args.e,args.b,trace,MathematicaFormatter())
563 analyseResult(resultPath,root,results,args.e,args.b,trace,TextFormatter())
599 if args.e:
DREADME.md32 `python processTests.py -e`
34 `python processTests.py -e -f Output_f16.pickle`
38 `python processTests.py -e BasicTestsF32`
44 `python processTests.py -f Output_f16.pickle -e BasicTestsF16`
81 `python ../processResult.py -f ../Output.pickle -e -r results.txt`
422 You can also use the -e option (for embedded). It will include all the patterns (for the selected t…
423 always use -e option.
425 python processTests.py -e
429 python processTests.py -e BasicTests
433 python processTests.py -e BasicTests 4
[all …]
DprocessTests.py31 c = TestScripts.CodeGen.CodeGen(args.p,args.d, args.e)
/cmsis-dsp-latest/dsppp/
Drun_all.py80 except Exception as e:
83 return(Result(str(e),error=True))
342 except Exception as e:
343 res = Result(str(e),error = True)
/cmsis-dsp-latest/PythonWrapper/examples/
Dexample_1_9.py47 e = s + block_size
49 r = f(dec,sig[s:e])
DNoise suppression.ipynb207e/of/0f/+/rMAmgAG//L+JwA3/2D/dv8eAan/5v7K/+T+Zv+uAOAAOP9LAF7/CADPAOkBjwEnAdb/TAE3Ae7/+AAGAar/yQDaA…
300 "winDuration=30e-3\n",
301 "winOverlap=15e-3\n",
499 …2cHCVZt882PDR/b357zs3iiokArzwsHrA6DbO3TgVtOrXT7X3Le4fSXCZ23ZmynpD4mYpubmTmk/e/zV9pVaCh9V1SbgUmAOsA…
704e/iv/zP6AALj/d/8WAF4A4/9SAN7+CwDy/oUAFwEOALf/wP85AQECp/9SAMsBjgAWAUYBrAH6ADoAFAHtARwAegAxAtgAagEyA…
803 " energy = v * np.conj(v) + 1e-6\n",
919e/+v5TvX79dn7yP/x+5n6fvuZ/Tz31e6/8F78RQjJAAPurN946m0ADAll+x7q/Oma+GoB0/u38ob3awOOCl0CqfeE9sMFfxQ5G…
999e/iv/zP5+ALf/dv8VAF0A4/9QAN3+CQDx/oMAFQENALb/v/84AQACpv9RAMkBjQAUAUQBqgH4ADgAEgHsARoAeQAwAtcAaQEwA…
1076 " energy = dsp.arm_offset_f32(energy,1e-6)\n",
1193e/+v5TvX79dn7yP/x+5n6fvuZ/Tz31e6/8F78RQjJAAPurN946m0ADAll+x7q/Oma+GoB0/u38ob3awOOCl0CqfeE9sMFfxQ5G…
[all …]
/cmsis-dsp-latest/dsppp/Include/dsppp/
Dunroll.hpp216 auto replicate(const Vector<P,L,A>& e) noexcept in replicate() argument
219 return replicate_impl(VectorView<P,1>(e),std::make_index_sequence<N>()); in replicate()
/cmsis-dsp-latest/Documentation/Doxygen/style_template/
Dresize.js130 $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); argument
Dextra_navtree.css112 .ui-resizable-e {

12