annotate src/fftw-3.3.3/api/api.h @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 89f5e221ed7b
children
rev   line source
cannam@95 1 /*
cannam@95 2 * Copyright (c) 2003, 2007-11 Matteo Frigo
cannam@95 3 * Copyright (c) 2003, 2007-11 Massachusetts Institute of Technology
cannam@95 4 *
cannam@95 5 * This program is free software; you can redistribute it and/or modify
cannam@95 6 * it under the terms of the GNU General Public License as published by
cannam@95 7 * the Free Software Foundation; either version 2 of the License, or
cannam@95 8 * (at your option) any later version.
cannam@95 9 *
cannam@95 10 * This program is distributed in the hope that it will be useful,
cannam@95 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@95 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@95 13 * GNU General Public License for more details.
cannam@95 14 *
cannam@95 15 * You should have received a copy of the GNU General Public License
cannam@95 16 * along with this program; if not, write to the Free Software
cannam@95 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cannam@95 18 *
cannam@95 19 */
cannam@95 20
cannam@95 21 /* internal API definitions */
cannam@95 22 #ifndef __API_H__
cannam@95 23 #define __API_H__
cannam@95 24
cannam@95 25 #ifndef CALLING_FFTW /* defined in hook.c, when calling internal functions */
cannam@95 26 # define COMPILING_FFTW /* used for DLL symbol exporting in fftw3.h */
cannam@95 27 #endif
cannam@95 28
cannam@95 29 /* When compiling with GNU libtool on Windows, DLL_EXPORT is #defined
cannam@95 30 for compiling the shared-library code. In this case, we'll #define
cannam@95 31 FFTW_DLL to add dllexport attributes to the specified functions in
cannam@95 32 fftw3.h.
cannam@95 33
cannam@95 34 If we don't specify dllexport explicitly, then libtool
cannam@95 35 automatically exports all symbols. However, if we specify
cannam@95 36 dllexport explicitly for any functions, then libtool apparently
cannam@95 37 doesn't do any automatic exporting. (Not documented, grrr, but
cannam@95 38 this is the observed behavior with libtool 1.5.8.) Thus, using
cannam@95 39 this forces us to correctly dllexport every exported symbol, or
cannam@95 40 linking bench.exe will fail. This has the advantage of forcing
cannam@95 41 us to mark things correctly, which is necessary for other compilers
cannam@95 42 (such as MS VC++). */
cannam@95 43 #ifdef DLL_EXPORT
cannam@95 44 # define FFTW_DLL
cannam@95 45 #endif
cannam@95 46
cannam@95 47 /* just in case: force <fftw3.h> not to use C99 complex numbers
cannam@95 48 (we need this for IBM xlc because _Complex_I is treated specially
cannam@95 49 and is defined even if <complex.h> is not included) */
cannam@95 50 #define FFTW_NO_Complex
cannam@95 51
cannam@95 52 #include "fftw3.h"
cannam@95 53 #include "ifftw.h"
cannam@95 54 #include "rdft.h"
cannam@95 55
cannam@95 56 #ifdef __cplusplus
cannam@95 57 extern "C"
cannam@95 58 {
cannam@95 59 #endif /* __cplusplus */
cannam@95 60
cannam@95 61 /* the API ``plan'' contains both the kernel plan and problem */
cannam@95 62 struct X(plan_s) {
cannam@95 63 plan *pln;
cannam@95 64 problem *prb;
cannam@95 65 int sign;
cannam@95 66 };
cannam@95 67
cannam@95 68 /* shorthand */
cannam@95 69 typedef struct X(plan_s) apiplan;
cannam@95 70
cannam@95 71 /* complex type for internal use */
cannam@95 72 typedef R C[2];
cannam@95 73
cannam@95 74 #define EXTRACT_REIM(sign, c, r, i) X(extract_reim)(sign, (c)[0], r, i)
cannam@95 75
cannam@95 76 #define TAINT_UNALIGNED(p, flg) TAINT(p, ((flg) & FFTW_UNALIGNED) != 0)
cannam@95 77
cannam@95 78 tensor *X(mktensor_rowmajor)(int rnk, const int *n,
cannam@95 79 const int *niphys, const int *nophys,
cannam@95 80 int is, int os);
cannam@95 81
cannam@95 82 tensor *X(mktensor_iodims)(int rank, const X(iodim) *dims, int is, int os);
cannam@95 83 tensor *X(mktensor_iodims64)(int rank, const X(iodim64) *dims, int is, int os);
cannam@95 84 const int *X(rdft2_pad)(int rnk, const int *n, const int *nembed,
cannam@95 85 int inplace, int cmplx, int **nfree);
cannam@95 86
cannam@95 87 int X(many_kosherp)(int rnk, const int *n, int howmany);
cannam@95 88 int X(guru_kosherp)(int rank, const X(iodim) *dims,
cannam@95 89 int howmany_rank, const X(iodim) *howmany_dims);
cannam@95 90 int X(guru64_kosherp)(int rank, const X(iodim64) *dims,
cannam@95 91 int howmany_rank, const X(iodim64) *howmany_dims);
cannam@95 92
cannam@95 93 /* Note: FFTW_EXTERN is used for "internal" functions used in tests/hook.c */
cannam@95 94
cannam@95 95 FFTW_EXTERN printer *X(mkprinter_file)(FILE *f);
cannam@95 96
cannam@95 97 FFTW_EXTERN planner *X(the_planner)(void);
cannam@95 98 void X(configure_planner)(planner *plnr);
cannam@95 99
cannam@95 100 void X(mapflags)(planner *, unsigned);
cannam@95 101
cannam@95 102 apiplan *X(mkapiplan)(int sign, unsigned flags, problem *prb);
cannam@95 103
cannam@95 104 rdft_kind *X(map_r2r_kind)(int rank, const X(r2r_kind) * kind);
cannam@95 105
cannam@95 106 #ifdef __cplusplus
cannam@95 107 } /* extern "C" */
cannam@95 108 #endif /* __cplusplus */
cannam@95 109
cannam@95 110 #endif /* __API_H__ */