Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inc/NE10_dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ extern "C" {
*
* {
* ne10_int32_t fftSize = 1024;
* ne10_fft_r2c_cfg_float32_t cfg = ne10_fft_alloc_r2c_float32_neon(fftSize); // Allocate a configuration structure for R2C/C2R FP32 NEON FFTs of size fftSize
* ne10_fft_r2c_cfg_float32_t cfg = ne10_fft_alloc_r2c_float32(fftSize); // Allocate a configuration structure for R2C/C2R FP32 FFTs of size fftSize
* ne10_float32_t *in = malloc(fftSize * sizeof(ne10_float32_t)); // Allocate an input array of samples
* ne10_fft_cpx_float32_t *out = malloc(fftSize * sizeof(ne10_fft_cpx_float32_t)); // Allocate an (oversized) output array of samples
*
Expand Down