![]() |
NMSIS-DSP
Version 1.4.1
NMSIS DSP Software Library
|
Functions | |
| RISCV_DSP_ATTRIBUTE void | riscv_accumulate_f16 (const float16_t *pSrc, uint32_t blockSize, float16_t *pResult) |
| accumulate value of a floating-point vector. More... | |
| RISCV_DSP_ATTRIBUTE void | riscv_accumulate_f32 (const float32_t *pSrc, uint32_t blockSize, float32_t *pResult) |
| Accumulation value of a floating-point vector. More... | |
| RISCV_DSP_ATTRIBUTE void | riscv_accumulate_f64 (const float64_t *pSrc, uint32_t blockSize, float64_t *pResult) |
| Accumulation value of a floating-point vector. More... | |
Calculates the accumulation of the input vector. Sum is defined as the addition of the elements in the vector. The underlying algorithm is used:
Result = (pSrc[0] + pSrc[1] + pSrc[2] + ... + pSrc[blockSize-1]);
There are separate functions for floating-point, Q31, Q15, and Q7 data types.
| RISCV_DSP_ATTRIBUTE void riscv_accumulate_f16 | ( | const float16_t * | pSrc, |
| uint32_t | blockSize, | ||
| float16_t * | pResult | ||
| ) |
accumulate value of a floating-point vector.
Sum value of a floating-point vector.
| [in] | pSrc | points to the input vector. |
| [in] | blockSize | number of samples in input vector. |
| [out] | pResult | sum of values in input vector. |
| RISCV_DSP_ATTRIBUTE void riscv_accumulate_f32 | ( | const float32_t * | pSrc, |
| uint32_t | blockSize, | ||
| float32_t * | pResult | ||
| ) |
Accumulation value of a floating-point vector.
| [in] | pSrc | points to the input vector. |
| [in] | blockSize | number of samples in input vector. |
| [out] | pResult | sum of values in input vector. |