mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-21 12:18:43 +00:00
[feat][nmsis] add nmsis component and nn,dsp demo
This commit is contained in:
parent
b2aada479b
commit
5d1126d0f0
989 changed files with 286224 additions and 0 deletions
15
examples/dsp/FastMathFunctions_squareRootPart/sqrt.c
Normal file
15
examples/dsp/FastMathFunctions_squareRootPart/sqrt.c
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include "ref.h"
|
||||
|
||||
riscv_status ref_sqrt_q31(q31_t in, q31_t *pOut)
|
||||
{
|
||||
*pOut = (q31_t)(sqrtf((float32_t)in / 2147483648.0f) * 2147483648.0f);
|
||||
|
||||
return RISCV_MATH_SUCCESS;
|
||||
}
|
||||
|
||||
riscv_status ref_sqrt_q15(q15_t in, q15_t *pOut)
|
||||
{
|
||||
*pOut = (q15_t)(sqrtf((float32_t)in / 32768.0f) * 32768.0f);
|
||||
|
||||
return RISCV_MATH_SUCCESS;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue