annotate src/fftw-3.3.8/doc/upgrading.texi @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents bd3cc4d1df30
children
rev   line source
cannam@167 1 @node Upgrading from FFTW version 2, Installation and Customization, Calling FFTW from Legacy Fortran, Top
cannam@167 2 @chapter Upgrading from FFTW version 2
cannam@167 3
cannam@167 4 In this chapter, we outline the process for updating codes designed for
cannam@167 5 the older FFTW 2 interface to work with FFTW 3. The interface for FFTW
cannam@167 6 3 is not backwards-compatible with the interface for FFTW 2 and earlier
cannam@167 7 versions; codes written to use those versions will fail to link with
cannam@167 8 FFTW 3. Nor is it possible to write ``compatibility wrappers'' to
cannam@167 9 bridge the gap (at least not efficiently), because FFTW 3 has different
cannam@167 10 semantics from previous versions. However, upgrading should be a
cannam@167 11 straightforward process because the data formats are identical and the
cannam@167 12 overall style of planning/execution is essentially the same.
cannam@167 13
cannam@167 14 Unlike FFTW 2, there are no separate header files for real and complex
cannam@167 15 transforms (or even for different precisions) in FFTW 3; all interfaces
cannam@167 16 are defined in the @code{<fftw3.h>} header file.
cannam@167 17
cannam@167 18 @heading Numeric Types
cannam@167 19
cannam@167 20 The main difference in data types is that @code{fftw_complex} in FFTW 2
cannam@167 21 was defined as a @code{struct} with macros @code{c_re} and @code{c_im}
cannam@167 22 for accessing the real/imaginary parts. (This is binary-compatible with
cannam@167 23 FFTW 3 on any machine except perhaps for some older Crays in single
cannam@167 24 precision.) The equivalent macros for FFTW 3 are:
cannam@167 25
cannam@167 26 @example
cannam@167 27 #define c_re(c) ((c)[0])
cannam@167 28 #define c_im(c) ((c)[1])
cannam@167 29 @end example
cannam@167 30
cannam@167 31 This does not work if you are using the C99 complex type, however,
cannam@167 32 unless you insert a @code{double*} typecast into the above macros
cannam@167 33 (@pxref{Complex numbers}).
cannam@167 34
cannam@167 35 Also, FFTW 2 had an @code{fftw_real} typedef that was an alias for
cannam@167 36 @code{double} (in double precision). In FFTW 3 you should just use
cannam@167 37 @code{double} (or whatever precision you are employing).
cannam@167 38
cannam@167 39 @heading Plans
cannam@167 40
cannam@167 41 The major difference between FFTW 2 and FFTW 3 is in the
cannam@167 42 planning/execution division of labor. In FFTW 2, plans were found for a
cannam@167 43 given transform size and type, and then could be applied to @emph{any}
cannam@167 44 arrays and for @emph{any} multiplicity/stride parameters. In FFTW 3,
cannam@167 45 you specify the particular arrays, stride parameters, etcetera when
cannam@167 46 creating the plan, and the plan is then executed for @emph{those} arrays
cannam@167 47 (unless the guru interface is used) and @emph{those} parameters
cannam@167 48 @emph{only}. (FFTW 2 had ``specific planner'' routines that planned for
cannam@167 49 a particular array and stride, but the plan could still be used for
cannam@167 50 other arrays and strides.) That is, much of the information that was
cannam@167 51 formerly specified at execution time is now specified at planning time.
cannam@167 52
cannam@167 53 Like FFTW 2's specific planner routines, the FFTW 3 planner overwrites
cannam@167 54 the input/output arrays unless you use @code{FFTW_ESTIMATE}.
cannam@167 55
cannam@167 56 FFTW 2 had separate data types @code{fftw_plan}, @code{fftwnd_plan},
cannam@167 57 @code{rfftw_plan}, and @code{rfftwnd_plan} for complex and real one- and
cannam@167 58 multi-dimensional transforms, and each type had its own @samp{destroy}
cannam@167 59 function. In FFTW 3, all plans are of type @code{fftw_plan} and all are
cannam@167 60 destroyed by @code{fftw_destroy_plan(plan)}.
cannam@167 61
cannam@167 62 Where you formerly used @code{fftw_create_plan} and @code{fftw_one} to
cannam@167 63 plan and compute a single 1d transform, you would now use
cannam@167 64 @code{fftw_plan_dft_1d} to plan the transform. If you used the generic
cannam@167 65 @code{fftw} function to execute the transform with multiplicity
cannam@167 66 (@code{howmany}) and stride parameters, you would now use the advanced
cannam@167 67 interface @code{fftw_plan_many_dft} to specify those parameters. The
cannam@167 68 plans are now executed with @code{fftw_execute(plan)}, which takes all
cannam@167 69 of its parameters (including the input/output arrays) from the plan.
cannam@167 70
cannam@167 71 In-place transforms no longer interpret their output argument as scratch
cannam@167 72 space, nor is there an @code{FFTW_IN_PLACE} flag. You simply pass the
cannam@167 73 same pointer for both the input and output arguments. (Previously, the
cannam@167 74 output @code{ostride} and @code{odist} parameters were ignored for
cannam@167 75 in-place transforms; now, if they are specified via the advanced
cannam@167 76 interface, they are significant even in the in-place case, although they
cannam@167 77 should normally equal the corresponding input parameters.)
cannam@167 78
cannam@167 79 The @code{FFTW_ESTIMATE} and @code{FFTW_MEASURE} flags have the same
cannam@167 80 meaning as before, although the planning time will differ. You may also
cannam@167 81 consider using @code{FFTW_PATIENT}, which is like @code{FFTW_MEASURE}
cannam@167 82 except that it takes more time in order to consider a wider variety of
cannam@167 83 algorithms.
cannam@167 84
cannam@167 85 For multi-dimensional complex DFTs, instead of @code{fftwnd_create_plan}
cannam@167 86 (or @code{fftw2d_create_plan} or @code{fftw3d_create_plan}), followed by
cannam@167 87 @code{fftwnd_one}, you would use @code{fftw_plan_dft} (or
cannam@167 88 @code{fftw_plan_dft_2d} or @code{fftw_plan_dft_3d}). followed by
cannam@167 89 @code{fftw_execute}. If you used @code{fftwnd} to to specify strides
cannam@167 90 etcetera, you would instead specify these via @code{fftw_plan_many_dft}.
cannam@167 91
cannam@167 92 The analogues to @code{rfftw_create_plan} and @code{rfftw_one} with
cannam@167 93 @code{FFTW_REAL_TO_COMPLEX} or @code{FFTW_COMPLEX_TO_REAL} directions
cannam@167 94 are @code{fftw_plan_r2r_1d} with kind @code{FFTW_R2HC} or
cannam@167 95 @code{FFTW_HC2R}, followed by @code{fftw_execute}. The stride etcetera
cannam@167 96 arguments of @code{rfftw} are now in @code{fftw_plan_many_r2r}.
cannam@167 97
cannam@167 98 Instead of @code{rfftwnd_create_plan} (or @code{rfftw2d_create_plan} or
cannam@167 99 @code{rfftw3d_create_plan}) followed by
cannam@167 100 @code{rfftwnd_one_real_to_complex} or
cannam@167 101 @code{rfftwnd_one_complex_to_real}, you now use @code{fftw_plan_dft_r2c}
cannam@167 102 (or @code{fftw_plan_dft_r2c_2d} or @code{fftw_plan_dft_r2c_3d}) or
cannam@167 103 @code{fftw_plan_dft_c2r} (or @code{fftw_plan_dft_c2r_2d} or
cannam@167 104 @code{fftw_plan_dft_c2r_3d}), respectively, followed by
cannam@167 105 @code{fftw_execute}. As usual, the strides etcetera of
cannam@167 106 @code{rfftwnd_real_to_complex} or @code{rfftwnd_complex_to_real} are no
cannam@167 107 specified in the advanced planner routines,
cannam@167 108 @code{fftw_plan_many_dft_r2c} or @code{fftw_plan_many_dft_c2r}.
cannam@167 109
cannam@167 110 @heading Wisdom
cannam@167 111
cannam@167 112 In FFTW 2, you had to supply the @code{FFTW_USE_WISDOM} flag in order to
cannam@167 113 use wisdom; in FFTW 3, wisdom is always used. (You could simulate the
cannam@167 114 FFTW 2 wisdom-less behavior by calling @code{fftw_forget_wisdom} after
cannam@167 115 every planner call.)
cannam@167 116
cannam@167 117 The FFTW 3 wisdom import/export routines are almost the same as before
cannam@167 118 (although the storage format is entirely different). There is one
cannam@167 119 significant difference, however. In FFTW 2, the import routines would
cannam@167 120 never read past the end of the wisdom, so you could store extra data
cannam@167 121 beyond the wisdom in the same file, for example. In FFTW 3, the
cannam@167 122 file-import routine may read up to a few hundred bytes past the end of
cannam@167 123 the wisdom, so you cannot store other data just beyond it.@footnote{We
cannam@167 124 do our own buffering because GNU libc I/O routines are horribly slow for
cannam@167 125 single-character I/O, apparently for thread-safety reasons (whether you
cannam@167 126 are using threads or not).}
cannam@167 127
cannam@167 128 Wisdom has been enhanced by additional humility in FFTW 3: whereas FFTW
cannam@167 129 2 would re-use wisdom for a given transform size regardless of the
cannam@167 130 stride etc., in FFTW 3 wisdom is only used with the strides etc. for
cannam@167 131 which it was created. Unfortunately, this means FFTW 3 has to create
cannam@167 132 new plans from scratch more often than FFTW 2 (in FFTW 2, planning
cannam@167 133 e.g. one transform of size 1024 also created wisdom for all smaller
cannam@167 134 powers of 2, but this no longer occurs).
cannam@167 135
cannam@167 136 FFTW 3 also has the new routine @code{fftw_import_system_wisdom} to
cannam@167 137 import wisdom from a standard system-wide location.
cannam@167 138
cannam@167 139 @heading Memory allocation
cannam@167 140
cannam@167 141 In FFTW 3, we recommend allocating your arrays with @code{fftw_malloc}
cannam@167 142 and deallocating them with @code{fftw_free}; this is not required, but
cannam@167 143 allows optimal performance when SIMD acceleration is used. (Those two
cannam@167 144 functions actually existed in FFTW 2, and worked the same way, but were
cannam@167 145 not documented.)
cannam@167 146
cannam@167 147 In FFTW 2, there were @code{fftw_malloc_hook} and @code{fftw_free_hook}
cannam@167 148 functions that allowed the user to replace FFTW's memory-allocation
cannam@167 149 routines (e.g. to implement different error-handling, since by default
cannam@167 150 FFTW prints an error message and calls @code{exit} to abort the program
cannam@167 151 if @code{malloc} returns @code{NULL}). These hooks are not supported in
cannam@167 152 FFTW 3; those few users who require this functionality can just
cannam@167 153 directly modify the memory-allocation routines in FFTW (they are defined
cannam@167 154 in @code{kernel/alloc.c}).
cannam@167 155
cannam@167 156 @heading Fortran interface
cannam@167 157
cannam@167 158 In FFTW 2, the subroutine names were obtained by replacing @samp{fftw_}
cannam@167 159 with @samp{fftw_f77}; in FFTW 3, you replace @samp{fftw_} with
cannam@167 160 @samp{dfftw_} (or @samp{sfftw_} or @samp{lfftw_}, depending upon the
cannam@167 161 precision).
cannam@167 162
cannam@167 163 In FFTW 3, we have begun recommending that you always declare the type
cannam@167 164 used to store plans as @code{integer*8}. (Too many people didn't notice
cannam@167 165 our instruction to switch from @code{integer} to @code{integer*8} for
cannam@167 166 64-bit machines.)
cannam@167 167
cannam@167 168 In FFTW 3, we provide a @code{fftw3.f} ``header file'' to include in
cannam@167 169 your code (and which is officially installed on Unix systems). (In FFTW
cannam@167 170 2, we supplied a @code{fftw_f77.i} file, but it was not installed.)
cannam@167 171
cannam@167 172 Otherwise, the C-Fortran interface relationship is much the same as it
cannam@167 173 was before (e.g. return values become initial parameters, and
cannam@167 174 multi-dimensional arrays are in column-major order). Unlike FFTW 2, we
cannam@167 175 do provide some support for wisdom import/export in Fortran
cannam@167 176 (@pxref{Wisdom of Fortran?}).
cannam@167 177
cannam@167 178 @heading Threads
cannam@167 179
cannam@167 180 Like FFTW 2, only the execution routines are thread-safe. All planner
cannam@167 181 routines, etcetera, should be called by only a single thread at a time
cannam@167 182 (@pxref{Thread safety}). @emph{Unlike} FFTW 2, there is no special
cannam@167 183 @code{FFTW_THREADSAFE} flag for the planner to allow a given plan to be
cannam@167 184 usable by multiple threads in parallel; this is now the case by default.
cannam@167 185
cannam@167 186 The multi-threaded version of FFTW 2 required you to pass the number of
cannam@167 187 threads each time you execute the transform. The number of threads is
cannam@167 188 now stored in the plan, and is specified before the planner is called by
cannam@167 189 @code{fftw_plan_with_nthreads}. The threads initialization routine used
cannam@167 190 to be called @code{fftw_threads_init} and would return zero on success;
cannam@167 191 the new routine is called @code{fftw_init_threads} and returns zero on
cannam@167 192 failure. @xref{Multi-threaded FFTW}.
cannam@167 193
cannam@167 194 There is no separate threads header file in FFTW 3; all the function
cannam@167 195 prototypes are in @code{<fftw3.h>}. However, you still have to link to
cannam@167 196 a separate library (@code{-lfftw3_threads -lfftw3 -lm} on Unix), as well as
cannam@167 197 to the threading library (e.g. POSIX threads on Unix).
cannam@167 198