1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| #include "ref.h"
|
| void ref_power_f32(
| float32_t * pSrc,
| uint32_t blockSize,
| float32_t * pResult)
| {
| uint32_t i;
| float32_t sumsq=0;
|
| for(i=0;i<blockSize;i++)
| {
| sumsq += pSrc[i] * pSrc[i];
| }
| *pResult = sumsq;
| }
|
| void ref_power_q31(
| q31_t * pSrc,
| uint32_t blockSize,
| q63_t * pResult)
| {
| uint32_t i;
| q63_t sumsq=0;
|
| for(i=0;i<blockSize;i++)
| {
| sumsq += ((q63_t)pSrc[i] * pSrc[i]) >> 14;
| }
| *pResult = sumsq;
| }
|
| void ref_power_q15(
| q15_t * pSrc,
| uint32_t blockSize,
| q63_t * pResult)
| {
| uint32_t i;
| q63_t sumsq=0;
|
| for(i=0;i<blockSize;i++)
| {
| sumsq += (q63_t)pSrc[i] * pSrc[i];
| }
| *pResult = sumsq;
| }
|
| void ref_power_q7(
| q7_t * pSrc,
| uint32_t blockSize,
| q31_t * pResult)
| {
| uint32_t i;
| q31_t sumsq=0;
|
| for(i=0;i<blockSize;i++)
| {
| sumsq += (q31_t)pSrc[i] * pSrc[i];
| }
| *pResult = sumsq;
| }
|
|