-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfftw_test.c
303 lines (208 loc) · 5.58 KB
/
fftw_test.c
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# include <stdlib.h>
# include <stdio.h>
#include <time.h>
#include <sys/time.h>
# include <fftw3.h>
int main ( );
void test01 ( );
double frand ( );
double WTime ( );
void timestamp ( );
/******************************************************************************/
int main ( )
/******************************************************************************/
/*
Purpose:
MAIN is the main program for FFTW3_PRB.
Discussion:
FFTW3_PRB tests the FFTW3 library.
Licensing:
This code is distributed under the GNU LGPL license.
Modified:
05 November 2007
Author:
John Burkardt
*/
{
timestamp ( );
printf ( "\n" );
printf ( "FFTW3_TEST\n" );
printf ( " C version\n" );
printf ( " Test the FFTW3 library.\n" );
test01 ( );
/*
Terminate.
*/
printf ( "\n" );
printf ( "FFTW_TEST\n" );
printf ( " Normal end of execution.\n" );
printf ( "\n" );
timestamp ( );
return 0;
}
/******************************************************************************/
void test01 ( )
/******************************************************************************/
/*
Purpose:
TEST01: apply FFT to complex 1D data.
Discussion:
In this example, we generate N=100 random complex values stored as
a vector of type FFTW_COMPLEX named "IN".
We have FFTW3 compute the Fourier transform of this data named "OUT".
We have FFTW3 compute the inverse Fourier transform of "OUT" to get
"IN2", which should be the original input data, scaled by N.
Licensing:
This code is distributed under the GNU LGPL license.
Modified:
04 November 2007
Author:
John Burkardt
*/
{
int i;
fftw_complex *in;
fftw_complex *in2;
int n = 10000;
fftw_complex *out;
fftw_plan plan_backward;
fftw_plan plan_forward;
unsigned int seed = 123456789;
printf ( "\n" );
printf ( "TEST01\n" );
printf ( " Demonstrate FFTW3 on a single vector of complex data.\n" );
printf ( "\n" );
printf ( " Transform data to FFT coefficients.\n" );
printf ( " Backtransform FFT coefficients to recover data.\n" );
printf ( " Compare recovered data to original data.\n" );
/*
Create the input array.
*/
in = fftw_malloc ( sizeof ( fftw_complex ) * n );
srand ( seed );
double tbeg = WTime();
for ( i = 0; i < n; i++ )
{
in[i][0] = rand ( );
in[i][1] = rand ( );
}
printf ( "\n" );
printf ( " Input Data:\n" );
printf ( "\n" );
for ( i = 0; i < n; i++ )
{
printf ( " %3d %12f %12f\n", i, in[i][0], in[i][1] );
}
/*
Create the output array.
*/
out = fftw_malloc ( sizeof ( fftw_complex ) * n );
plan_forward = fftw_plan_dft_1d ( n, in, out, FFTW_FORWARD, FFTW_ESTIMATE );
fftw_execute ( plan_forward );
printf ( "\n" );
printf ( " Output FFT Coefficients:\n" );
printf ( "\n" );
for ( i = 0; i < n; i++ )
{
printf ( " %3d %12f %12f\n", i, out[i][0], out[i][1] );
}
/*
Recreate the input array.
*/
in2 = fftw_malloc ( sizeof ( fftw_complex ) * n );
plan_backward = fftw_plan_dft_1d ( n, out, in2, FFTW_BACKWARD, FFTW_ESTIMATE );
fftw_execute ( plan_backward );
printf ( "\n" );
printf ( " Recovered input data:\n" );
printf ( "\n" );
for ( i = 0; i < n; i++ )
{
printf ( " %3d %12f %12f\n", i, in2[i][0], in2[i][1] );
}
printf ( "\n" );
printf ( " Recovered input data divided by N:\n" );
printf ( "\n" );
for ( i = 0; i < n; i++ )
{
printf ( " %3d %12f %12f\n", i,
in2[i][0] / ( double ) ( n ), in2[i][1] / ( double ) ( n ) );
}
/*
Free up the allocated memory.
*/
fftw_destroy_plan ( plan_forward );
fftw_destroy_plan ( plan_backward );
fftw_free ( in );
fftw_free ( in2 );
fftw_free ( out );
double tend = WTime();
printf("Fourier coefficient calculation took %g s\n", tend - tbeg);
return;
}
//*****************************************************************************/
double frand ( )
//*****************************************************************************/
/*
Purpose:
FRAND returns random values between 0 and 1.
Discussion:
The random seed can be set by a call to SRAND ( unsigned int ).
Note that Kernighan and Ritchie suggest using
( ( double ) rand ( ) / ( RAND_MAX + 1 ) )
but this seems to result in integer overflow for RAND_MAX + 1,
resulting in negative values for the random numbers.
Licensing:
This code is distributed under the GNU LGPL license.
Modified:
23 October 2005
Author:
John Burkardt
Reference:
Brian Kernighan, Dennis Ritchie,
The C Programming Language,
Prentice Hall, 1988.
Parameters:
Output, double FRAND, a random value between 0 and 1.
*/
{
double value;
value = ( ( double ) rand ( ) / ( RAND_MAX ) );
return value;
}
//*****************************************************************************/
void timestamp ( )
/******************************************************************************/
/*
Purpose:
TIMESTAMP prints the current YMDHMS date as a time stamp.
Example:
31 May 2001 09:45:54 AM
Licensing:
This code is distributed under the GNU LGPL license.
Modified:
24 September 2003
Author:
John Burkardt
Parameters:
None
*/
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct tm *tm;
size_t len;
time_t now;
now = time ( NULL );
tm = localtime ( &now );
len = strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm );
printf ( "%s\n", time_buffer );
return;
# undef TIME_SIZE
}
double
WTime(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec + tv.tv_usec / 1e6;
}