FFT_OMP_SP_1D_C2C
fft_plan_t fft_omp_sp_plan_1d_c2c (int N, int mode, fft_callout_t fxns)
int fft_omp_sp_1d_c2c_ecpy (fft_param_u u, void *edmaState)
#define FFT_OMP_SP_1D_C2C_4STEP_MIN_SIZE   ( 4*1024)
#define FFT_OMP_SP_1D_C2C_4STEP_MAX_SIZE   (4*1024*1024)
#define FFT_OMP_SP_1D_C2C_NUMOFLINEBUFS   8

Detailed Description

1


Define Documentation

#define FFT_OMP_SP_1D_C2C_4STEP_MIN_SIZE   ( 4*1024)

Definition at line 51 of file fft_omp_sp_1d_c2c.h.

#define FFT_OMP_SP_1D_C2C_4STEP_MAX_SIZE   (4*1024*1024)

Definition at line 52 of file fft_omp_sp_1d_c2c.h.

Parameters:
FFT_OMP_SP_1D_C2C_NUMOFLINEBUFS= number of cache lines to process each iteration

Definition at line 58 of file fft_omp_sp_1d_c2c.h.


Function Documentation

fft_plan_t fft_omp_sp_plan_1d_c2c ( int  N,
int  mode,
fft_callout_t  fxns 
)
Parameters:
N= FFT size dimension 1
mode= FFT_ECPY is supported for 1d multicore FFT
int fft_omp_sp_1d_c2c_ecpy ( fft_param_u  u,
void *  edmaState 
)

This program performs one 1-dimensional single-precision multicore complex-to-complex FFT.

Parameters:
N= FFT size
n1= FFT size stage 1
n2= FFT size stage 2
para1= Twiddle, mixed radix & bluestein parameters for stage 1
para2= Twiddle, mixed radix & bluestein parameters for stage 2
data= input pointer
work= output pointer
data_w= input/output buffer pointer
work_w= working buffer pointer
work_t= Cache line buffer pointer
tw= twiddle pointer
tw_w= twiddle buffer pointer
Algorithm:
Algorithm can run in radix 2, 3, 4 & 5 based upon value of N.
Note:Parameters para1 & para2 are determined at runtime and will depend upon type of FFT desired, radix 3 & 5, or radix 2 & 4.
Assumptions:
N1 & N2 are a multiple of FFT_OMP_SP_1D_C2C_NUMOFLINEBUFS and positive values.
All input, output and working buffers are double word aligned.
No input, working or buffers overlap.
Size Limitations:
Current limitations are: 2048*2048 FFT size for power of 2.
Implementation notes:
Endian Support: The code supports little endian modes.
Interruptibility: The code is interrupt-tolerant but not interruptible.

Copyright 2014, Texas Instruments Incorporated