typedef enum _vsip_cmplx_mem { VSIP_CMPLX_INTERLEAVED, VSIP_CMPLX_SPLIT, VSIP_CMPLX_NONE } vsip_cmplx_mem; vsip_cmplx_mem vsip_cstorage_f(void); vsip_cmplx_mem vsip_cstorage_d(void); /* deprecated */ vsip_cmplx_mem vsip_cstorage(void);
These functions query the manner in which complex values are stored. This can be in interleaved (real followed by imaginary part in one vector) or split format (two separate vectors).
Returns one of the enumerator values.
vsip_cmplx_mem complex_storage; // Allocate complex storage using the preferred method complex_storage = vsip_cstorage_f();