![]() |
Edge AI Add-on API 2.2.0
|
#include <nrf_edgeai/dsp/nrf_dsp_types.h>Go to the source code of this file.
Functions | |
| void | nrf_dsp_min_max_f32 (const flt32_t *p_input, uint16_t num, flt32_t *p_min, flt32_t *p_max) |
| Finds Maximum and Minimum value of a floating-point vector. | |
| void | nrf_dsp_min_max_f32_s (const flt32_t *p_input, uint16_t num, size32_t stride, flt32_t *p_min, flt32_t *p_max) |
| Finds Maximum and Minimum value of a floating-point vector using values in increments of 'stride'. | |
| void | nrf_dsp_min_max_i8 (const int8_t *p_input, uint16_t num, int8_t *p_min, int8_t *p_max) |
| Finds Maximum and Minimum value of INT8 fixed-point vector. | |
| void | nrf_dsp_min_max_i8_s (const int8_t *p_input, uint16_t num, size32_t stride, int8_t *p_min, int8_t *p_max) |
| Finds Maximum and Minimum value of a INT8 fixed-point vector using values in increments of 'stride'. | |
| void | nrf_dsp_min_max_i16 (const int16_t *p_input, uint16_t num, int16_t *p_min, int16_t *p_max) |
| Finds Maximum and Minimum value of INT16 fixed-point vector. | |
| void | nrf_dsp_min_max_i16_s (const int16_t *p_input, uint16_t num, size32_t stride, int16_t *p_min, int16_t *p_max) |
| Finds Maximum and Minimum value of a INT16 fixed-point vector using values in increments of 'stride'. | |
| void | nrf_dsp_min_max_i32 (const int32_t *p_input, uint16_t num, int32_t *p_min, int32_t *p_max) |
| Finds Maximum and Minimum value of INT32 fixed-point vector. | |
| void | nrf_dsp_min_max_i32_s (const int32_t *p_input, uint16_t num, size32_t stride, int32_t *p_min, int32_t *p_max) |
| Finds Maximum and Minimum value of a INT32 fixed-point vector using values in increments of 'stride'. | |