MONC
fftw.F90
Go to the documentation of this file.
1 
3 module fftw_mod
4  use, intrinsic :: iso_c_binding
5  implicit none
6 
7 #ifndef TEST_MODE
8  private
9 #endif
10 
11  include 'fftw3.f03'
12 
13  public c_double_complex, c_ptr, fftw_backward, fftw_forward, fftw_estimate, fftw_plan_many_dft_r2c, &
14  fftw_plan_many_dft_c2r, fftw_plan_many_dft, fftw_execute_dft, fftw_execute_dft_c2r, fftw_execute_dft_r2c, fftw_destroy_plan
15 end module fftw_mod
fftw_mod
Wrapper around the FFTW3 bindings. This will privatise by default all of FFTW3 apart from the calls t...
Definition: fftw.F90:3