/cmsis-dsp-latest/PythonWrapper/examples/ |
D | testdsp3.py | 38 err,r=dsp.arm_sqrt_f32(a) variable 39 print(err,r) 41 err,r=dsp.arm_sqrt_q31(f.toQ31(a)) variable 42 print(err,f.Q31toF32(r)) 44 err,r=dsp.arm_sqrt_q15(f.toQ15(a)) variable 45 print(err,f.Q15toF32(r)) 47 err,r=dsp.arm_sqrt_f32(-a) variable 48 print(err,r) 50 err,r=dsp.arm_sqrt_q31(f.toQ31(-a)) variable 51 print(err,f.Q31toF32(r)) [all …]
|
D | example_1_5.py | 81 def checkOrtho(A,err=1e-10): argument 87 return (np.all(np.abs(product)<=err)) 145 assert(checkOrtho(q,err=1e-14)) 170 assert(checkOrtho(q,err=1.0e-6))
|
D | example_1_4.py | 66 err = a - b 67 return(np.dot(err,err) / len(a))
|
D | testdsp2.py | 285 (a,err)=dsp.arm_levinson_durbin_f32(phi,na) 287 print(err)
|
/cmsis-dsp-latest/dsppp/ |
D | run_all.py | 53 def is_error(res,test_name,err): argument 57 print(test_name,file=err) 58 print(res.msg,file=err) 59 print("--------------",file=err) 246 def configure_and_build_test(test_name,test,err,subtest,first): argument 257 if not is_error(res,test_name,err): 309 def runVHT(test_name,test,err,subtest): argument 332 if not is_error(res,test_name,err): 335 def runMPS3(test_name,test,err,subtest): argument 344 if not is_error(res,test_name,err): [all …]
|
/cmsis-dsp-latest/Testing/FrameworkSource/ |
D | Error.cpp | 270 catch(Error &err) in assert_relative_error() local 273 strcat(err.details,id); in assert_relative_error() 274 throw(err); in assert_relative_error() 301 catch(Error &err) in assert_relative_error() local 304 strcat(err.details,id); in assert_relative_error() 305 throw(err); in assert_relative_error() 333 catch(Error &err) in assert_relative_error() local 336 strcat(err.details,id); in assert_relative_error() 337 throw(err); in assert_relative_error() 376 catch(Error &err) in assert_close_error() local [all …]
|
/cmsis-dsp-latest/Testing/FrameworkInclude/ |
D | Error.h | 210 catch(Error &err) in assert_equal_partial() 213 strcat(err.details,id); in assert_equal_partial() 214 throw(err); in assert_equal_partial() 242 catch(Error &err) in assert_equal() 245 strcat(err.details,id); in assert_equal() 246 throw(err); in assert_equal() 298 catch(Error &err) in assert_near_equal() 301 strcat(err.details,id); in assert_near_equal() 302 throw(err); in assert_near_equal()
|
/cmsis-dsp-latest/Source/FilteringFunctions/ |
D | arm_levinson_durbin_f16.c | 62 float16_t *err, in arm_levinson_durbin_f16() argument 207 *err = e; in arm_levinson_durbin_f16() 216 float16_t *err, in arm_levinson_durbin_f16() argument 266 *err = e; in arm_levinson_durbin_f16()
|
D | arm_levinson_durbin_f32.c | 65 float32_t *err, in arm_levinson_durbin_f32() argument 215 *err = e; in arm_levinson_durbin_f32() 221 float32_t *err, in arm_levinson_durbin_f32() argument 272 *err = e; in arm_levinson_durbin_f32()
|
D | arm_levinson_durbin_q31.c | 122 q31_t *err, in arm_levinson_durbin_q31() argument 295 *err = e; in arm_levinson_durbin_q31() 302 q31_t *err, in arm_levinson_durbin_q31() argument 369 *err = e; in arm_levinson_durbin_q31()
|
/cmsis-dsp-latest/Testing/PatternGeneration/ |
D | Convolutions.py | 93 err=[] 109 err.append(sigmav) 114 config.writeReference(errTestID, err,"LDErrors")
|
D | Stats.py | 370 err = data1 - data2 371 return(np.dot(err,err) / nb)
|
/cmsis-dsp-latest/Testing/Source/Tests/ |
D | MISCF16.cpp | 30 float16_t err; in test_levinson_durbin_f16() local 34 arm_levinson_durbin_f16(inpA,outp,&err,this->nba); in test_levinson_durbin_f16() 41 ASSERT_CLOSE_ERROR(refError,err,ABS_LD_ERROR,REL_LD_ERROR); in test_levinson_durbin_f16()
|
D | MISCF32.cpp | 31 float32_t err; in test_levinson_durbin_f32() local 35 arm_levinson_durbin_f32(inpA,outp,&err,this->nba); in test_levinson_durbin_f32() 42 ASSERT_CLOSE_ERROR(refError,err,ABS_LD_ERROR,REL_LD_ERROR); in test_levinson_durbin_f32()
|
D | MISCQ31.cpp | 35 q31_t err; in test_levinson_durbin_q31() local 39 arm_levinson_durbin_q31(inpA,outp,&err,this->nba); in test_levinson_durbin_q31() 44 ASSERT_NEAR_EQ(refError,err,ABS_LD_ERROR); in test_levinson_durbin_q31()
|
/cmsis-dsp-latest/Include/dsp/ |
D | filtering_functions_f16.h | 228 float16_t *err,
|
D | filtering_functions.h | 2550 float32_t *err, 2563 q31_t *err,
|
/cmsis-dsp-latest/Documentation/Doxygen/style_template/ |
D | navtree.js | 262 } catch (err) {
|
/cmsis-dsp-latest/PythonWrapper/cmsisdsp_pkg/src/ |
D | cmsisdsp_filtering.c | 3895 q31_t err; // output in cmsis_arm_levinson_durbin_q31() local 3906 arm_levinson_durbin_q31(pPhi_converted,pA,&err,nbCoefs); in cmsis_arm_levinson_durbin_q31() 3910 PyObject *pythonResult = Py_BuildValue("Oi",pAOBJ,err); in cmsis_arm_levinson_durbin_q31() 3928 float32_t err; // output in cmsis_arm_levinson_durbin_f32() local 3939 arm_levinson_durbin_f32(pPhi_converted,pA,&err,nbCoefs); in cmsis_arm_levinson_durbin_f32() 3943 PyObject *pythonResult = Py_BuildValue("Of",pAOBJ,err); in cmsis_arm_levinson_durbin_f32()
|