This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320C6678: 【TMDXEVM667LE】DSPF_sp_fftSPxSP

Part Number: TMS320C6678

在dsplib库中的源代码DSPF_sp_fftSPxSP_d.c 这个c文件是测试fft的c代码、优化c代码以及线性汇编代码的时间 

为什么要把输入数组和输出数组以及旋转因子数组多定义PAD个数

float x_i [M + 2 * PAD];
float x_sa[M + 2 * PAD];
float x_cn[M + 2 * PAD];

float w [M + 2 * PAD];

float y_i [M + 2 * PAD];
float y_sa[M + 2 * PAD];
float y_cn[M + 2 * PAD];

然后又定义指针

float *const ptr_x_i = x_i + PAD;
float *const ptr_x_sa = x_sa + PAD;
float *const ptr_x_cn = x_cn + PAD;

float *const ptr_w = w + PAD;

float *const ptr_y_i = y_i + PAD;
float *const ptr_y_sa = y_sa + PAD;
float *const ptr_y_cn = y_cn + PAD;

请问这个PAD是用来干什么的?另外ptr_x_i 这些指针为什么只加了一个PAD?

x 出现错误。请重试或与管理员联系。