18#ifndef itkFFTWCommonExtended_h
19#define itkFFTWCommonExtended_h
21#if defined(ITK_USE_FFTWF) || defined(ITK_USE_FFTWD)
22# if defined(ITK_USE_CUFFTW)
44template <
typename TPixel>
53#if defined(ITK_USE_FFTWF)
59 using PixelType = float;
60 using ComplexType = fftwf_complex;
61 using PlanType = fftwf_plan;
65 Plan_dft_c2r_1d(
int n, ComplexType * in, PixelType * out,
unsigned int flags, [[maybe_unused]]
int threads = 1)
67# ifndef ITK_USE_CUFFTW
69 fftwf_plan_with_nthreads(threads);
71 PlanType plan = fftwf_plan_dft_c2r_1d(n, in, out, flags);
75 Plan_dft_c2r_2d(
int nx,
80 [[maybe_unused]]
int threads = 1)
82# ifndef ITK_USE_CUFFTW
84 fftwf_plan_with_nthreads(threads);
86 PlanType plan = fftwf_plan_dft_c2r_2d(nx, ny, in, out, flags);
90 Plan_dft_c2r_3d(
int nx,
96 [[maybe_unused]]
int threads = 1)
98# ifndef ITK_USE_CUFFTW
100 fftwf_plan_with_nthreads(threads);
102 PlanType plan = fftwf_plan_dft_c2r_3d(nx, ny, nz, in, out, flags);
106 Plan_dft_c2r(
int rank,
111 [[maybe_unused]]
int threads = 1)
113# ifndef ITK_USE_CUFFTW
115 fftwf_plan_with_nthreads(threads);
117 PlanType plan = fftwf_plan_dft_c2r(rank, n, in, out, flags);
122 Plan_dft_r2c_1d(
int n, PixelType * in, ComplexType * out,
unsigned int flags, [[maybe_unused]]
int threads = 1)
124# ifndef ITK_USE_CUFFTW
126 fftwf_plan_with_nthreads(threads);
128 PlanType plan = fftwf_plan_dft_r2c_1d(n, in, out, flags);
132 Plan_dft_r2c_2d(
int nx,
137 [[maybe_unused]]
int threads = 1)
139# ifndef ITK_USE_CUFFTW
141 fftwf_plan_with_nthreads(threads);
143 PlanType plan = fftwf_plan_dft_r2c_2d(nx, ny, in, out, flags);
147 Plan_dft_r2c_3d(
int nx,
153 [[maybe_unused]]
int threads = 1)
155# ifndef ITK_USE_CUFFTW
157 fftwf_plan_with_nthreads(threads);
159 PlanType plan = fftwf_plan_dft_r2c_3d(nx, ny, nz, in, out, flags);
163 Plan_dft_r2c(
int rank,
168 [[maybe_unused]]
int threads = 1)
170# ifndef ITK_USE_CUFFTW
172 fftwf_plan_with_nthreads(threads);
174 PlanType plan = fftwf_plan_dft_r2c(rank, n, in, out, flags);
178 Plan_dft_1d(
const int n,
183 [[maybe_unused]]
int threads = 1)
185# ifndef ITK_USE_CUFFTW
187 fftwf_plan_with_nthreads(threads);
189 PlanType plan = fftwf_plan_dft_1d(n, in, out, sign, flags);
200 DestroyPlan(PlanType p)
202 fftwf_destroy_plan(p);
209#if defined(ITK_USE_FFTWD)
214 using PixelType = double;
215 using ComplexType = fftw_complex;
216 using PlanType = fftw_plan;
220 Plan_dft_c2r_1d(
int n, ComplexType * in, PixelType * out,
unsigned int flags, [[maybe_unused]]
int threads = 1)
222# ifndef ITK_USE_CUFFTW
224 fftw_plan_with_nthreads(threads);
226 PlanType plan = fftw_plan_dft_c2r_1d(n, in, out, flags);
230 Plan_dft_c2r_2d(
int nx,
235 [[maybe_unused]]
int threads = 1)
237# ifndef ITK_USE_CUFFTW
239 fftw_plan_with_nthreads(threads);
241 PlanType plan = fftw_plan_dft_c2r_2d(nx, ny, in, out, flags);
245 Plan_dft_c2r_3d(
int nx,
251 [[maybe_unused]]
int threads = 1)
253# ifndef ITK_USE_CUFFTW
255 fftw_plan_with_nthreads(threads);
257 PlanType plan = fftw_plan_dft_c2r_3d(nx, ny, nz, in, out, flags);
261 Plan_dft_c2r(
int rank,
266 [[maybe_unused]]
int threads = 1)
268# ifndef ITK_USE_CUFFTW
270 fftw_plan_with_nthreads(threads);
272 PlanType plan = fftw_plan_dft_c2r(rank, n, in, out, flags);
277 Plan_dft_r2c_1d(
int n, PixelType * in, ComplexType * out,
unsigned int flags, [[maybe_unused]]
int threads = 1)
279# ifndef ITK_USE_CUFFTW
281 fftw_plan_with_nthreads(threads);
283 PlanType plan = fftw_plan_dft_r2c_1d(n, in, out, flags);
288 Plan_dft_r2c_2d(
int nx,
293 [[maybe_unused]]
int threads = 1)
295# ifndef ITK_USE_CUFFTW
297 fftw_plan_with_nthreads(threads);
299 PlanType plan = fftw_plan_dft_r2c_2d(nx, ny, in, out, flags);
304 Plan_dft_r2c_3d(
int nx,
310 [[maybe_unused]]
int threads = 1)
312# ifndef ITK_USE_CUFFTW
314 fftw_plan_with_nthreads(threads);
316 PlanType plan = fftw_plan_dft_r2c_3d(nx, ny, nz, in, out, flags);
321 Plan_dft_r2c(
int rank,
326 [[maybe_unused]]
int threads = 1)
328# ifndef ITK_USE_CUFFTW
330 fftw_plan_with_nthreads(threads);
332 PlanType plan = fftw_plan_dft_r2c(rank, n, in, out, flags);
336 Plan_dft_1d(
const int n,
341 [[maybe_unused]]
int threads = 1)
343# ifndef ITK_USE_CUFFTW
345 fftw_plan_with_nthreads(threads);
347 PlanType plan = fftw_plan_dft_1d(n, in, out, sign, flags);
357 DestroyPlan(PlanType p)
359 fftw_destroy_plan(p);
static std::mutex & GetLockMutex()
~ComplexToComplexProxy()=default
ComplexToComplexProxy()=default
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....