-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathfftw.cpp
112 lines (38 loc) · 1.88 KB
/
fftw.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include <stdint.h>
#include <xnl.h>
XNLEXPORT void * XI_CDECL alloc_complex(xint size){
}
XNLEXPORT void XI_CDECL free_complex(void * p){
}
XNLEXPORT void XI_CDECL fill_complex_double(void * p, xint offset, xint size, xint eoffset, xptr rnp){
}
XNLEXPORT void XI_CDECL fill_complex_double2(void * p, xint offset, xint size, xint eoffset, xptr rnp, xptr inp){
}
XNLEXPORT void XI_CDECL extract_complex_double(void * p, xint offset, xint size, xint eoffset, xptr rnp){
}
XNLEXPORT void XI_CDECL extract_complex_double2(void * p, xint offset, xint size, xint eoffset, xptr rnp, xptr inp){
}
XNLEXPORT double XI_CDECL get_complex_double(void * p, xint index, xbool bi){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_dft_3d(xint n0, xint n1, xint n2, void * in, void * out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_dft_2d(xint n0, xint n1, void * in, void * out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_dft_1d(xint n, void * in, void * out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_c2r_1d(xint n, void * in, xptr out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_r2c_1d(xint n, xptr in, void * out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_c2r_2d(xint n0, xint n1, void * in, xptr out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_r2c_2d(xint n0, xint n1, xptr in, void * out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_c2r_3d(xint n0, xint n1, xint n2, void * in, xptr out, xint sign, xint flag){
}
XNLEXPORT void * XI_CDECL create_fftw_plan_r2c_3d(xint n0, xint n1, xint n2, xptr in, void * out, xint sign, xint flag){
}
XNLEXPORT void XI_CDECL execute_fftw(void * p){
}
XNLEXPORT void XI_CDECL free_plan(void * p){
}