/* * Copyright (c) 2003, 2006 Matteo Frigo * Copyright (c) 2003, 2006 Massachusetts Institute of Technology * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ /* internal API definitions */ #ifndef __API_H__ #define __API_H__ #ifndef CALLING_FFTW /* defined in hook.c, when calling internal functions */ # define COMPILING_FFTW /* used for DLL symbol exporting in fftw3.h */ #endif /* When compiling with GNU libtool on Windows, DLL_EXPORT is #defined for compiling the shared-library code. In this case, we'll #define FFTW_DLL to add dllexport attributes to the specified functions in fftw3.h. If we don't specify dllexport explicitly, then libtool automatically exports all symbols. However, if we specify dllexport explicitly for any functions, then libtool apparently doesn't do any automatic exporting. (Not documented, grrr, but this is the observed behavior with libtool 1.5.8.) Thus, using this forces us to correctly dllexport every exported symbol, or linking bench.exe will fail. This has the advantage of forcing us to mark things correctly, which is necessary for other compilers (such as MS VC++). */ #ifdef DLL_EXPORT # define FFTW_DLL #endif /* just in case: force not to use C99 complex numbers (we need this for IBM xlc because _Complex_I is treated specially and is defined even if is not included) */ #define FFTW_NO_Complex #include "fftw3.h" #include "ifftw.h" /* the API ``plan'' contains both the kernel plan and problem */ struct X(plan_s) { plan *pln; problem *prb; int sign; }; /* shorthand */ typedef struct X(plan_s) apiplan; /* complex type for internal use */ typedef R C[2]; void X(extract_reim)(int sign, C *c, R **r, R **i); #define TAINT_UNALIGNED(p, flg) TAINT(p, ((flg) & FFTW_UNALIGNED) != 0) tensor *X(mktensor_rowmajor)(int rnk, const int *n, const int *niphys, const int *nophys, int is, int os); tensor *X(mktensor_iodims)(int rank, const X(iodim) *dims, int is, int os); const int *X(rdft2_pad)(int rnk, const int *n, const int *nembed, int inplace, int cmplx, int **nfree); int X(many_kosherp)(int rnk, const int *n, int howmany); int X(guru_kosherp)(int rank, const X(iodim) *dims, int howmany_rank, const X(iodim) *howmany_dims); /* Note: FFTW_EXTERN is used for "internal" functions used in tests/hook.c */ FFTW_EXTERN printer *X(mkprinter_file)(FILE *f); FFTW_EXTERN planner *X(the_planner)(void); void X(configure_planner)(planner *plnr); void X(mapflags)(planner *, unsigned); apiplan *X(mkapiplan)(int sign, unsigned flags, problem *prb); #endif /* __API_H__ */