Functions | |
void | arm_f16_to_f64 (const float16_t *pSrc, float64_t *pDst, uint32_t blockSize) |
Converts the elements of the f16 vector to f64 vector. | |
void | arm_f16_to_float (const float16_t *pSrc, float32_t *pDst, uint32_t blockSize) |
Converts the elements of the f16 vector to f32 vector. | |
void | arm_f16_to_q15 (const float16_t *pSrc, q15_t *pDst, uint32_t blockSize) |
Converts the elements of the f16 vector to Q15 vector. | |
void arm_f16_to_f64 | ( | const float16_t * | pSrc, |
float64_t * | pDst, | ||
uint32_t | blockSize | ||
) |
Converts the elements of the f16 vector to f64 vector.
Converts the elements of the 16 bit floating-point vector to 64 bit floating-point vector.
[in] | pSrc | points to the f16 input vector |
[out] | pDst | points to the f64 output vector |
[in] | blockSize | number of samples in each vector |
void arm_f16_to_float | ( | const float16_t * | pSrc, |
float32_t * | pDst, | ||
uint32_t | blockSize | ||
) |
Converts the elements of the f16 vector to f32 vector.
Converts the elements of the floating-point vector to Q31 vector.
[in] | pSrc | points to the f16 input vector |
[out] | pDst | points to the f32 output vector |
[in] | blockSize | number of samples in each vector |
void arm_f16_to_q15 | ( | const float16_t * | pSrc, |
q15_t * | pDst, | ||
uint32_t | blockSize | ||
) |
Converts the elements of the f16 vector to Q15 vector.
Converts the elements of the floating-point vector to Q31 vector.
[in] | pSrc | points to the f16 input vector |
[out] | pDst | points to the Q15 output vector |
[in] | blockSize | number of samples in each vector |
pDst[n] = (q15_t)(pSrc[n] * 32768); 0 <= n < blockSize.