Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

5.1.5 vsip_ddfftop_p - Perform FFT Operations (Out-of-Place)

void vsip_ccfftop_f(const vsip_fft_f *fft, const vsip_cvview_f *x, const vsip_cvview_f *y); 
void vsip_rcfftop_f(const vsip_fft_f *fft, const vsip_vview_f *x, const vsip_cvview_f *y); 
void vsip_crfftop_f(const vsip_fft_f *fft, const vsip_cvview_f *x, const vsip_vview_f *y);
Description

These functions perform FFT (Fast Fourier Transform) operations using the specified FFT object. Each function handles a different type of FFT:

The performance for supported FFT sizes is standardized as O(nlogn). For sizes not directly supported by the FFT kernels a DFT fallback with a performance of O(n2) is standardized.

Parameters
Example

vsip_fft_f *fft_cc; 
vsip_fft_f *fft_rc; 
vsip_fft_f *fft_cr; 
vsip_cvview_f *complex_input; 
vsip_cvview_f *complex_output; 
vsip_vview_f *real_input; 
vsip_vview_f *real_output; 
 
// Assuming fft_cc, fft_rc, fft_cr, complex_input, complex_output, real_input, and real_output have been properly initialized 
 
// Perform complex-to-complex FFT 
vsip_ccfftop_f(fft_cc, complex_input, complex_output);