cannam@127
|
1 FFTW 3.3.5:
|
cannam@127
|
2
|
cannam@127
|
3 * New SIMD support:
|
cannam@127
|
4 - Power8 VSX instructions in single and double precision.
|
cannam@127
|
5 To use, add --enable-vsx to configure.
|
cannam@127
|
6 - Support for AVX2 (256-bit FMA instructions).
|
cannam@127
|
7 To use, add --enable-avx2 to configure.
|
cannam@127
|
8 - Experimental support for AVX512 and KCVI. (--enable-avx512, --enable-kcvi)
|
cannam@127
|
9 This code is expected to work but the FFTW maintainers do not have
|
cannam@127
|
10 hardware to test it.
|
cannam@127
|
11 - Support for AVX128/FMA (for some AMD machines) (--enable-avx128-fma)
|
cannam@127
|
12 - Double precision Neon SIMD for aarch64.
|
cannam@127
|
13 This code is expected to work but the FFTW maintainers do not have
|
cannam@127
|
14 hardware to test it.
|
cannam@127
|
15 - generic SIMD support using gcc vector intrinsics
|
cannam@127
|
16 * Add fftw_make_planner_thread_safe() API
|
cannam@127
|
17 * fix #18 (disable float128 for CUDACC)
|
cannam@127
|
18 * fix #19: missing Fortran interface for fftwq_alloc_real
|
cannam@127
|
19 * fix #21 (don't use float128 on Portland compilers, which pretend to be gcc)
|
cannam@127
|
20 * fix: Avoid segfaults due to double free in MPI transpose
|
cannam@127
|
21
|
cannam@127
|
22 * Special note for distribution maintainers: Although FFTW supports a
|
cannam@127
|
23 zillion SIMD instruction sets, enabling them all at the same time is
|
cannam@127
|
24 a bad idea, because it increases the planning time for minimal gain.
|
cannam@127
|
25 We recommend that general-purpose x86 distributions only enable SSE2
|
cannam@127
|
26 and perhaps AVX. Users who care about the last ounce of performance
|
cannam@127
|
27 should recompile FFTW themselves.
|
cannam@127
|
28
|
cannam@127
|
29 FFTW 3.3.4
|
cannam@127
|
30
|
cannam@127
|
31 * New functions fftw_alignment_of (to check whether two arrays are
|
cannam@127
|
32 equally aligned for the purposes of applying a plan) and fftw_sprint_plan
|
cannam@127
|
33 (to output a description of plan to a string).
|
cannam@127
|
34
|
cannam@127
|
35 * Bugfix in fftw-wisdom-to-conf; thanks to Florian Oppermann for the
|
cannam@127
|
36 bug report.
|
cannam@127
|
37
|
cannam@127
|
38 * Fixed manual to work with texinfo-5.
|
cannam@127
|
39
|
cannam@127
|
40 * Increased timing interval on x86_64 to reduce timing errors.
|
cannam@127
|
41
|
cannam@127
|
42 * Default to Win32 threads, not pthreads, if both are present.
|
cannam@127
|
43
|
cannam@127
|
44 * Various build-script fixes.
|
cannam@127
|
45
|
cannam@127
|
46 FFTW 3.3.3
|
cannam@127
|
47
|
cannam@127
|
48 * Fix deadlock bug in MPI transforms (thanks to Michael Pippig for the
|
cannam@127
|
49 bug report and patch, and to Graham Dennis for the bug report).
|
cannam@127
|
50
|
cannam@127
|
51 * Use 128-bit ARM NEON instructions instead of 64-bits. This change
|
cannam@127
|
52 appears to speed up even ARM processors with a 64-bit NEON pipe.
|
cannam@127
|
53
|
cannam@127
|
54 * Speed improvements for single-precision AVX.
|
cannam@127
|
55
|
cannam@127
|
56 * Speed up planner on machines without "official" cycle counters, such as ARM.
|
cannam@127
|
57
|
cannam@127
|
58 FFTW 3.3.2
|
cannam@127
|
59
|
cannam@127
|
60 * Removed an archaic stack-alignment hack that was failing with
|
cannam@127
|
61 gcc-4.7/i386.
|
cannam@127
|
62
|
cannam@127
|
63 * Added stack-alignment hack necessary for gcc on Windows/i386. We
|
cannam@127
|
64 will regret this in ten years (see previous change).
|
cannam@127
|
65
|
cannam@127
|
66 * Fix incompatibility with Intel icc which pretends to be gcc
|
cannam@127
|
67 but does not support quad precision.
|
cannam@127
|
68
|
cannam@127
|
69 * make libfftw{threads,mpi} depend upon libfftw when using libtool;
|
cannam@127
|
70 this is consistent with most other libraries and simplifies the life
|
cannam@127
|
71 of various distributors of GNU/Linux.
|
cannam@127
|
72
|
cannam@127
|
73 FFTW 3.3.1
|
cannam@127
|
74
|
cannam@127
|
75 * Changes since 3.3.1-beta1:
|
cannam@127
|
76
|
cannam@127
|
77 - Reduced planning time in estimate mode for sizes with large
|
cannam@127
|
78 prime factors.
|
cannam@127
|
79
|
cannam@127
|
80 - Added AVX autodetection under Visual Studio. Thanks Carsten
|
cannam@127
|
81 Steger for submitting the necessary code.
|
cannam@127
|
82
|
cannam@127
|
83 - Modern Fortran interface now uses a separate fftw3l.f03 interface
|
cannam@127
|
84 file for the long double interface, which is not supported by
|
cannam@127
|
85 some Fortran compilers. Provided new fftw3q.f03 interface file
|
cannam@127
|
86 to access the quadruple-precision FFTW routines with recent
|
cannam@127
|
87 versions of gcc/gfortran.
|
cannam@127
|
88
|
cannam@127
|
89 * Added support for the NEON extensions to the ARM ISA. (Note to beta
|
cannam@127
|
90 users: an ARM cycle counter is not yet implemented; please contact
|
cannam@127
|
91 fftw@fftw.org if you know how to do it right.)
|
cannam@127
|
92
|
cannam@127
|
93 * MPI code now compiles even if mpicc is a C++ compiler; thanks to
|
cannam@127
|
94 Kyle Spyksma for the bug report.
|
cannam@127
|
95
|
cannam@127
|
96 FFTW 3.3
|
cannam@127
|
97
|
cannam@127
|
98 * Changes since 3.3-beta1:
|
cannam@127
|
99
|
cannam@127
|
100 - Compiling OpenMP support (--enable-openmp) now installs a
|
cannam@127
|
101 fftw3_omp library, instead of fftw3_threads, so that OpenMP
|
cannam@127
|
102 and POSIX threads (--enable-threads) libraries can be built
|
cannam@127
|
103 and installed at the same time.
|
cannam@127
|
104
|
cannam@127
|
105 - Various minor compilation fixes, corrections of manual typos, and
|
cannam@127
|
106 improvements to the benchmark test program.
|
cannam@127
|
107
|
cannam@127
|
108 * Add support for the AVX extensions to x86 and x86-64. The AVX code
|
cannam@127
|
109 works with 16-byte alignment (as opposed to 32-byte alignment),
|
cannam@127
|
110 so there is no ABI change compared to FFTW 3.2.2.
|
cannam@127
|
111
|
cannam@127
|
112 * Added Fortran 2003 interface, which should be usable on most modern
|
cannam@127
|
113 Fortran compilers (e.g. gfortran) and provides type-checked access
|
cannam@127
|
114 to the the C FFTW interface. (The legacy Fortran-77 interface is
|
cannam@127
|
115 still included also.)
|
cannam@127
|
116
|
cannam@127
|
117 * Added MPI distributed-memory transforms. Compared to 3.3alpha,
|
cannam@127
|
118 the major changes in the MPI transforms are:
|
cannam@127
|
119 - Fixed some deadlock and crashing bugs.
|
cannam@127
|
120 - Added Fortran 2003 interface.
|
cannam@127
|
121 - Added new-array execute functions for MPI plans.
|
cannam@127
|
122 - Eliminated use of large MPI tags, since Cray MPI requires tags < 2^24;
|
cannam@127
|
123 thanks to Jonathan Bentz for the bug report.
|
cannam@127
|
124 - Expanded documentation.
|
cannam@127
|
125 - 'make check' now runs MPI tests
|
cannam@127
|
126 - Some ABI changes - not binary-compatible with 3.3alpha MPI.
|
cannam@127
|
127
|
cannam@127
|
128 * Add support for quad-precision __float128 in gcc 4.6 or later (on x86.
|
cannam@127
|
129 x86-64, and Itanium). The new routines use the fftwq_ prefix.
|
cannam@127
|
130
|
cannam@127
|
131 * Removed support for MIPS paired-single instructions due to lack of
|
cannam@127
|
132 available hardware for testing. Users who want this functionality
|
cannam@127
|
133 should continue using FFTW 3.2.x. (Note that FFTW 3.3 still works
|
cannam@127
|
134 on MIPS; this only concerns special instructions available on some
|
cannam@127
|
135 MIPS chips.)
|
cannam@127
|
136
|
cannam@127
|
137 * Removed support for the Cell Broadband Engine. Cell users should
|
cannam@127
|
138 use FFTW 3.2.x.
|
cannam@127
|
139
|
cannam@127
|
140 * New convenience functions fftw_alloc_real and fftw_alloc_complex
|
cannam@127
|
141 to use fftw_malloc for real and complex arrays without typecasts
|
cannam@127
|
142 or sizeof.
|
cannam@127
|
143
|
cannam@127
|
144 * New convenience functions fftw_export_wisdom_to_filename and
|
cannam@127
|
145 fftw_import_wisdom_from_filename that export/import wisdom
|
cannam@127
|
146 to a file, which don't require you to open/close the file yourself.
|
cannam@127
|
147
|
cannam@127
|
148 * New function fftw_cost to return FFTW's internal cost metric for
|
cannam@127
|
149 a given plan; thanks to Rhys Ulerich and Nathanael Schaeffer for the
|
cannam@127
|
150 suggestion.
|
cannam@127
|
151
|
cannam@127
|
152 * The --enable-sse2 configure flag now works in both double and single
|
cannam@127
|
153 precision (and is equivalent to --enable-sse in the latter case).
|
cannam@127
|
154
|
cannam@127
|
155 * Remove --enable-portable-binary flag: we new produce portable binaries
|
cannam@127
|
156 by default.
|
cannam@127
|
157
|
cannam@127
|
158 * Remove the automatic detection of native architecture flag for gcc
|
cannam@127
|
159 which was introduced in fftw-3.1, since new gcc supports -mtune=native.
|
cannam@127
|
160 Remove the --with-gcc-arch flag; if you want to specify a particlar
|
cannam@127
|
161 arch to configure, use ./configure CC="gcc -mtune=...".
|
cannam@127
|
162
|
cannam@127
|
163 * --with-our-malloc16 configure flag is now renamed --with-our-malloc.
|
cannam@127
|
164
|
cannam@127
|
165 * Fixed build problem failure when srand48 declaration is missing;
|
cannam@127
|
166 thanks to Ralf Wildenhues for the bug report.
|
cannam@127
|
167
|
cannam@127
|
168 * Fixed bug in fftw_set_timelimit: ensure that a negative timelimit
|
cannam@127
|
169 is equivalent to no timelimit in all cases. Thanks to William Andrew
|
cannam@127
|
170 Burnson for the bug report.
|
cannam@127
|
171
|
cannam@127
|
172 * Fixed stack-overflow problem on OpenBSD caused by using alloca with
|
cannam@127
|
173 too large a buffer.
|
cannam@127
|
174
|
cannam@127
|
175 FFTW 3.2.2
|
cannam@127
|
176
|
cannam@127
|
177 * Improve performance of some copy operations of complex arrays on
|
cannam@127
|
178 x86 machines.
|
cannam@127
|
179
|
cannam@127
|
180 * Add configure flag to disable alloca(), which is broken in mingw64.
|
cannam@127
|
181
|
cannam@127
|
182 * Planning in FFTW_ESTIMATE mode for r2r transforms became slower
|
cannam@127
|
183 between fftw-3.1.3 and 3.2. This regression has now been fixed.
|
cannam@127
|
184
|
cannam@127
|
185 FFTW 3.2.1
|
cannam@127
|
186
|
cannam@127
|
187 * Performance improvements for some multidimensional r2c/c2r transforms;
|
cannam@127
|
188 thanks to Eugene Miloslavsky for his benchmark reports.
|
cannam@127
|
189
|
cannam@127
|
190 * Compile with icc on MacOS X, use better icc compiler flags.
|
cannam@127
|
191
|
cannam@127
|
192 * Compilation fixes for systems where snprintf is defined as a macro;
|
cannam@127
|
193 thanks to Marcus Mae for the bug report.
|
cannam@127
|
194
|
cannam@127
|
195 * Fortran documentation now recommends not using dfftw_execute,
|
cannam@127
|
196 because of reports of problems with various Fortran compilers;
|
cannam@127
|
197 it is better to use dfftw_execute_dft etcetera.
|
cannam@127
|
198
|
cannam@127
|
199 * Some documentation clarifications, e.g. of fact that --enable-openmp
|
cannam@127
|
200 and --enable-threads are mutually exclusive (thanks to Long To),
|
cannam@127
|
201 and document slightly odd behavior of plan_guru_r2r in Fortran
|
cannam@127
|
202 (thanks to Alexander Pozdneev).
|
cannam@127
|
203
|
cannam@127
|
204 * FAQ was accidentally omitted from 3.2 tarball.
|
cannam@127
|
205
|
cannam@127
|
206 * Remove some extraneous (harmless) files accidentally included in
|
cannam@127
|
207 a subdirectory of the 3.2 tarball.
|
cannam@127
|
208
|
cannam@127
|
209 FFTW 3.2
|
cannam@127
|
210
|
cannam@127
|
211 * Worked around apparent glibc bug that leads to rare hangs when freeing
|
cannam@127
|
212 semaphores.
|
cannam@127
|
213
|
cannam@127
|
214 * Fixed segfault due to unaligned access in certain obscure problems
|
cannam@127
|
215 that use SSE and multiple threads.
|
cannam@127
|
216
|
cannam@127
|
217 * MPI transforms not included, as they are still in alpha; the alpha
|
cannam@127
|
218 versions of the MPI transforms have been moved to FFTW 3.3alpha1.
|
cannam@127
|
219
|
cannam@127
|
220 FFTW 3.2alpha3
|
cannam@127
|
221
|
cannam@127
|
222 * Performance improvements for sizes with factors of 5 and 10.
|
cannam@127
|
223
|
cannam@127
|
224 * Documented FFTW_WISDOM_ONLY flag, at the suggestion of Mario
|
cannam@127
|
225 Emmenlauer and Phil Dumont.
|
cannam@127
|
226
|
cannam@127
|
227 * Port Cell code to SDK2.1 (libspe2), as opposed to the old libspe1 code.
|
cannam@127
|
228
|
cannam@127
|
229 * Performance improvements in Cell code for N < 32k, thanks to Jan Wagner
|
cannam@127
|
230 for the suggestions.
|
cannam@127
|
231
|
cannam@127
|
232 * Cycle counter for Sun x86_64 compiler, and compilation fix in cycle
|
cannam@127
|
233 counter for AIX/xlc (thanks to Jeff Haferman for the bug report).
|
cannam@127
|
234
|
cannam@127
|
235 * Fixed incorrect type prefix in MPI code that prevented wisdom routines
|
cannam@127
|
236 from working in single precision (thanks to Eric A. Borisch for the report).
|
cannam@127
|
237
|
cannam@127
|
238 * Added 'make check' for MPI code (which still fails in a couple corner
|
cannam@127
|
239 cases, but should be much better than in alpha2).
|
cannam@127
|
240
|
cannam@127
|
241 * Many other small fixes.
|
cannam@127
|
242
|
cannam@127
|
243 FFTW 3.2alpha2
|
cannam@127
|
244
|
cannam@127
|
245 * Support for the Cell processor, donated by IBM Research; see README.Cell
|
cannam@127
|
246 and the Cell section of the manual.
|
cannam@127
|
247
|
cannam@127
|
248 * New 64-bit API: for every "plan_guru" function there is a new "plan_guru64"
|
cannam@127
|
249 function with the same semantics, but which takes fftw_iodim64 instead of
|
cannam@127
|
250 fftw_iodim. fftw_iodim64 is the same as fftw_iodim, except that it takes
|
cannam@127
|
251 ptrdiff_t integer types as parameters, which is a 64-bit type on
|
cannam@127
|
252 64-bit machines. This is only useful for specifying very large transforms
|
cannam@127
|
253 on 64-bit machines. (Internally, FFTW uses ptrdiff_t everywhere
|
cannam@127
|
254 regardless of what API you choose.)
|
cannam@127
|
255
|
cannam@127
|
256 * Experimental MPI support. Complex one- and multi-dimensional FFTs,
|
cannam@127
|
257 multi-dimensional r2r, multi-dimensional r2c/c2r transforms, and
|
cannam@127
|
258 distributed transpose operations, with 1d block distributions.
|
cannam@127
|
259 (This is an alpha preview: routines have not been exhaustively
|
cannam@127
|
260 tested, documentation is incomplete, and some functionality is
|
cannam@127
|
261 missing, e.g. Fortran support.) See mpi/README and also the MPI
|
cannam@127
|
262 section of the manual.
|
cannam@127
|
263
|
cannam@127
|
264 * Significantly faster r2c/c2r transforms, especially on machines with SIMD.
|
cannam@127
|
265
|
cannam@127
|
266 * Rewritten multi-threaded support for better performance by
|
cannam@127
|
267 re-using a fixed pool of threads rather than continually
|
cannam@127
|
268 respawning and joining (which nowadays is much slower).
|
cannam@127
|
269
|
cannam@127
|
270 * Support for MIPS paired-single SIMD instructions, donated by
|
cannam@127
|
271 Codesourcery.
|
cannam@127
|
272
|
cannam@127
|
273 * FFTW_WISDOM_ONLY planner flag, to create plan only if wisdom is
|
cannam@127
|
274 available and return NULL otherwise.
|
cannam@127
|
275
|
cannam@127
|
276 * Removed k7 support, which only worked in 32-bit mode and is
|
cannam@127
|
277 becoming obsolete. Use --enable-sse instead.
|
cannam@127
|
278
|
cannam@127
|
279 * Added --with-g77-wrappers configure option to force inclusion
|
cannam@127
|
280 of g77 wrappers, in addition to whatever is needed for the
|
cannam@127
|
281 detected Fortran compilers. This is mainly intended for GNU/Linux
|
cannam@127
|
282 distros switching to gfortran that wish to include both
|
cannam@127
|
283 gfortran and g77 support in FFTW.
|
cannam@127
|
284
|
cannam@127
|
285 * In manual, renamed "guru execute" functions to "new-array execute"
|
cannam@127
|
286 functions, to reduce confusion with the guru planner interface.
|
cannam@127
|
287 (The programming interface is unchanged.)
|
cannam@127
|
288
|
cannam@127
|
289 * Add missing __declspec attribute to threads API functions when compiling
|
cannam@127
|
290 for Windows; thanks to Robert O. Morris for the bug report.
|
cannam@127
|
291
|
cannam@127
|
292 * Fixed missing return value from dfftw_init_threads in Fortran;
|
cannam@127
|
293 thanks to Markus Wetzstein for the bug report.
|
cannam@127
|
294
|
cannam@127
|
295 FFTW 3.1.3
|
cannam@127
|
296
|
cannam@127
|
297 * Bug fix: FFTW computes incorrect results when the user plans both
|
cannam@127
|
298 REDFT11 and RODFT11 transforms of certain sizes. The bug is caused
|
cannam@127
|
299 by incorrect sharing of twiddle-factor tables between the two
|
cannam@127
|
300 transforms, and only occurs when both are used. Thanks to Paul
|
cannam@127
|
301 A. Valiant for the bug report.
|
cannam@127
|
302
|
cannam@127
|
303 FFTW 3.1.2
|
cannam@127
|
304
|
cannam@127
|
305 * Correct bug in configure script: --enable-portable-binary option was ignored!
|
cannam@127
|
306 Thanks to Andrew Salamon for the bug report.
|
cannam@127
|
307
|
cannam@127
|
308 * Threads compilation fix on AIX: prefer xlc_r to cc_r, and don't use
|
cannam@127
|
309 either if we are using gcc. Thanks to Guy Moebs for the bug report.
|
cannam@127
|
310
|
cannam@127
|
311 * Updated FAQ to note that Apple gcc 4.0.1 on MacOS/Intel is broken,
|
cannam@127
|
312 and suggest a workaround. configure script now detects Core/Duo arch.
|
cannam@127
|
313
|
cannam@127
|
314 * Use -maltivec when checking for altivec.h. Fixes Gentoo bug #129304,
|
cannam@127
|
315 thanks to Markus Dittrich.
|
cannam@127
|
316
|
cannam@127
|
317 FFTW 3.1.1
|
cannam@127
|
318
|
cannam@127
|
319 * Performance improvements for Intel EMT64.
|
cannam@127
|
320
|
cannam@127
|
321 * Performance improvements for large-size transforms with SIMD.
|
cannam@127
|
322
|
cannam@127
|
323 * Cycle counter support for Intel icc and Visual C++ on x86-64.
|
cannam@127
|
324
|
cannam@127
|
325 * In fftw-wisdom tool, replaced obsolete --impatient with --measure.
|
cannam@127
|
326
|
cannam@127
|
327 * Fixed compilation failure with AIX/xlc; thanks to Joseph Thomas.
|
cannam@127
|
328
|
cannam@127
|
329 * Windows DLL support for Fortran API (added missing __declspec(dllexport)).
|
cannam@127
|
330
|
cannam@127
|
331 * SSE/SSE2 code works properly (i.e. disables itself) on older 386 and 486
|
cannam@127
|
332 CPUs lacking a CPUID instruction; thanks to Eric Korpela.
|
cannam@127
|
333
|
cannam@127
|
334 FFTW 3.1
|
cannam@127
|
335
|
cannam@127
|
336 * Faster FFTW_ESTIMATE planner.
|
cannam@127
|
337
|
cannam@127
|
338 * New (faster) algorithm for REDFT00/RODFT00 (type-I DCT/DST) of odd size.
|
cannam@127
|
339
|
cannam@127
|
340 * "4-step" algorithm for faster FFTs of very large sizes (> 2^18).
|
cannam@127
|
341
|
cannam@127
|
342 * Faster in-place real-data DFTs (for R2HC and HC2R r2r formats).
|
cannam@127
|
343
|
cannam@127
|
344 * Faster in-place non-square transpositions (FFTW uses these internally
|
cannam@127
|
345 for in-place FFTs, and you can also perform them explicitly using
|
cannam@127
|
346 the guru interface).
|
cannam@127
|
347
|
cannam@127
|
348 * Faster prime-size DFTs: implemented Bluestein's algorithm, as well
|
cannam@127
|
349 as a zero-padded Rader variant to limit recursive use of Rader's algorithm.
|
cannam@127
|
350
|
cannam@127
|
351 * SIMD support for split complex arrays.
|
cannam@127
|
352
|
cannam@127
|
353 * Much faster Altivec/VMX performance.
|
cannam@127
|
354
|
cannam@127
|
355 * New fftw_set_timelimit function to specify a (rough) upper bound to the
|
cannam@127
|
356 planning time (does not affect ESTIMATE mode).
|
cannam@127
|
357
|
cannam@127
|
358 * Removed --enable-3dnow support; use --enable-k7 instead.
|
cannam@127
|
359
|
cannam@127
|
360 * FMA (fused multiply-add) version is now included in "standard" FFTW,
|
cannam@127
|
361 and is enabled with --enable-fma (the default on PowerPC and Itanium).
|
cannam@127
|
362
|
cannam@127
|
363 * Automatic detection of native architecture flag for gcc. New
|
cannam@127
|
364 configure options: --enable-portable-binary and --with-gcc-arch=<arch>,
|
cannam@127
|
365 for people distributing compiled binaries of FFTW (see manual).
|
cannam@127
|
366
|
cannam@127
|
367 * Automatic detection of Altivec under Linux with gcc 3.4 (so that
|
cannam@127
|
368 same binary should work on both Altivec and non-Altivec PowerPCs).
|
cannam@127
|
369
|
cannam@127
|
370 * Compiler-specific tweaks/flags/workarounds for gcc 3.4, xlc, HP/UX,
|
cannam@127
|
371 Solaris/Intel.
|
cannam@127
|
372
|
cannam@127
|
373 * Various documentation clarifications.
|
cannam@127
|
374
|
cannam@127
|
375 * 64-bit clean. (Fixes a bug affecting the split guru planner on
|
cannam@127
|
376 64-bit machines, reported by David Necas.)
|
cannam@127
|
377
|
cannam@127
|
378 * Fixed Debian bug #259612: inadvertent use of SSE instructions on
|
cannam@127
|
379 non-SSE machines (causing a crash) for --enable-sse binaries.
|
cannam@127
|
380
|
cannam@127
|
381 * Fixed bug that caused HC2R transforms to destroy the input in
|
cannam@127
|
382 certain cases, even if the user specified FFTW_PRESERVE_INPUT.
|
cannam@127
|
383
|
cannam@127
|
384 * Fixed bug where wisdom would be lost under rare circumstances,
|
cannam@127
|
385 causing excessive planning time.
|
cannam@127
|
386
|
cannam@127
|
387 * FAQ notes bug in gcc-3.4.[1-3] that causes FFTW to crash with SSE/SSE2.
|
cannam@127
|
388
|
cannam@127
|
389 * Fixed accidentally exported symbol that prohibited simultaneous
|
cannam@127
|
390 linking to double/single multithreaded FFTW (thanks to Alessio Massaro).
|
cannam@127
|
391
|
cannam@127
|
392 * Support Win32 threads under MinGW (thanks to Alessio Massaro).
|
cannam@127
|
393
|
cannam@127
|
394 * Fixed problem with building DLL under Cygwin; thanks to Stephane Fillod.
|
cannam@127
|
395
|
cannam@127
|
396 * Fix build failure if no Fortran compiler is found (thanks to Charles
|
cannam@127
|
397 Radley for the bug report).
|
cannam@127
|
398
|
cannam@127
|
399 * Fixed compilation failure with icc 8.0 and SSE/SSE2. Automatic
|
cannam@127
|
400 detection of icc architecture flag (e.g. -xW).
|
cannam@127
|
401
|
cannam@127
|
402 * Fixed compilation with OpenMP on AIX (thanks to Greg Bauer).
|
cannam@127
|
403
|
cannam@127
|
404 * Fixed compilation failure on x86-64 with gcc (thanks to Orion Poplawski).
|
cannam@127
|
405
|
cannam@127
|
406 * Incorporated patch from FreeBSD ports (FreeBSD does not have memalign,
|
cannam@127
|
407 but its malloc is 16-byte aligned).
|
cannam@127
|
408
|
cannam@127
|
409 * Cycle-counter compilation fixes for Itanium, Alpha, x86-64, Sparc,
|
cannam@127
|
410 MacOS (thanks to Matt Boman, John Bowman, and James A. Treacy for
|
cannam@127
|
411 reports/fixes). Added x86-64 cycle counter for PGI compilers,
|
cannam@127
|
412 courtesy Cristiano Calonaci.
|
cannam@127
|
413
|
cannam@127
|
414 * Fix compilation problem in test program due to C99 conflict.
|
cannam@127
|
415
|
cannam@127
|
416 * Portability fix for import_system_wisdom with djgpp (thanks to Juan
|
cannam@127
|
417 Manuel Guerrero).
|
cannam@127
|
418
|
cannam@127
|
419 * Fixed compilation failure on MacOS 10.3 due to getopt conflict.
|
cannam@127
|
420
|
cannam@127
|
421 * Work around Visual C++ (version 6/7) bug in SSE compilation;
|
cannam@127
|
422 thanks to Eddie Yee for his detailed report.
|
cannam@127
|
423
|
cannam@127
|
424 Changes from FFTW 3.1 beta 2:
|
cannam@127
|
425
|
cannam@127
|
426 * Several minor compilation fixes.
|
cannam@127
|
427
|
cannam@127
|
428 * Eliminate FFTW_TIMELIMIT flag and replace fftw_timelimit global with
|
cannam@127
|
429 fftw_set_timelimit function. Make wisdom work with time-limited plans.
|
cannam@127
|
430
|
cannam@127
|
431 Changes from FFTW 3.1 beta 1:
|
cannam@127
|
432
|
cannam@127
|
433 * Fixes for creating DLLs under Windows; thanks to John Pavel for his feedback.
|
cannam@127
|
434
|
cannam@127
|
435 * Fixed more 64-bit problems, thanks to John Pavel for the bug report.
|
cannam@127
|
436
|
cannam@127
|
437 * Further speed improvements for Altivec/VMX.
|
cannam@127
|
438
|
cannam@127
|
439 * Further speed improvements for non-square transpositions.
|
cannam@127
|
440
|
cannam@127
|
441 * Many minor tweaks.
|
cannam@127
|
442
|
cannam@127
|
443 FFTW 3.0.1
|
cannam@127
|
444
|
cannam@127
|
445 * Some speed improvements in SIMD code.
|
cannam@127
|
446
|
cannam@127
|
447 * --without-cycle-counter option is removed. If no cycle counter is found,
|
cannam@127
|
448 then the estimator is always used. A --with-slow-timer option is provided
|
cannam@127
|
449 to force the use of lower-resolution timers.
|
cannam@127
|
450
|
cannam@127
|
451 * Several fixes for compilation under Visual C++, with help from Stefane Ruel.
|
cannam@127
|
452
|
cannam@127
|
453 * Added x86 cycle counter for Visual C++, with help from Morten Nissov.
|
cannam@127
|
454
|
cannam@127
|
455 * Added S390 cycle counter, courtesy of James Treacy.
|
cannam@127
|
456
|
cannam@127
|
457 * Added missing static keyword that prevented simultaneous linkage
|
cannam@127
|
458 of different-precision versions; thanks to Rasmus Larsen for the bug report.
|
cannam@127
|
459
|
cannam@127
|
460 * Corrected accidental omission of f77_wisdom.f file; thanks to Alan Watson.
|
cannam@127
|
461
|
cannam@127
|
462 * Support -xopenmp flag for SunOS; thanks to John Lou for the bug report.
|
cannam@127
|
463
|
cannam@127
|
464 * Compilation with HP/UX cc requires -Wp,-H128000 flag to increase
|
cannam@127
|
465 preprocessor limits; thanks to Peter Vouras for the bug report.
|
cannam@127
|
466
|
cannam@127
|
467 * Removed non-portable use of 'tempfile' in fftw-wisdom-to-conf script;
|
cannam@127
|
468 thanks to Nicolas Decoster for the patch.
|
cannam@127
|
469
|
cannam@127
|
470 * Added 'make smallcheck' target in tests/ directory, at the request of
|
cannam@127
|
471 James Treacy.
|
cannam@127
|
472
|
cannam@127
|
473 FFTW 3.0
|
cannam@127
|
474
|
cannam@127
|
475 Major goals of this release:
|
cannam@127
|
476
|
cannam@127
|
477 * Speed: often 20% or more faster than FFTW 2.x, even without SIMD (see below).
|
cannam@127
|
478
|
cannam@127
|
479 * Complete rewrite, to make it easier to add new algorithms and transforms.
|
cannam@127
|
480
|
cannam@127
|
481 * New API, to support more general semantics.
|
cannam@127
|
482
|
cannam@127
|
483 Other enhancements:
|
cannam@127
|
484
|
cannam@127
|
485 * SIMD acceleration on supporting CPUs (SSE, SSE2, 3DNow!, and AltiVec).
|
cannam@127
|
486 (With special thanks to Franz Franchetti for many experimental prototypes
|
cannam@127
|
487 and to Stefan Kral for the vectorizing generator from fftwgel.)
|
cannam@127
|
488
|
cannam@127
|
489 * True in-place 1d transforms of large sizes (as well as compressed
|
cannam@127
|
490 twiddle tables for additional memory/cache savings).
|
cannam@127
|
491
|
cannam@127
|
492 * More arbitrary placement of real & imaginary data, e.g. including
|
cannam@127
|
493 interleaved (as in FFTW 2.x) as well as separate real/imag arrays.
|
cannam@127
|
494
|
cannam@127
|
495 * Efficient prime-size transforms of real data.
|
cannam@127
|
496
|
cannam@127
|
497 * Multidimensional transforms can operate on a subset of a larger matrix,
|
cannam@127
|
498 and/or transform selected dimensions of a multidimensional array.
|
cannam@127
|
499
|
cannam@127
|
500 * By popular demand, simultaneous linking to double precision (fftw),
|
cannam@127
|
501 single precision (fftwf), and long-double precision (fftwl) versions
|
cannam@127
|
502 of FFTW is now supported.
|
cannam@127
|
503
|
cannam@127
|
504 * Cycle counters (on all modern CPUs) are exploited to speed planning.
|
cannam@127
|
505
|
cannam@127
|
506 * Efficient transforms of real even/odd arrays, a.k.a. discrete
|
cannam@127
|
507 cosine/sine transforms (types I-IV). (Currently work via pre/post
|
cannam@127
|
508 processing of real transforms, ala FFTPACK, so are not optimal.)
|
cannam@127
|
509
|
cannam@127
|
510 * DHTs (Discrete Hartley Transforms), again via post-processing
|
cannam@127
|
511 of real transforms (and thus suboptimal, for now).
|
cannam@127
|
512
|
cannam@127
|
513 * Support for linking to just those parts of FFTW that you need,
|
cannam@127
|
514 greatly reducing the size of statically linked programs when
|
cannam@127
|
515 only a limited set of transform sizes/types are required.
|
cannam@127
|
516
|
cannam@127
|
517 * Canonical global wisdom file (/etc/fftw/wisdom) on Unix, along
|
cannam@127
|
518 with a command-line tool (fftw-wisdom) to generate/update it.
|
cannam@127
|
519
|
cannam@127
|
520 * Fortran API can be used with both g77 and non-g77 compilers
|
cannam@127
|
521 simultaneously.
|
cannam@127
|
522
|
cannam@127
|
523 * Multi-threaded version has optional OpenMP support.
|
cannam@127
|
524
|
cannam@127
|
525 * Authors' good looks have greatly improved with age.
|
cannam@127
|
526
|
cannam@127
|
527 Changes from 3.0beta3:
|
cannam@127
|
528
|
cannam@127
|
529 * Separate FMA distribution to better exploit fused multiply-add instructions
|
cannam@127
|
530 on PowerPC (and possibly other) architectures.
|
cannam@127
|
531
|
cannam@127
|
532 * Performance improvements via some inlining tweaks.
|
cannam@127
|
533
|
cannam@127
|
534 * fftw_flops now returns double arguments, not int, to avoid overflows
|
cannam@127
|
535 for large sizes.
|
cannam@127
|
536
|
cannam@127
|
537 * Workarounds for automake bugs.
|
cannam@127
|
538
|
cannam@127
|
539 Changes from 3.0beta2:
|
cannam@127
|
540
|
cannam@127
|
541 * The standard REDFT00/RODFT00 (DCT-I/DST-I) algorithm (used in
|
cannam@127
|
542 FFTPACK, NR, etcetera) turns out to have poor numerical accuracy, so
|
cannam@127
|
543 we replaced it with a slower routine that is more accurate.
|
cannam@127
|
544
|
cannam@127
|
545 * The guru planner and execute functions now have two variants, one that
|
cannam@127
|
546 takes complex arguments and one that takes separate real/imag pointers.
|
cannam@127
|
547
|
cannam@127
|
548 * Execute and planner routines now automatically align the stack on x86,
|
cannam@127
|
549 in case the calling program is misaligned.
|
cannam@127
|
550
|
cannam@127
|
551 * README file for test program.
|
cannam@127
|
552
|
cannam@127
|
553 * Fixed bugs in the combination of SIMD with multi-threaded transforms.
|
cannam@127
|
554
|
cannam@127
|
555 * Eliminated internal fftw_threads_init function, which some people were
|
cannam@127
|
556 calling accidentally instead of the fftw_init_threads API function.
|
cannam@127
|
557
|
cannam@127
|
558 * Check for -openmp flag (Intel C compiler) when --enable-openmp is used.
|
cannam@127
|
559
|
cannam@127
|
560 * Support AMD x86-64 SIMD and cycle counter.
|
cannam@127
|
561
|
cannam@127
|
562 * Support SSE2 intrinsics in forthcoming gcc 3.3.
|
cannam@127
|
563
|
cannam@127
|
564 Changes from 3.0beta1:
|
cannam@127
|
565
|
cannam@127
|
566 * Faster in-place 1d transforms of non-power-of-two sizes.
|
cannam@127
|
567
|
cannam@127
|
568 * SIMD improvements for in-place, multi-dimensional, and/or non-FFTW_PATIENT
|
cannam@127
|
569 transforms.
|
cannam@127
|
570
|
cannam@127
|
571 * Added support for hard-coded DCT/DST/DHT codelets of small sizes; the
|
cannam@127
|
572 default distribution only includes hard-coded size-8 DCT-II/III, however.
|
cannam@127
|
573
|
cannam@127
|
574 * Many minor improvements to the manual. Added section on using the
|
cannam@127
|
575 codelet generator to customize and enhance FFTW.
|
cannam@127
|
576
|
cannam@127
|
577 * The default 'make check' should now only take a few minutes; for more
|
cannam@127
|
578 strenuous tests (which may take a day or so), do 'cd tests; make bigcheck'.
|
cannam@127
|
579
|
cannam@127
|
580 * fftw_print_plan is split into fftw_fprint_plan and fftw_print_plan, where
|
cannam@127
|
581 the latter uses stdout.
|
cannam@127
|
582
|
cannam@127
|
583 * Fixed ability to compile with a C++ compiler.
|
cannam@127
|
584
|
cannam@127
|
585 * Fixed support for C99 complex type under glibc.
|
cannam@127
|
586
|
cannam@127
|
587 * Fixed problems with alloca under MinGW, AIX.
|
cannam@127
|
588
|
cannam@127
|
589 * Workaround for gcc/SPARC bug.
|
cannam@127
|
590
|
cannam@127
|
591 * Fixed multi-threaded initialization failure on IRIX due to lack of
|
cannam@127
|
592 user-accessible PTHREAD_SCOPE_SYSTEM there.
|