Edge AI Add-on API 2.2.0
Loading...
Searching...
No Matches
nrf_dsp_psoz.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2026 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
15#ifndef _NRF_DSP_STAT_PSOZ_FUNCTIONS_H_
16#define _NRF_DSP_STAT_PSOZ_FUNCTIONS_H_
17
18#include "nrf_dsp_psot.h"
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
32#define nrf_dsp_psoz_f32(p_input, num) nrf_dsp_psot_f32((p_input), (num), 0.f)
33
43#define nrf_dsp_psoz_f32_s(p_input, num, stride) nrf_dsp_psot_f32_s((p_input), (num), stride, 0.f)
44
53#define nrf_dsp_psoz_i8(p_input, num) nrf_dsp_psot_i8((p_input), (num), 0)
54
64#define nrf_dsp_psoz_i8_s(p_input, num, stride) nrf_dsp_psot_i8_s((p_input), (num), stride, 0)
65
74#define nrf_dsp_psoz_i16(p_input, num) nrf_dsp_psot_i16((p_input), (num), 0)
75
85#define nrf_dsp_psoz_i16_s(p_input, num, stride) nrf_dsp_psot_i16_s((p_input), (num), stride, 0)
86
87#ifdef __cplusplus
88}
89#endif
90
91#endif /* _NRF_DSP_STAT_PSOZ_FUNCTIONS_H_ */
92