mirror of
https://github.com/Fishwaldo/bl_mcu_sdk.git
synced 2025-07-18 18:58:38 +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
48
examples/dsp/BasicMathFunctions_part2/shift.c
Normal file
48
examples/dsp/BasicMathFunctions_part2/shift.c
Normal file
|
@ -0,0 +1,48 @@
|
|||
#include "ref.h"
|
||||
|
||||
void ref_shift_q31(q31_t *pSrc, int8_t shiftBits, q31_t *pDst,
|
||||
uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
if (shiftBits >= 0) {
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] << shiftBits;
|
||||
}
|
||||
} else {
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] >> -shiftBits;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ref_shift_q15(q15_t *pSrc, int8_t shiftBits, q15_t *pDst,
|
||||
uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
if (shiftBits >= 0) {
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] << shiftBits;
|
||||
}
|
||||
} else {
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] >> -shiftBits;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ref_shift_q7(q7_t *pSrc, int8_t shiftBits, q7_t *pDst, uint32_t blockSize)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
if (shiftBits >= 0) {
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] << shiftBits;
|
||||
}
|
||||
} else {
|
||||
for (i = 0; i < blockSize; i++) {
|
||||
pDst[i] = pSrc[i] >> -shiftBits;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue