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