forked from gnuradio/gnuradio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfft.cc
246 lines (208 loc) · 6.97 KB
/
fft.cc
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
/* -*- c++ -*- */
/*
* Copyright 2003,2008,2011,2012,2020 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#include <gnuradio/fft/fft.h>
#include <gnuradio/gr_complex.h>
#include <gnuradio/sys_paths.h>
#include <fftw3.h>
#include <boost/format.hpp>
#ifdef _WIN32 // http://www.fftw.org/install/windows.html#DLLwisdom
static void my_fftw_write_char(char c, void* f) { fputc(c, (FILE*)f); }
#define fftw_export_wisdom_to_file(f) fftw_export_wisdom(my_fftw_write_char, (void*)(f))
#define fftwf_export_wisdom_to_file(f) fftwf_export_wisdom(my_fftw_write_char, (void*)(f))
#define fftwl_export_wisdom_to_file(f) fftwl_export_wisdom(my_fftw_write_char, (void*)(f))
static int my_fftw_read_char(void* f) { return fgetc((FILE*)f); }
#define fftw_import_wisdom_from_file(f) fftw_import_wisdom(my_fftw_read_char, (void*)(f))
#define fftwf_import_wisdom_from_file(f) \
fftwf_import_wisdom(my_fftw_read_char, (void*)(f))
#define fftwl_import_wisdom_from_file(f) \
fftwl_import_wisdom(my_fftw_read_char, (void*)(f))
#include <fcntl.h>
#include <io.h>
#define O_NOCTTY 0
#define O_NONBLOCK 0
#endif //_WIN32
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <filesystem>
#include <stdexcept>
#include <boost/interprocess/sync/file_lock.hpp>
namespace fs = std::filesystem;
namespace gr {
namespace fft {
static boost::mutex wisdom_thread_mutex;
boost::interprocess::file_lock wisdom_lock;
static bool wisdom_lock_init_done = false; // Modify while holding 'wisdom_thread_mutex'
boost::mutex& planner::mutex()
{
static boost::mutex s_planning_mutex;
return s_planning_mutex;
}
static std::string wisdom_filename()
{
static fs::path path;
path = fs::path(gr::appdata_path()) / ".gr_fftw_wisdom";
return path.string();
}
static void wisdom_lock_init()
{
if (wisdom_lock_init_done)
return;
const std::string wisdom_lock_file = wisdom_filename() + ".lock";
// std::cerr << "Creating FFTW wisdom lockfile: " << wisdom_lock_file << std::endl;
int fd =
open(wisdom_lock_file.c_str(), O_WRONLY | O_CREAT | O_NOCTTY | O_NONBLOCK, 0666);
if (fd < 0) {
throw std::runtime_error("Failed to create FFTW wisdom lockfile: " +
wisdom_lock_file);
}
close(fd);
wisdom_lock = boost::interprocess::file_lock(wisdom_lock_file.c_str());
wisdom_lock_init_done = true;
}
static void lock_wisdom()
{
wisdom_thread_mutex.lock();
wisdom_lock_init();
wisdom_lock.lock();
}
static void unlock_wisdom()
{
// Assumes 'lock_wisdom' has already been called (i.e. this file_lock is valid)
wisdom_lock.unlock();
wisdom_thread_mutex.unlock();
}
static void import_wisdom()
{
const std::string filename = wisdom_filename();
FILE* fp = fopen(filename.c_str(), "r");
if (fp != 0) {
int r = fftwf_import_wisdom_from_file(fp);
fclose(fp);
if (!r) {
gr::logger_ptr logger, debug_logger;
gr::configure_default_loggers(logger, debug_logger, "fft::import_wisdom");
GR_LOG_ERROR(logger,
boost::format("can't import wisdom from %s") % filename.c_str());
}
}
}
static void config_threading(int nthreads)
{
static int fftw_threads_inited = 0;
#ifdef FFTW3F_THREADS
if (fftw_threads_inited == 0) {
fftw_threads_inited = 1;
fftwf_init_threads();
}
fftwf_plan_with_nthreads(nthreads);
#endif
}
static void export_wisdom()
{
const std::string filename = wisdom_filename();
FILE* fp = fopen(filename.c_str(), "w");
if (fp != 0) {
fftwf_export_wisdom_to_file(fp);
fclose(fp);
} else {
gr::logger_ptr logger, debug_logger;
gr::configure_default_loggers(logger, debug_logger, "fft::export_wisdom");
GR_LOG_ERROR(logger,
boost::format("%s: %s") % filename.c_str() % strerror(errno));
}
}
// ----------------------------------------------------------------
template <class T, bool forward>
fft<T, forward>::fft(int fft_size, int nthreads)
: d_nthreads(nthreads), d_inbuf(fft_size), d_outbuf(fft_size)
{
gr::configure_default_loggers(d_logger, d_debug_logger, "fft_complex");
// Hold global mutex during plan construction and destruction.
planner::scoped_lock lock(planner::mutex());
static_assert(sizeof(fftwf_complex) == sizeof(gr_complex),
"The size of fftwf_complex is not equal to gr_complex");
if (fft_size <= 0) {
throw std::out_of_range("fft_impl_fftw: invalid fft_size");
}
config_threading(nthreads);
lock_wisdom();
import_wisdom(); // load prior wisdom from disk
initialize_plan(fft_size);
if (d_plan == NULL) {
GR_LOG_ERROR(d_logger, "creating plan failed");
throw std::runtime_error("Creating fftw plan failed");
}
export_wisdom(); // store new wisdom to disk
unlock_wisdom();
}
template <>
void fft<gr_complex, true>::initialize_plan(int fft_size)
{
d_plan = fftwf_plan_dft_1d(fft_size,
reinterpret_cast<fftwf_complex*>(d_inbuf.data()),
reinterpret_cast<fftwf_complex*>(d_outbuf.data()),
FFTW_FORWARD,
FFTW_MEASURE);
}
template <>
void fft<gr_complex, false>::initialize_plan(int fft_size)
{
d_plan = fftwf_plan_dft_1d(fft_size,
reinterpret_cast<fftwf_complex*>(d_inbuf.data()),
reinterpret_cast<fftwf_complex*>(d_outbuf.data()),
FFTW_BACKWARD,
FFTW_MEASURE);
}
template <>
void fft<float, true>::initialize_plan(int fft_size)
{
d_plan = fftwf_plan_dft_r2c_1d(fft_size,
d_inbuf.data(),
reinterpret_cast<fftwf_complex*>(d_outbuf.data()),
FFTW_MEASURE);
}
template <>
void fft<float, false>::initialize_plan(int fft_size)
{
d_plan = fftwf_plan_dft_c2r_1d(fft_size,
reinterpret_cast<fftwf_complex*>(d_inbuf.data()),
d_outbuf.data(),
FFTW_MEASURE);
}
template <class T, bool forward>
fft<T, forward>::~fft()
{
// Hold global mutex during plan construction and destruction.
planner::scoped_lock lock(planner::mutex());
fftwf_destroy_plan((fftwf_plan)d_plan);
}
template <class T, bool forward>
void fft<T, forward>::set_nthreads(int n)
{
if (n <= 0) {
throw std::out_of_range("gr::fft: invalid number of threads");
}
d_nthreads = n;
#ifdef FFTW3F_THREADS
fftwf_plan_with_nthreads(d_nthreads);
#endif
}
template <class T, bool forward>
void fft<T, forward>::execute()
{
fftwf_execute((fftwf_plan)d_plan);
}
template class fft<gr_complex, true>;
template class fft<gr_complex, false>;
template class fft<float, true>;
template class fft<float, false>;
} /* namespace fft */
} /* namespace gr */