comparison src/fftw-3.3.5/ChangeLog @ 42:2cd0e3b3e1fd

Current fftw source
author Chris Cannam
date Tue, 18 Oct 2016 13:40:26 +0100
parents
children
comparison
equal deleted inserted replaced
41:481f5f8c5634 42:2cd0e3b3e1fd
1 commit b405994456f9a87f2170ba19536d4c4d8278682f
2 Author: Matteo Frigo <athena@fftw.org>
3 Date: Sat Jul 30 16:33:22 2016 -0400
4
5 update AUTHORS
6
7 commit 4d0c1894fb37c61b0f0a42b50afd435d226f6b9e
8 Author: Matteo Frigo <athena@fftw.org>
9 Date: Sat Jul 30 15:18:06 2016 -0400
10
11 Fixes for Windows cross-compilation
12
13 These days mingw by default produces binaries that depend on
14 libgcc-sjlj-1.dll, which defeats the whole historical point of mingw
15 (produce vanilla win32 binaries with no GNU stuff).
16
17 Add a hack to link with -static-libgcc, which avoids the problem.
18
19 commit a17d44eeb3100780ba106a22f497d47a43be7642
20 Author: Matteo Frigo <athena@fftw.org>
21 Date: Sat Jul 30 11:39:09 2016 -0400
22
23 Misc fixes.
24
25 * sed s/avx[_- ]128[-_ ]fma/avx-128-fma
26 * avoid some signed/unsigned casts
27
28 commit f3688be112ed0099b4c57970db74c08373f3604d
29 Author: Matteo Frigo <athena@fftw.org>
30 Date: Sat Jul 30 10:52:53 2016 -0400
31
32 Fix SIMD autodetection
33
34 * AVX was not testing for OSXSAVE support
35
36 * AVX2 was broken (issuing XGETBV without checking for its presence---failing
37 on atom)
38
39 * AVX512 was broken in the same way as AVX2, I have guessed a fix but
40 I have no way to test it.
41
42 commit 7fce2ae37f8338bd7e021b1a406c75b213c31c77
43 Author: Matteo Frigo <athena@fftw.org>
44 Date: Fri Jul 29 07:48:10 2016 -0400
45
46 document fftw_make_planner_thread_safe()
47
48 commit 6167b92e3362f2d116274daa561c0d788fb670d4
49 Author: Matteo Frigo <athena@fftw.org>
50 Date: Fri Jul 29 07:28:03 2016 -0400
51
52 rm README-bench
53
54 It appears in tests/README
55
56 commit cc9640cbbaa70e6645a0ea46be0508268905c2ba
57 Author: Matteo Frigo <athena@fftw.org>
58 Date: Fri Jul 29 07:27:25 2016 -0400
59
60 Add README-bench
61
62 commit d82fe4f3e06bdbf92b09324e36f4d477bc5fe376
63 Author: Matteo Frigo <athena@fftw.org>
64 Date: Fri Jul 29 07:25:00 2016 -0400
65
66 Do not enable avx128-fma unless the user asks for it.
67
68 Adding SIMD instruction sets automatically is user-hostile behavior.
69
70 Also, update the manual to reflect the new SIMD support
71
72 commit dc32329871d304de8d95ad290973844dfbc6101f
73 Author: Matteo Frigo <athena@fftw.org>
74 Date: Fri Jul 29 07:00:55 2016 -0400
75
76 Update NEWS for 3.3.5
77
78 commit 2ed010c62b1bc8ca6b23bfda2e09b8c28e1e8bcc
79 Author: Matteo Frigo <athena@fftw.org>
80 Date: Sun Jun 5 07:07:15 2016 -0400
81
82 Clean up some int<->size_t confusion
83
84 commit ea86c49ac7470a646d1e6a4fa007ecbda6ab56c4
85 Author: Matteo Frigo <athena@fftw.org>
86 Date: Sat Jun 4 20:33:15 2016 -0400
87
88 Unused Variable Police
89
90 commit d9a3f48343bda0a88c8a87cab329d95426ddfcb9
91 Author: Matteo Frigo <athena@fftw.org>
92 Date: Sat Jun 4 20:30:12 2016 -0400
93
94 Integral Type Police
95
96 clear some int/unsigned/size_t confusions
97
98 commit 29cee6cc95d434321292d013d6a7be4c55379a49
99 Author: Matteo Frigo <athena@fftw.org>
100 Date: Sat Jun 4 19:50:10 2016 -0400
101
102 Cast Police
103
104 Eliminate some useless (but harmless) int<->size_t conversions.
105
106 commit d7c566eb98523c7c0bafae734c7894a5a3595771
107 Author: Matteo Frigo <athena@fftw.org>
108 Date: Sun Mar 13 17:50:45 2016 -0400
109
110 Clarify ambiguous/wrong documentation of halfcomplex output format.
111
112 commit 6543818e3091ea788a1aac41d06ca343e672f103
113 Author: Matteo Frigo <athena@fftw.org>
114 Date: Wed Jan 20 18:18:14 2016 -0500
115
116 Cleanup
117
118 Rewrite Unique.make in more idiomatic caml style,
119 strongly typed.
120
121 commit 4965e33c6c98484b66787f1891cfe4f689becee5
122 Merge: 119aa4c f8a7359
123 Author: Matteo Frigo <athena@fftw.org>
124 Date: Wed Jan 20 15:14:32 2016 -0800
125
126 Merge pull request #53 from artemkin/master
127
128 Fixed unique token generation in genfft
129
130 commit f8a73593a499efc751103460ff2f07d8b1e2ff0c
131 Author: Stanislav Artemkin <artemkin@gmail.com>
132 Date: Thu Jan 21 01:17:30 2016 +0400
133
134 Fixed unique token generation in genfft
135
136 Unique token generation was based on the assumption that OCaml compiler
137 won't inline a given piece of code. Starting from 4.02.0 it does more
138 aggressive inlining and breaks this functionality.
139
140 commit 119aa4c4a893f32dfd837a84fac9453b6dae6680
141 Merge: 8c7a7af e41df2c
142 Author: Matteo Frigo <athena@fftw.org>
143 Date: Wed Sep 30 15:38:00 2015 -0400
144
145 Merge pull request #48 from rleonid/master
146
147 Replace depracted usage of Pervasives or.
148
149 commit e41df2c3cac7c3e69586c07f80f1bb0a24dccd5a
150 Author: Leonid Rozenberg <leonidr@gmail.com>
151 Date: Wed Sep 30 15:22:16 2015 -0400
152
153 Replace depracted usage of Pervasives or.
154
155 commit 8c7a7af184a63064325fa542a8d1d7f4e3b4b8aa
156 Author: Matteo Frigo <athena@fftw.org>
157 Date: Tue Sep 8 10:35:18 2015 -0400
158
159 Clarify how to bootstrap fftw from the git repository
160
161 commit a0cbff67eae9ab66f6f2b4cf2ea79de6c95d7d61
162 Author: Matteo Frigo <athena@fftw.org>
163 Date: Tue Sep 8 10:28:49 2015 -0400
164
165 Clarify that ocamlbuild is necessary for --enable-maintainer-mode
166
167 commit f6339eadef8a62432ea2f2017ce0b4a1954ea738
168 Author: Steven G. Johnson <stevenj@mit.edu>
169 Date: Wed Aug 5 11:11:26 2015 -0400
170
171 fix LaTeX typo, thanks to Gael Lorieul
172
173 commit 8cd9bfa347289143a00fa0d5eea30f4766192d46
174 Author: Erik Lindahl <erik@kth.se>
175 Date: Wed May 27 00:15:57 2015 +0200
176
177 Update VSX SIMD to avoid inline assembly
178
179 Thanks to some help from Michael Gschwind of
180 IBM, this removes the remaining inline assembly
181 calls and replace the with vector functions. This
182 avoid interfering with the optimizer both on GCC
183 and XLC, and gets us another 3-10% of performance
184 when using VSX SIMD. Tested with GCC-4.9, XLC-13.1
185 in single and double on little-endian power 8.
186
187 commit 579cec9a64cc177e673f006eb112d488be21b230
188 Author: Erik Lindahl <erik@kth.se>
189 Date: Tue May 26 19:27:58 2015 +0200
190
191 Enable SSE2 automatically with AVX,AVX2, or AVX512.
192
193 256-bit AVX can be significantly slower than
194 128-bit SIMD. Despite recommendations many
195 distributions appear to only enable AVX, but not
196 SSE. This fixes the problem by also enabling
197 SSE when we use the wider SIMD instructions.
198
199 commit dd80210ec433938876575e2435e12d7e630872e7
200 Author: Erik Lindahl <erik@kth.se>
201 Date: Tue May 26 19:09:40 2015 +0200
202
203 Turn AVX-128 into AMD-specific AVX-128-FMA
204
205 The only platform where AVX-128 really matters
206 is AMD (since the compute units can execute a
207 single 256-bit or two 128-bit SIMD instructions),
208 so now we only use it there which means we can
209 also enable FMA instructions.
210
211 commit b3105ed9529846ca8dd9267e46d7bcd2ebb12ff6
212 Author: Matteo Frigo <athena@fftw.org>
213 Date: Mon May 25 17:33:15 2015 -0400
214
215 Fix broken avx/32-bit compilation
216
217 commit d3442a8395e1fc6e77490c3f34c868b1998e4e96
218 Author: Matteo Frigo <athena@fftw.org>
219 Date: Mon May 25 17:27:31 2015 -0400
220
221 rm hooks api's, add fftw_make_planner_thread_safe() api
222
223 fftw_make_planner_thread_safe() installs a lock around the planner.
224 It is guaranteed to be atomic and idempotent.
225
226 I wrote an emulation of pthread mutex initializers on Windows, but I
227 haven't even compiled the Windows code yet.
228
229 commit 842596fe6bfb277effc8f8f8db7e1c4008bb59e1
230 Author: Matteo Frigo <athena@fftw.org>
231 Date: Mon May 25 11:11:58 2015 -0400
232
233 Add TODO's
234
235 commit eff7dfcd526e90539f169cfff2374ceb2fd2dd0e
236 Author: Matteo Frigo <athena@fftw.org>
237 Date: Mon May 25 10:50:21 2015 -0400
238
239 add TODOs
240
241 commit 0e53e3e9d2640a895a69c5aff4a676c156271141
242 Author: Matteo Frigo <athena@fftw.org>
243 Date: Mon May 25 10:48:03 2015 -0400
244
245 Add argument to planner hooks
246
247 commit 94ef591d61c8e78e87c65f9779eb003fc7f1ba6b
248 Author: Matteo Frigo <athena@fftw.org>
249 Date: Mon May 25 10:37:24 2015 -0400
250
251 Update shared-version-info
252
253 We added an API (planner hooks), so the shared version info
254 needs to be bumped.
255
256 commit 9ef9ec85588c026e6a80b1475df24ba20d098e8e
257 Author: Matteo Frigo <athena@fftw.org>
258 Date: Mon May 25 10:27:25 2015 -0400
259
260 Bump version to 3.3.5
261
262 commit 593d55932959366918e209fbbd2f4719d39d448c
263 Author: Romain Dolbeau <romain@dolbeau.org>
264 Date: Wed May 13 16:42:23 2015 +0200
265
266 Typo ; Fixes #41
267
268 commit cd2b27d1600d80ba719f1b70094886e39cf145a3
269 Author: Erik Lindahl <erik@kth.se>
270 Date: Thu May 7 17:45:43 2015 +0200
271
272 Separate routines to query 128-bit AVX support
273
274 This also disables 256-bit AVX for current AMD processors
275 that work better with 128-bit AVX. Note that this is not
276 detected by the timing routines since the effect is only
277 apparent when using multiple cores.
278
279 commit a1cf4158dd829853bd9f6b8c4c4951d7495c9e64
280 Merge: b613508 0331b39
281 Author: Romain Dolbeau <romain@dolbeau.org>
282 Date: Mon Apr 20 22:01:15 2015 +0200
283
284 Merge branch 'master' of github.com:FFTW/fftw3
285
286 commit 0331b39cd3641a8ac89be27dbde3e41204fd1888
287 Merge: 38b93cc d2ea399
288 Author: Erik Lindahl <erik@kth.se>
289 Date: Mon Apr 20 21:09:44 2015 +0200
290
291 Merge branch 'experimental-simd'
292
293 Merged in new SIMD architectures from separate branch.
294
295 commit d2ea399c46174db45838ca6a3b917cf880970921
296 Author: Romain Dolbeau <romain@dolbeau.org>
297 Date: Thu Apr 16 08:54:58 2015 +0200
298
299 Fix stack alignment (alloca) for generic256.
300
301 commit b6135085bd1ee2e2c6c82b06e78d492e4f242cca
302 Author: Romain Dolbeau <romain@dolbeau.org>
303 Date: Tue Apr 14 10:17:38 2015 +0200
304
305 Add a configure option to disable building the documentation in doc/. This is useful if some documentation tools are missing on the host (i.e. fig2dev in maintainer mode).
306
307 commit 38b93ccfc3786d1c23726dc939de558f4dd2a2d3
308 Author: Romain Dolbeau <romain@dolbeau.org>
309 Date: Mon Apr 13 14:16:28 2015 +0200
310
311 In maintainer mode, detect whether 'indent' is available and is GNU indent.
312
313 BSD 'indent' in e.g. MacOSX doesn't support -kr, which is the default style in FFTW3.
314 Fallback to 'indent' with no option for non-GNU 'indent', or 'cat' if 'indent' is not available.
315 This should fix GitHub issue #13.
316
317 commit 96eb0ad31c8d0c226a6aeb95e68bda90dd7e6f6a
318 Author: Romain Dolbeau <romain@dolbeau.org>
319 Date: Sun Apr 12 13:49:39 2015 +0200
320
321 missing AC_ARG_ENABLE for --enable-fma
322
323 commit 24ff943f4e99458d41db543305a2c945ba2ba429
324 Author: Romain Dolbeau <romain@dolbeau.org>
325 Date: Sun Apr 12 13:47:24 2015 +0200
326
327 Revert "reinstate --enable-fma ; not enabled by default for AVX2 & AVX-512 (will ad a warning later)"
328
329 This reverts commit 40691a49eea40d305405fe527e174e8067606dae. A different fix is needed.
330
331 commit 37a0dbc10f0199fd431f0b5d8b42143cc2a2a88d
332 Author: Romain Dolbeau <romain@dolbeau.org>
333 Date: Sun Apr 12 13:39:28 2015 +0200
334
335 Add sanity check & warning in AVX2 & AVX-512
336
337 commit 40691a49eea40d305405fe527e174e8067606dae
338 Author: Romain Dolbeau <romain@dolbeau.org>
339 Date: Sun Apr 12 13:38:29 2015 +0200
340
341 reinstate --enable-fma ; not enabled by default for AVX2 & AVX-512 (will ad a warning later)
342
343 commit 7960d08a3fe74b38d8dfdd20917efb52d141d53a
344 Author: Erik Lindahl <erik@kth.se>
345 Date: Wed Apr 8 22:55:28 2015 +0200
346
347 Improved compiler flags for OS X
348
349 Separate detection for AVX/AVX2 on gcc and clang.
350 Clang works for AVX, but AVX2 leads to a compiler
351 crash. Issue 20471870 has been filed with Apple.
352 When using gcc, we now request to use the external
353 system assembler, or the AVX/AVX2 instructions will
354 cause errors.
355
356 commit 91928338b767b84742e8ec86da6b4864381ed889
357 Author: Erik Lindahl <erik@kth.se>
358 Date: Wed Apr 8 22:54:41 2015 +0200
359
360 Fix alignments for generic simd.
361
362 commit eaaec9b6ea9dc0f0656d953639c325855cb3bbee
363 Author: Erik Lindahl <erik@kth.se>
364 Date: Wed Apr 8 21:16:13 2015 +0200
365
366 Made api versions more verbose for 128-bit AVX.
367
368 commit 4b3dbf7009b020bffe7c9c96a5b24c87496fd058
369 Author: Erik Lindahl <erik@kth.se>
370 Date: Wed Apr 8 21:09:50 2015 +0200
371
372 Make 128/256 bit generic simd separate options
373
374 These will only be used on esoteric and/or new
375 architectures, which likely also miss cycle counters.
376 In this case the widest simd would be picked automatically
377 based on flops estimates, so to give the user more
378 control it is better to provide separate options
379 to enable/disable these two choices.
380
381 commit cbe2a4a64064d12b9b817235906d61a996c00be1
382 Author: Romain Dolbeau <romain@dolbeau.org>
383 Date: Mon Mar 30 13:35:47 2015 +0200
384
385 AVX-512: minor fix(sp)&improvement(dp) to VDUPL/VDUPH
386
387 commit 5379243044ea4113b9cbde25fd097195817b3653
388 Author: Romain Dolbeau <romain@dolbeau.org>
389 Date: Sun Mar 29 14:17:13 2015 +0200
390
391 AVX-512: fix typo; fix shuffle parameter in SP; _mm512_set1 exists now.
392
393 commit 90f9610ee6708efc11c848b5e078dd92997ffa25
394 Author: Romain Dolbeau <romain@dolbeau.org>
395 Date: Sun Mar 29 14:14:02 2015 +0200
396
397 Fix typo in KCvi
398
399 commit 2b44c9213a11816506b1bd3d6b7316ed1ed65a15
400 Merge: 5c5bed2 1f28d2d
401 Author: Romain Dolbeau <romain@dolbeau.org>
402 Date: Sun Mar 29 10:49:42 2015 +0200
403
404 Merge branch 'experimental-simd' of github.com:FFTW/fftw3 into experimental-simd
405
406 commit 5c5bed2365693b5f57503f6aad35264a3b3d86b9
407 Author: Romain Dolbeau <romain@dolbeau.org>
408 Date: Sun Mar 29 10:48:13 2015 +0200
409
410 typo for AVX-512
411
412 commit 1f28d2d3693bd919c674e08dc76726cf56d3648f
413 Author: Romain Dolbeau <romain@dolbeau.org>
414 Date: Sun Mar 29 10:48:13 2015 +0200
415
416 typo
417
418 commit a8845007ecb07fd0cc91994c574b1008c64708e0
419 Author: Romain Dolbeau <romain@dolbeau.org>
420 Date: Thu Mar 19 19:22:44 2015 +0100
421
422 Generic SIMD support for gcc
423
424 While not as optimized as the specific SIMD ports, this
425 enables the usage of gcc's generic vector representation,
426 which usually gets implemented with SIMD instructions on
427 most hardware. Double precision implementations for 256
428 and 128 bits by Romain Dolbeau, merged into a single
429 generic SIMD implementation and single precision added
430 by Erik Lindahl. The option --enable-generic-simd will
431 turn on both 128 and 256 bit versions, and the timers will
432 choose the fastest codelets.
433
434 commit 56bbdbab2f03ebae92fd2c52b9509fb3b8ffe226
435 Author: Erik Lindahl <erik@kth.se>
436 Date: Tue Mar 24 19:35:31 2015 +0100
437
438 Added Power8 VSX SIMD support
439
440 Power8 is a descendent of Power7, but the switch to little endian
441 means the old altivec SIMD will not work due to shifts on load
442 and store, and the new VSX instructions are much improved.
443 This adds support for both single and double precision VSX SIMD,
444 using either gcc (tested with version 4.9) or IBM xlC (tested with
445 version 13.1.2, slower than gcc). Clang from llvm-3.7 is still too
446 buggy to compile VSX code correctly, but flags and detection has
447 been added so it will work with a correct clang.
448
449 commit 8aa91763af07767f3ebb71a9836a69e3b3385cab
450 Author: Romain Dolbeau <romain@dolbeau.org>
451 Date: Tue Feb 24 09:27:07 2015 +0100
452
453 Double precision Neon SIMD for aarch64
454
455 --enable-neon now works in double precision for 64-bit Arm.
456 Support added for the generic timer virtual counter in armv7a
457 (optional, available in A15 & A7) & armv8. They are privileged, but
458 should be made user-readable in recent linux (> 3.19.1 for v7a,
459 most for v8).
460 Architecture Reference Manual ARMv7-A and ARMv7-R edition:
461 E.7.16 CNTVCT, Virtual Count register, system level
462 Architecture Reference Manual ARMv8, for ARMv8-A architecture
463 profile Beta: D7.5.17 CNTVCT_EL0, Counter-timer Virtual Count register
464
465 commit aa26395250c9c4d6831e8e5017650ea70af56a28
466 Author: Romain Dolbeau <romain@dolbeau.org>
467 Date: Thu Sep 5 10:53:42 2013 +0200
468
469 AVX-512 SIMD support
470
471 New configure flag --enable-avx512
472
473 commit de81bfdb66b9bc867e389bbaf67b56490ca2e2cd
474 Author: Erik Lindahl <erik@kth.se>
475 Date: Wed Mar 25 15:49:33 2015 +0100
476
477 128-bit AVX2 SIMD support
478
479 Add 128 bit support for AVX2. Similar to AVX-128, this
480 improves slightly on SSE2 due to more efficient instructions,
481 and the shorter SIMD width is beneficial in some cases. Both
482 128- and 256-bit flavors will be built automatically with
483 --enable-avx2, and the timing routines will chose the best one
484 automatically.
485
486 commit da988fa4c53fb63fafe2eeff3da4abad93e7d014
487 Author: Erik Lindahl <erik@kth.se>
488 Date: Sat Mar 28 12:52:52 2015 +0100
489
490 AVX2 kernels and CPUID support
491
492 Initial AVX2 code from Romain Dolbeau. Modifications,
493 cpuid and more compiler flags from Erik Lindahl.
494 New --enable-avx2 configure flag supported.
495
496 commit d7d9b9d2b71bd93bc4d4fa82d46a9c013291b7fe
497 Author: Romain Dolbeau <romain@dolbeau.org>
498 Date: Tue Sep 3 10:02:53 2013 +0200
499
500 KCvi [Knight Corner Vector Instructions] SIMD support
501
502 This adds SIMD support for the first generation of Xeon Phi.
503
504 commit b606e3191e5b65e2e13f67ef7dad5b1e7c40206c
505 Author: Erik Lindahl <erik@kth.se>
506 Date: Wed Mar 25 01:44:17 2015 +0100
507
508 Improved AVX SIMD
509
510 Previously, some kernels were actually faster with the old SSE2
511 SIMD, which made it necessary to compile with both sse2 and avx
512 for good performance. This adds 128-bit AVX kernels which are
513 enabled together with the standard AVX kernels. Apart from
514 being encoded with AVX rather than SSE instructions
515 (depending on compiler flags), it also uses a couple of new
516 instructions only available with AVX that use fewer micro-ops.
517 These instructions have also been added to the 256-bit AVX SIMD
518 implementation. No new configure flags needed, it is just faster.
519
520 commit 131027afcd3ed5d7c0185611036431c1035a734a
521 Merge: 0ea3051 56af330
522 Author: Matteo Frigo <athena@fftw.org>
523 Date: Sun Mar 22 16:24:29 2015 -0400
524
525 Merge pull request #37 from maxlevesque/patch-1
526
527 add indent to requirements
528
529 commit 56af330fc1600a856241968482ecd443bc2c26aa
530 Author: Maximilien Levesque <maximilien.levesque@gmail.com>
531 Date: Sat Mar 21 22:41:26 2015 +0100
532
533 add indent to requirements
534
535 Without indent, `make` reports errors in somewhere in a directory called codelets.
536 It also reports "/bin/bash: indent: command not found" not far away.
537
538 For my Ubuntu 14.04 flavor, a simple `sudo apt-get install indent` made `make` work as expected.
539
540 commit 0ea3051f99f2931a46a66aef8862517cd9c5f3c7
541 Merge: 506c163 69a82a6
542 Author: Matteo Frigo <athena@fftw.org>
543 Date: Mon Feb 16 06:36:46 2015 -0500
544
545 Merge pull request #32 from psteinb/2d_mem_layout_complying_to_text
546
547 changed ny to n1 and nx to n0 so that the labels match the text
548
549 commit 69a82a6c5ff4d2169a7f8a0afda9f3c68f24eb2a
550 Author: Peter Steinbach <steinbach@scionics.de>
551 Date: Mon Feb 16 09:10:23 2015 +0100
552
553 changed ny to n1 and nx to n0 so that the labels match the text, it's quite confusing otherwise
554
555 commit 506c16346f9fc57444b179e542e88225e3c3e923
556 Author: Steven G. Johnson <stevenj@alum.mit.edu>
557 Date: Fri Jan 30 15:02:17 2015 -0500
558
559 fix #29
560
561 commit d94666815b9a0073e4ac8cc48f88e18ac931bd45
562 Merge: ded0051 9831bbd
563 Author: Steven G. Johnson <stevenj@mit.edu>
564 Date: Sun Dec 7 16:39:15 2014 -0500
565
566 Merge pull request #27 from mpip/master
567
568 avoid segfaults due to double free
569
570 commit 9831bbd14ca5b963ad1dba260c86151c94e000ee
571 Author: Michael Pippig <michael.pippig@mathematik.tu-chemnitz.de>
572 Date: Sat Dec 6 15:03:33 2014 +0100
573
574 avoid segfaults due to double free
575
576 If fftw_mpi_mkplans_posttranspose() fails, the plans cld3, cld2rest,
577 and cld2 are destroyed at nada and must be set to NULL. Otherwise,
578 a second destroy at nada in mkplan() will cause a segfault.
579
580 commit ded0051238f129fb65846e822191706c9b1f5221
581 Author: Matteo Frigo <athena@fftw.org>
582 Date: Sun Nov 16 09:45:16 2014 -0500
583
584 Conciseness Police
585
586 commit 113e1086966fdff4c172672753cc880e6bc74d3d
587 Author: Matteo Frigo <athena@fftw.org>
588 Date: Sun Nov 16 09:41:05 2014 -0500
589
590 add {before,after}_planner_hooks
591
592 FFTW now calls fftw_before_planner_hook() before creating a plan, and
593 fftw_after_planner_hook() afterwards. This allows users, e.g., to
594 grab a lock.
595
596 TBD: add arguments.
597
598 commit 28635e1d5f0a0079af3e7d00cd0678c4745e2c2b
599 Author: Matteo Frigo <athena@fftw.org>
600 Date: Sun Nov 16 09:22:47 2014 -0500
601
602 avoid multiple declarations of fftw_alignment_of()
603
604 fftw_alignment_of() was declared both in the API header file fftw3.h
605 and in the internal header file ifftw.h. While there is nothing wrong
606 with this, it breaks the property that all exported symbols are
607 defined in the API directory. E.g., I am not sure what happens on
608 windows without the proper DLLEXPORT nonsense.
609
610 To avoid any issues, rename the internal routine to
611 fftw_ialignment_of(), and define an API wrapper.
612
613 commit 36597576e4c3c5dc3efd7d8b57a1bbad505715aa
614 Author: Steven G. Johnson <stevenj@alum.mit.edu>
615 Date: Tue Aug 12 12:29:50 2014 -0400
616
617 fix #21 (don't use float128 on Portland compilers, which pretend to be gcc)
618
619 commit cde4559ba9b822166cb88a84a0994fdb83a2061c
620 Author: Matteo Frigo <athena@fftw.org>
621 Date: Sat Jul 26 20:09:38 2014 -0400
622
623 Avoid transforming uninitalized data.
624
625 In r2c/c2r transforms when using 4-way SIMD, sometimes FFTW uses the
626 following hack: to transform an odd number of inputs, it copies the
627 input into a buffer that holds space for one extra input; it
628 transforms the buffer (now comprising an even number of inputs, as
629 required by SIMD); it copies back the odd number of transformed
630 inputs, ignoring the padding element.
631
632 The extra input was uninitialized until now. This is ok because we
633 ignore the transform of the uninitialized input. Transforming
634 uninitialized data may cause floating-point exceptions, an effect that
635 is observable. This patch initializes the additional elements to
636 zero, thus avoiding the problem.
637
638 This patch also includes a test, but the test is disabled by default
639 because it is nonportable. To observe the FP exception, one must use
640 feenableexcept(), which appears to be a GNU-ism.
641
642 commit 2493129c332197c5195ecb6796cfeb5e8d92e09a
643 Author: Steven G. Johnson <stevenj@alum.mit.edu>
644 Date: Thu Jul 10 10:41:38 2014 -0400
645
646 fix #19: missing Fortran interface for fftwq_alloc_real
647
648 commit 07ef78dc1b273a40fb4f7db1797d12d3423b1f40
649 Author: Steven G. Johnson <stevenj@alum.mit.edu>
650 Date: Tue Jul 8 11:14:15 2014 -0400
651
652 fix #18 (disable float128 for CUDACC)
653
654 commit 2fd372f31ab7c6417de0634199bcd5b7765df926
655 Author: Matteo Frigo <athena@fftw.org>
656 Date: Sat Jun 28 17:17:19 2014 -0400
657
658 git rm *~
659
660 commit 203e0d610ec1e413bb426a7d60fd5e2a206a2830
661 Author: Matteo Frigo <athena@fftw.org>
662 Date: Thu Apr 3 15:46:19 2014 -0400
663
664 Fix wrong boolean precedence in hppa cycle counter.
665
666 Thanks Jens Keiner for the bug report. For some reason nobody noticed
667 this in years.
668
669 commit f8048af3e30cb3f65befd0aa2f3d16de3eeb5583
670 Author: Steven G. Johnson <stevenj@alum.mit.edu>
671 Date: Tue Mar 4 15:23:11 2014 -0500
672
673 more .gitignore additions
674
675 commit 5a51b3fe98509cc7e7ba5d3e17a3381777ad4731
676 Author: Steven G. Johnson <stevenj@alum.mit.edu>
677 Date: Tue Mar 4 15:21:31 2014 -0500
678
679 some fixes for make distcheck
680
681 commit 836af27f5d780970c87e436da882c9928e09c0f0
682 Author: Steven G. Johnson <stevenj@alum.mit.edu>
683 Date: Tue Mar 4 13:42:02 2014 -0500
684
685 copyright year update
686
687 commit 853f9f7cad1a8d3e92e6767562e4cd2d336164d2
688 Author: Steven G. Johnson <stevenj@alum.mit.edu>
689 Date: Tue Mar 4 13:39:18 2014 -0500
690
691 updates for 3.3.4
692
693 commit bf30f5aeea1c2927b302b13dc7579acf9f2adc12
694 Author: Steven G. Johnson <stevenj@alum.mit.edu>
695 Date: Tue Mar 4 13:30:00 2014 -0500
696
697 another file in .gitignore
698
699 commit c82b4fd61796715b1043982b1d4af49047f90238
700 Author: Steven G. Johnson <stevenj@alum.mit.edu>
701 Date: Tue Mar 4 10:39:09 2014 -0500
702
703 add .gitignore
704
705 commit 146fa8d61fca4a06a85c70d7167ac925575df02b
706 Author: Steven G. Johnson <stevenj@alum.mit.edu>
707 Date: Thu Jan 16 10:47:40 2014 -0500
708
709 added fftw_sprint_plan to output plan info to a string (so that the caller can be more flexible about how it is displayed)
710
711 commit 53e1fdbc07133b53ffbbd51c56b57a89880c0b21
712 Author: Steven G. Johnson <stevenj@alum.mit.edu>
713 Date: Thu Jan 16 10:26:48 2014 -0500
714
715 document fftw_alignment_of (since I found it useful in Julia, other people may too)
716
717 commit 7dbc7067e99477312acae30a9001c0dffa9bb428
718 Author: Matteo Frigo <athena@fftw.org>
719 Date: Tue Nov 19 19:08:44 2013 -0500
720
721 group together AC_CHECK_DECLS for functions in stdlib.h
722
723 commit fb70e413bddca578b2b72e0cac281d5c9a3c4101
724 Author: Matteo Frigo <athena@fftw.org>
725 Date: Tue Nov 19 07:33:59 2013 -0500
726
727 Be more careful in detecting sinl(), cos(), memalign(), posix_memalign()
728
729 commit 40f59a1d0f9bf384826595c499b0e7fe99aa1df5
730 Author: Matteo Frigo <athena@fftw.org>
731 Date: Tue Nov 19 06:20:43 2013 -0500
732
733 Fix autodetection of cosl(), sinl()
734
735 Autoconf must have changed since we last looked. Thanks
736 Ã…ke Sandgren for the fix.
737
738 commit 7e66dc5a495edc855dc9e156767172eaeabee335
739 Author: Matteo Frigo <athena@fftw.org>
740 Date: Sat Oct 26 17:31:00 2013 -0400
741
742 Fix wrong example in fftw-wisdom-to-conf.1
743
744 Thanks Julian Taylor for the bug report.
745
746 commit dd3283ac7d2e916bdeccb7229a669fcc2ef7ff83
747 Author: Matteo Frigo <athena@fftw.org>
748 Date: Tue Oct 1 07:03:51 2013 -0400
749
750 Use "bench$(EXEEXT)" instead of "bench"
751
752 Seems to be necessary on Windows.
753
754 commit c6acf03f53d217c9041eae3d381ad41b942dc9d9
755 Author: Steven G. Johnson <stevenj@alum.mit.edu>
756 Date: Fri Sep 20 09:26:08 2013 -0400
757
758 fix typo
759
760 commit f230f8cf903f1e2bb1261ed2f8657a99ac12a9ca
761 Author: Matteo Frigo <athena@fftw.org>
762 Date: Thu Jul 11 19:28:50 2013 -0400
763
764 Fix fftw-wisdom-to-conf
765
766 Apparently we broke fftw-wisdom-to-conf many years ago and nobody
767 noticed. Thanks Florian Oppermann for the bug report.
768
769 commit c74775bff0c164611377b29d95b3f6a6e8192005
770 Author: Matteo Frigo <athena@fftw.org>
771 Date: Tue Jun 4 10:31:33 2013 -0400
772
773 Somehow the NEWS entries for fftw-3.1.[23] were missing from the trunk.
774
775 commit c87bdc8bfd7cbf753bbe0635ea82613bc271220d
776 Author: Matteo Frigo <athena@fftw.org>
777 Date: Mon Jun 3 06:59:35 2013 -0400
778
779 note fixes for texinfo-5
780
781 commit ed390e3a385832e1faa452032f170510be6ed280
782 Author: Matteo Frigo <athena@fftw.org>
783 Date: Sun Jun 2 09:10:01 2013 -0400
784
785 version.texi should not be in git
786
787 commit aff23d05642705f738f788648c060085bdc476d6
788 Author: Matteo Frigo <athena@fftw.org>
789 Date: Sun Jun 2 09:05:50 2013 -0400
790
791 Fix the manual to work with both texinfo-4 and texinfo-5.
792
793 Texinfo has been stable for the first 15 years of FFTW's history.
794 Then some genius, with too much time in his hands and on a mission to
795 deliver the world from the evil of the C language, decided to rewrite
796 makeinfo in Perl, the old C version of makeinfo being, as I said,
797 evil. The official excuse for the rewrite was that now I can have my
798 manual in XML format, as if XML were a feature.
799
800 The result of this stroke of genius is that texinfo-5 has different
801 rules for macro expansion than texinfo-4 does, specifically regarding
802 whether or not spaces after a macro are ignored. Texinfo-4 had weird
803 rules, but at least they were constant and internally more or less
804 consistent. Texinfo-5 has different rules, and even worse the rules
805 in texinfo-5 are inconsistent between the TeX and HTML output
806 processors. This situation makes it almost impossible for us to
807 produce a manual that works with both texinfo 4 and 5 in all modes
808 (TeX, info, and html). The @noindent/@refill hack is my best shot at
809 patching this situation.
810
811 commit b0308275bb63a9cb3edb5847fa130f901deaf47e
812 Author: Matteo Frigo <athena@fftw.org>
813 Date: Fri May 17 11:39:05 2013 -0400
814
815 fftw_wisdom.1.in: document the --threads option.
816
817 commit 7eb9af0354f7663fa89daa56163d5bc5865bcec1
818 Author: Matteo Frigo <athena@fftw.org>
819 Date: Wed Mar 27 13:12:15 2013 -0400
820
821 Define the version number as M4 macros, so that it is defined only once.
822
823 We used to have two version strings: the package number FFTW-X.Y.Z and
824 the libtool number CURRENT:REVISION:AGE with the invariant that
825 REVISION==Z. Unfortunately in the fftw-3.3.3 release we forgot to
826 change REVISION, with the result that fftw-3.3.3 and fftw-3.3.2 have
827 the same REVISION number.
828
829 Hopefully this patch will prevent similar screwups in the future.
830
831 commit e67d16ed0b81b0e01124c7cdee2320bfea2fd6e4
832 Author: Matteo Frigo <athena@fftw.org>
833 Date: Sun Mar 17 19:47:57 2013 -0400
834
835 note that these scripts are not meant for normal users
836
837 commit b892c705c7051bcd27c0939070e515fe85f68bb2
838 Author: Matteo Frigo <athena@fftw.org>
839 Date: Sun Mar 17 19:45:52 2013 -0400
840
841 add README.md for github's convenience
842
843 commit 029db460f692ea9fefc7d0efdf8e11b5d51215b0
844 Author: Matteo Frigo <athena@fftw.org>
845 Date: Sun Mar 17 19:44:00 2013 -0400
846
847 Update README for people who download the git repository.
848
849 commit 128e9ddbde76a63c7f255b258ff02bd6766cbaa4
850 Author: Matteo Frigo <athena@fftw.org>
851 Date: Sun Mar 17 19:37:40 2013 -0400
852
853 Remove reference to obsolete mailing list.
854
855 commit 4b1d3b63d64a01216c023389565e40ca03d6be2f
856 Author: Matteo Frigo <athena@fftw.org>
857 Date: Sat Mar 16 09:47:59 2013 -0400
858
859 mkdist.sh: use git instead of darcs
860
861 Use git instead of darcs to generate the ChangeLog. Also, refuse to
862 create a distribution if git HEAD does not have a tag, to prevent a
863 common mistake.
864
865 commit fe84f5d9eeef9f773b0785ba91032ab5b7677461
866 Author: Matteo Frigo <athena@fftw.org>
867 Date: Sat Mar 16 09:26:03 2013 -0400
868
869 remove some junk '*~' files created by the darcs->git conversion
870
871 commit 2f9d0a41eec86def6fe9160dac1be172bb241eba
872 Author: stevenj <stevenj@fftw.org>
873 Date: Thu Feb 7 14:22:12 2013 -0500
874
875 use Win32 threads, not pthreads, if both are present (it's not clear why Windows users would ever want the latter); see also https://github.com/JuliaLang/julia/issues/2015
876
877 commit b8623189967ed7eb1ca50e80f2b5ee2d6f3ca0ad
878 Author: stevenj <stevenj@fftw.org>
879 Date: Thu Feb 7 14:13:40 2013 -0500
880
881 I found it useful in the Julia interface to call fftw_alignment_of (in order to check plan applicability), in which case we need to IFFTW_EXTERN it for Windows; might be worth considering documenting this function
882
883 commit 23b1bf3e19198d2c4575bf6f305cd41ebc17124c
884 Author: athena <athena@fftw.org>
885 Date: Sat Jan 12 15:35:46 2013 -0500
886
887 Increase timing interval to 5000 cycles on x86_64
888
889 commit 6e615417da7e1c7cba49b1a73c9edcc15d938cf9
890 Author: athena <athena@fftw.org>
891 Date: Tue Dec 4 15:58:22 2012 -0500
892
893 make -lm a private library in fftw.pc.in
894
895 Julian Taylor says:
896
897 Make -lm a private library, libfftw is linked against it so clients
898 don't need it. You can use pkg-configs --static flag for static
899 linking. this works on all systems where indirect linking works,
900 probably on all others pkg-config is not supported anyway (wild
901 guess).
902
903 commit 553849f32bcc82a17de11c76cfa9b2f672bfb89e
904 Author: athena <athena@fftw.org>
905 Date: Tue Dec 4 15:54:58 2012 -0500
906
907 Escape minus signs in man pages
908
909 http://lintian.debian.org/tags/hyphen-used-as-minus-sign.html says:
910
911 By default, "-" chars are interpreted as hyphens (U+2010) by groff,
912 not as minus signs (U+002D). Since options to programs use minus
913 signs (U+002D), this means for example in UTF-8 locales that you
914 cannot cut and paste options, nor search for them easily.
915
916 Thanks Julian Taylor for the patch.
917
918 commit 715c7ea8347a5dad7d97a0c5d81a87801e826ada
919 Author: athena <athena@fftw.org>
920 Date: Tue Dec 4 15:53:28 2012 -0500
921
922 Change texinfo category to Development
923
924 commit 01810ba2a427ee086a4a5323e991dd19e2d715be
925 Author: stevenj <stevenj@fftw.org>
926 Date: Sat Nov 24 22:37:54 2012 -0500
927
928 fixed deadlock bug caused by bogosity flag getting out of synch between processes; thanks to Michael Pippig for the bug report
929
930 commit 69aa82642e26a8eb5292a8a7b83250e8df619065
931 Author: athena <athena@fftw.org>
932 Date: Wed Nov 21 18:34:29 2012 -0500
933
934 Updated NEWS
935
936 commit e98f888b9457ce5855491279c6c0ef72e23a374c
937 Author: athena <athena@fftw.org>
938 Date: Wed Nov 21 18:33:15 2012 -0500
939
940 use 2x2 AVX transposition instead of individual stores.
941
942 This seems to improve single-precision AVX on Sandy Bridge machines.
943
944 commit 466f579cb8856a0709da1e6c6b5ca03360bc61a0
945 Author: stevenj <stevenj@fftw.org>
946 Date: Tue Nov 20 12:18:00 2012 -0500
947
948 revert part of Taylor patch to acx_mpi.m4: do not link -lmpi if mpicc works without libraries, as -lmpi may be some completely different MPI implementation
949
950 commit 610460226f6d5d2d7c4c53896b5aff9b1f108e4b
951 Author: stevenj <stevenj@fftw.org>
952 Date: Tue Nov 20 11:44:57 2012 -0500
953
954 fix deadlock bug (thanks to Michael Pippig for the bug report and patch, and to Graham Dennis for the bug report) in which some processes called MPI_Alltoall and some called MPI_Alltoallv
955
956 commit 512d8d783d6af373fca8376f79255b794df5bd31
957 Author: athena <athena@fftw.org>
958 Date: Mon Oct 29 15:20:01 2012 -0400
959
960 fix texinfo quirk
961
962 commit ff329890540002506c47717ebbc3959de30e5066
963 Author: athena <athena@fftw.org>
964 Date: Mon Oct 29 09:16:43 2012 -0400
965
966 clarify that padding only applies to in-place transforms
967
968 commit 905ded711f93fa3c94faa7623a5093525338fdeb
969 Author: athena <athena@fftw.org>
970 Date: Sun Oct 28 18:42:48 2012 -0400
971
972 make the index-computation logic less paranoid
973
974 The problem is that for each K and for each expression of the form P[I
975 + STRIDE * K] in a loop, most compilers will try to lift an induction
976 variable PK := &P[I + STRIDE * K]. In large codelets we have many
977 such values of K. For example, a codelet of size 32 with 4 input
978 pointers will generate O(128) induction variables, which will likely
979 overflow the register set, which is likely worse than doing the index
980 computation in the first place.
981
982 In the past we (wisely and correctly) assumed that compilers will do
983 the wrong thing, and consequently we disabled the induction-variable
984 "optimization" altogether by setting STRIDE ^= ZERO, where ZERO is a
985 value guaranteed to be 0. Since the compiler does not know that
986 ZERO=0, it cannot perform its "optimization" and it is forced to
987 behave sensibly.
988
989 With this patch, FFTW is a little bit less paranoid. FFTW now
990 disables the induction-variable optimization" only when we estimate
991 that the codelet uses more than ESTIMATED_AVAILABLE_INDEX_REGISTERS
992 induction variables.
993
994 Currently we set ESTIMATED_AVAILABLE_INDEX_REGISTERS=16. 16 registers ought
995 to be enough for anybody (or so the amd64 and ARM ISA's seem to imply).
996
997 commit 1dacef5bde5cb6599f9d98e42495f7897f109787
998 Author: athena <athena@fftw.org>
999 Date: Sun Oct 28 18:33:24 2012 -0400
1000
1001 silence warnings
1002
1003 commit fb08724b27a05ca890c1da062c8d0385c22c02eb
1004 Author: athena <athena@fftw.org>
1005 Date: Sat Oct 27 09:58:49 2012 -0400
1006
1007 bump version to 3.3.3
1008
1009 commit c4d6abbc1c80eb612b2abccce728a06189780a69
1010 Author: athena <athena@fftw.org>
1011 Date: Sat Oct 27 09:55:15 2012 -0400
1012
1013 evaluate plans for >1ms when using gettimeofday()
1014
1015 The previous limit 10ms was too paranoid, and it made life difficult
1016 on machines without an "official" cycle counter, such as ARM.
1017
1018 commit 172dd3def821c0898822a5ca72c3f5391553536c
1019 Author: athena <athena@fftw.org>
1020 Date: Sat Oct 27 09:46:04 2012 -0400
1021
1022 use 4-way NEON SIMD instead of 2-way
1023
1024 Kai-Uwe Bloem tried to warn me a year ago that 128-bit NEON was better
1025 than 64-bit NEON even on machines with a 64-bit pipe, but I foolishly
1026 did not listen. Now that 128-bit NEON pipes are starting to appear on
1027 the market it is definitely time to switch.
1028
1029 commit 1c9c469f8727ab1780533226283746e7e9098694
1030 Author: athena <athena@fftw.org>
1031 Date: Wed Sep 26 14:21:12 2012 -0400
1032
1033 Note that fftw-3.3 includes MPI support
1034
1035 commit 2de12d67e5f4e34d39119f2e730e9d70e4df0c4e
1036 Author: athena <athena@fftw.org>
1037 Date: Wed Jul 18 11:25:40 2012 -0400
1038
1039 remove obsolete unused function
1040
1041 commit 6bc94ae7db56490e35c256bd4840608eea6ec150
1042 Author: stevenj <stevenj@fftw.org>
1043 Date: Fri Jun 29 15:57:14 2012 -0400
1044
1045 whoops, call omp_get_max_threads; thanks to Hanno Rein for the bug report
1046
1047 commit 747ece1503281aad7beb32448af9a7cad05eba52
1048 Author: athena <athena@fftw.org>
1049 Date: Sat Apr 28 10:55:09 2012 -0400
1050
1051 Fix libfftw3/libfftw3_threads chicken-egg problem
1052
1053 On most systems we want to build libfftw3 first, so that
1054 libfftw3_threads can depend upon libfftw3. When producing a single
1055 combined-thread library (e.g. on Windows) we want the opposite,
1056 so that libfftw3 can include libfftw3_threads.
1057
1058 commit 4bcfb67da7211171d5f4b80a90845770bbd2e147
1059 Author: athena <athena@fftw.org>
1060 Date: Sat Apr 28 10:11:28 2012 -0400
1061
1062 updated NEWS for 3.3.2
1063
1064 commit cb553a8315ae9a700558956a190aac4658064b83
1065 Author: athena <athena@fftw.org>
1066 Date: Thu Apr 26 19:36:11 2012 -0400
1067
1068 change revision to 3.3.2
1069
1070 commit 98229b0d7673cfa15a8c339d305b09367b97d670
1071 Author: athena <athena@fftw.org>
1072 Date: Thu Apr 26 19:31:02 2012 -0400
1073
1074 Remove old aligned_main() hack.
1075
1076 On i386, in our benchmark program we used to manually aligned the
1077 stack to 16-byte boundary via asm trickery. This was a good idea in
1078 1999 (and it was actually necessary to make things work) but the hack
1079 is now obsolete and it seems to break gcc-4.7. So the hack is now
1080 gone.
1081
1082 commit 4e4c680e7497ee8bb87bb31451d10d71b8c205e2
1083 Author: athena <athena@fftw.org>
1084 Date: Thu Mar 29 16:26:16 2012 -0400
1085
1086 Bugfix: a couple of uninitialized values in the benchmark program
1087
1088 commit 229d864bde7f95f45ee23608b756926a3a20ddd0
1089 Author: athena <athena@fftw.org>
1090 Date: Tue Mar 20 19:03:47 2012 -0400
1091
1092 make libfftw{threads,mpi} depend upon libfftw for libtool purposes
1093
1094 Thanks Julian Taylor for the patch
1095
1096 commit f9a05701f2027906b68ff913713166310e18c8cc
1097 Author: stevenj <stevenj@fftw.org>
1098 Date: Tue Mar 6 04:44:00 2012 -0500
1099
1100 formatting tweak
1101
1102 commit cec6c01b2647796f5909cfe2d90ce040380da5c5
1103 Author: athena <athena@fftw.org>
1104 Date: Mon Mar 5 21:05:27 2012 -0500
1105
1106 destroying => overwriting
1107
1108 commit ad79a0ae3baf83548bc5c9597b0aae94e5226073
1109 Author: stevenj <stevenj@fftw.org>
1110 Date: Fri Mar 2 10:31:20 2012 -0500
1111
1112 note that WISDOM_ONLY is a documented flag
1113
1114 commit adf4cdab68e50778689170eb91270bb189aea1ac
1115 Author: stevenj <stevenj@fftw.org>
1116 Date: Fri Mar 2 10:27:08 2012 -0500
1117
1118 check for icc pretending to be gcc before including quad-precision decls; thanks to Michael Anselmi for the bug report
1119
1120 commit 99aeb386978a56c1a33f6fe7c9b7942421cf550e
1121 Author: stevenj <stevenj@fftw.org>
1122 Date: Fri Mar 2 10:23:19 2012 -0500
1123
1124 foo_CFLAGS needs to manually include AM_CFLAGS; thanks to Henry Gomersall for the Windows bug report
1125
1126 commit 6060dbccef23e01e603f44d42ab602ab89a9442e
1127 Author: athena <athena@fftw.org>
1128 Date: Sat Feb 25 15:21:39 2012 -0500
1129
1130 update for latest mingw
1131
1132 commit 06fff6523418bd7ee2478c081cec418eb73adee5
1133 Author: stevenj <stevenj@fftw.org>
1134 Date: Mon Feb 20 23:06:13 2012 -0500
1135
1136 added Fortran NEWS
1137
1138 commit 51e33866a2c0cc189954b8197e5053b3275fc564
1139 Author: stevenj <stevenj@fftw.org>
1140 Date: Mon Feb 20 23:00:13 2012 -0500
1141
1142 move non-portable extended/quad precision F03 interfaces into separate .f03 files (while keeping double/single in fftw3.f03 for minimal ABI breakage)
1143
1144 commit 545c90a1db20c5cd50f30d0f31d2334ec10cf8ac
1145 Author: athena <athena@fftw.org>
1146 Date: Mon Feb 20 11:21:57 2012 -0500
1147
1148 rm mpi/fftw3-mpi.f03 at make clean time; thanks Tyler Luchko for the bug report.
1149
1150 commit b7c0fcdee76b9f2efe194ec13d3b1ca97fadf376
1151 Author: athena <athena@fftw.org>
1152 Date: Mon Feb 20 11:18:24 2012 -0500
1153
1154 Disable a Visual Studion warning that was obnoxious enough for Sebastian Schuberth to send us a patch.
1155
1156 commit 4a0de08f4d1f026454fba2e053bd0573afb984d2
1157 Author: athena <athena@fftw.org>
1158 Date: Mon Feb 20 11:18:06 2012 -0500
1159
1160 Change version to 3.3.1
1161
1162 commit 49783f83e58d9bc7dc3ea7f1822fefe961361935
1163 Author: athena <athena@fftw.org>
1164 Date: Mon Feb 20 11:03:15 2012 -0500
1165
1166 Integrated Visual Studio AVX patches by Carsten Steger
1167
1168 commit bc9dc18402445ce9b357dea5ff2b20720773ddc5
1169 Author: stevenj <stevenj@fftw.org>
1170 Date: Wed Nov 9 10:13:32 2011 -0500
1171
1172 typo
1173
1174 commit 659e85e6065429fc6a6e4a005bc5f5068f707fb3
1175 Author: stevenj <stevenj@fftw.org>
1176 Date: Tue Nov 8 22:45:09 2011 -0500
1177
1178 add missing F77 set_timelimit function; thanks to Martin Diehl for the bug repory
1179
1180 commit cf1a5563a691fd0c25c67910926adb2ef936cbb7
1181 Author: athena <athena@fftw.org>
1182 Date: Sun Sep 25 10:54:56 2011 -0400
1183
1184 note requirement of /machine:x64 in windows x64 README
1185
1186 commit cb216e1fd71ab751f2de5e083bc0237cc98535c9
1187 Author: athena <athena@fftw.org>
1188 Date: Sun Sep 18 09:28:20 2011 -0400
1189
1190 AVX detection for MSVC
1191
1192 commit 8acf60e9e0c6417a91d9a21dddb1467feb4fd23e
1193 Author: athena <athena@fftw.org>
1194 Date: Tue Sep 13 14:58:29 2011 -0400
1195
1196 compile with C89
1197
1198 commit f3edf46ebdda4a632ccb0ece6c5fa0559014d24e
1199 Author: athena <athena@fftw.org>
1200 Date: Sat Sep 3 16:25:50 2011 -0400
1201
1202 use the same search pruning heuristics for threaded plans as for nonthreaded plans
1203
1204 commit f004d764307d0e1815c2f936a9a398825d367f2c
1205 Author: athena <athena@fftw.org>
1206 Date: Sat Sep 3 16:12:11 2011 -0400
1207
1208 shorten ESTIMATE planning time for certain weird sizes
1209
1210 FFTW includes a collection of "solvers" that apply to a subset of
1211 "problems". Assume for simplicity that a "problem" is a single 1D
1212 complex transform of size N, even though real "problems" are much more
1213 general than that. FFTW includes three "prime" solvers called
1214 "generic", "bluestein", and "rader", which implement different
1215 algorithms for prime sizes.
1216
1217 Now, for a "problem" of size 13 (say) FFTW also includes special code
1218 that handles that size at high speed. It would be a waste of time to
1219 measure the execution time of the prime solvers, since we know that
1220 the special code is way faster. However, FFTW is modular and one may
1221 or may not include the special code for size 13, in which case we must
1222 resort to one of the "prime" solvers. To address this issue, the
1223 "prime" solvers (and others) are proclaimed to be SLOW". When
1224 planning, FFTW first tries to produce a plan ignoring all the SLOW
1225 solvers, and if this fails FFTW tries again allowing SLOW solvers.
1226
1227 This heuristic works ok unless the sizes are too large. For example
1228 for 1044000=2*2*2*2*2*3*3*5*5*5*29 FFTW explores a huge search tree of
1229 all zillion factorizations of 1044000/29, failing every time because
1230 29 is SLOW; then it finally allows SLOW solvers and finds a solution
1231 immediately.
1232
1233 This patch proclaims solvers to be SLOW only for small values of N.
1234 For example, the "generic" solver implements an O(n^2) DFT algorithm;
1235 we say that it is SLOW only for N<=16.
1236
1237 The side effects of this choice are as follows. If one modifies FFTW to
1238 include a fast solver of size 17, then planning for N=17*K will be
1239 slower than today, because FFTW till try both the fast solver and the
1240 generic solver (which is SLOW today and therefore not tried, but is no
1241 longer SLOW after the patch). If one removes a fast solver, of size say
1242 13, then he may still fall into the current exponential-search behavior
1243 for "problems" of size 13*HIGHLY_FACTORIZABLE_N.
1244
1245 If somebody had compleined about transforms of size 1044000 ten years
1246 ago, "don't do that" would have been an acceptable answer. I guess the
1247 bar is higher today, so I am going to include this patch in our 3.3.1
1248 release despite their side-effects for people who want to modify FFTW.
1249
1250 commit 610f7976d8d31f385e2bce4fd8da0a5c770fb877
1251 Author: athena <athena@fftw.org>
1252 Date: Sat Aug 27 13:55:24 2011 -0400
1253
1254 Fix typo fftw_execute_dft_r2r => fftw_execute_r2r
1255
1256 Thanks KIU Shueng Chuan for the bug report.
1257
1258 commit 76f7c5558bb5eedb80ff3e67db798b4e493a5872
1259 Author: athena <athena@fftw.org>
1260 Date: Fri Aug 26 06:13:55 2011 -0400
1261
1262 In Rader's algorithm, compute the generator lazily.
1263
1264 The planner was spending a lot of time computing generators for
1265 plans that were immediately discarded. Now we compute generators
1266 only when absolutely needed.
1267
1268 commit e1b527d72aad02ddea04f266f6831fb13768fbc3
1269 Author: athena <athena@fftw.org>
1270 Date: Sun Aug 21 16:16:38 2011 -0400
1271
1272 Release notes for 3.3.1-beta1
1273
1274 commit 7079b5216c27e2320215f1eb10f6c6554a6c1ac1
1275 Author: stevenj <stevenj@alum.mit.edu>
1276 Date: Fri Aug 19 19:59:17 2011 -0400
1277
1278 make fftw_mpi_block routine 10x faster, since it is being called zillions of times (thanks to Tom Vacek for the profiling)
1279
1280 commit e5c7931a01f350aa1f756bfa76307b317e2208e1
1281 Author: athena <athena@fftw.org>
1282 Date: Thu Aug 18 14:19:36 2011 -0400
1283
1284 Implement autodetection of NEON extensions
1285
1286 commit 16600d97d52a81152e4ef9ac140c336a5a1ca126
1287 Author: athena <athena@fftw.org>
1288 Date: Sun Aug 14 14:12:29 2011 -0400
1289
1290 Update the FSF address.
1291
1292 The FSF moved downtown.
1293
1294 commit 8609b388c7872e1b39baa6d72349dbbb476ade97
1295 Author: stevenj <stevenj@fftw.org>
1296 Date: Thu Aug 11 14:54:38 2011 -0400
1297
1298 allow specifying TRANSPOSE_{IN/OUT} transpose plans, since libbench does not canonicalize rnk=1 n=1 plans as rnk=0
1299
1300 commit 341d3e142ea250096b5c76778f77fba4bf6de622
1301 Author: stevenj <stevenj@fftw.org>
1302 Date: Thu Aug 11 14:17:24 2011 -0400
1303
1304 check.pl should occasionally check DESTROY_INPUT problems too (especially since those enable slightly different algorithms in MPI)
1305
1306 commit 2845a3c0be7059c93b704b624cc482f9e4778188
1307 Author: stevenj <stevenj@fftw.org>
1308 Date: Thu Aug 11 12:37:51 2011 -0400
1309
1310 unify post-MPI transpose handling in pairwise and alltoall solvers; should make the former faster in the destroy-input out-of-place case, and the latter more widely applicable
1311
1312 commit f02c57b267809e16e0e29ae8f7c1301323eda1cb
1313 Author: athena <athena@fftw.org>
1314 Date: Mon Aug 8 10:06:14 2011 -0400
1315
1316 Add support for ARM NEON
1317
1318 commit 8ec2b52144bcf72a028cb84c273719b0ecc7730e
1319 Author: stevenj <stevenj@fftw.org>
1320 Date: Fri Aug 5 17:25:32 2011 -0400
1321
1322 more C++ paranoia
1323
1324 commit 6047a7079ad3a55d982e68e03cbe158c5e476ee0
1325 Author: stevenj <stevenj@fftw.org>
1326 Date: Fri Aug 5 17:02:00 2011 -0400
1327
1328 tentative version bump for 3.3.1
1329
1330 commit 6fbb0639cf17563d4603c6d545e9335d19e3ac43
1331 Author: stevenj <stevenj@fftw.org>
1332 Date: Fri Aug 5 16:52:28 2011 -0400
1333
1334 fixes so that MPI code compiles when MPICC is a C++ compiler, even if the serial code is compiled with a C compiler; thanks to Kyle Spyksma for the bug report
1335
1336 commit d7feb2daba8f23e5bca6c4e4e3f4177ad9a49e87
1337 Author: stevenj <stevenj@fftw.org>
1338 Date: Fri Aug 5 16:04:06 2011 -0400
1339
1340 use correct precision in f03-wrap.c, avoiding a (harmless) implicit pointer cast that prevented compilation under C++; thanks to Kyle Spyksma for the bug report
1341
1342 commit 50d12441bd0b3410c799d11784717e76147b5474
1343 Author: stevenj <stevenj@fftw.org>
1344 Date: Fri Aug 5 14:04:32 2011 -0400
1345
1346 manual typo
1347
1348 commit 9e45ff08aca4e28ec61c947284188a01aed45fe6
1349 Author: athena <athena@fftw.org>
1350 Date: Tue Jul 26 20:55:45 2011 -0400
1351
1352 Honor WITH_OUR_MALLOC in libbench2
1353
1354 commit 2cfcd40d46731a41a400ed4a4d2eeeb954422568
1355 Author: athena <athena@fftw.org>
1356 Date: Tue Jul 26 20:27:28 2011 -0400
1357
1358 fixed typo: incorrect name of combined threads library on Windows
1359
1360 commit a81ea0083c5cc32c9acecfd5f57f38d0e4f07bb5
1361 Author: stevenj <stevenj@fftw.org>
1362 Date: Mon Jul 25 14:38:20 2011 -0400
1363
1364 3.3 version bump & NEWS
1365
1366 commit df2116046636b6ed6b989fa8b706f3e9db53e17e
1367 Author: stevenj <stevenj@fftw.org>
1368 Date: Mon Jul 25 14:37:48 2011 -0400
1369
1370 use int(..., C_SIZE_T) rather than declaring another variable in the Fortran examples
1371
1372 commit 19ebb38d4180b0a70f4579d37dedfd6e678edecd
1373 Author: stevenj <stevenj@fftw.org>
1374 Date: Wed Jul 13 05:02:32 2011 -0400
1375
1376 typo, thanks to Rhys Ulerich for the comment
1377
1378 commit a221f0e99a9206e1edaa8016e04f891261cc5196
1379 Author: athena <athena@fftw.org>
1380 Date: Mon Jul 11 14:39:52 2011 -0400
1381
1382 Fix bug in bubblesort
1383
1384 Bubblesort was not sorting. This was a bug in the benchmark library
1385 (not in FFTW per se), and it impacted the benchmark program
1386 with --report-time and --report-mflops causing it to output
1387 an incorrect value for the median. (The minimum, maximum, and
1388 average value were correct.) Thanks Dima Baksheev of Intel for
1389 reporting this bug.
1390
1391 commit d33f4f7b648b658d0d232f8561c85fd9b007c105
1392 Author: stevenj <stevenj@fftw.org>
1393 Date: Fri Jul 8 13:35:59 2011 -0400
1394
1395 small manual typos
1396
1397 commit 047c6636b6cbbdde2d8f4e5a62e26013336fd3e7
1398 Author: athena <athena@fftw.org>
1399 Date: Wed Jul 6 10:49:40 2011 -0400
1400
1401 Detection of altivec.h requires $ALTIVEC_CFLAGS
1402
1403 commit 8cb56c732d86e26edca3ea53e63440756a434031
1404 Author: athena <athena@fftw.org>
1405 Date: Tue Jul 5 19:58:47 2011 -0400
1406
1407 Introduce fake dependency so that my-getopt.c is recompiled
1408
1409 my-getopt.c does not depend on anything, and so it is not rebuilt when
1410 reconfiguring for a different ISA (e.g., CC="gcc -m32" vs CC="gcc
1411 -m64"). Add a fake dependency on <config.h> so that the file is
1412 recompiled.
1413
1414 commit e50fbe175fe6b482d4eabf554a9d923fe1cb727a
1415 Author: stevenj <stevenj@fftw.org>
1416 Date: Tue Jul 5 18:53:36 2011 -0400
1417
1418 support compiling/installing --enable-threads --enable-openmp at the same time, although in this case the test program only uses the threads variety. Update documentation accordingly, and in general expand the documentation of the OpenMP support
1419
1420 commit 1b13a7673c31c9f98151186ab5ad96952f0c8cc2
1421 Author: stevenj <stevenj@fftw.org>
1422 Date: Tue Jul 5 16:04:03 2011 -0400
1423
1424 call omp_set_num_threads in fftw-bench so that the number of OpenMP threads corresponds with the number of FFTW threads
1425
1426 commit fcd3d63bce6f23ca8274e739ca83a0fcb8b63a99
1427 Author: stevenj <stevenj@fftw.org>
1428 Date: Tue Jul 5 16:03:06 2011 -0400
1429
1430 when --enable-openmp, install as fftw3_omp rather than fftw3_threads, so that both the POSIX threads and OpenMP variants of FFTW can be installed at once
1431
1432 commit 4c8bae967265bf7b4c9705d6efe87cf7e9151fce
1433 Author: stevenj <stevenj@fftw.org>
1434 Date: Sat Jul 2 02:21:22 2011 -0400
1435
1436 don't even declare an fftw_execute interface in Fortran, since it is unsafe and we recommend against it anyway; thanks to Arjen Markus for the suggestion
1437
1438 commit b1741fcc12ccd46d1ce538398c78ca8da98b2448
1439 Author: athena <athena@fftw.org>
1440 Date: Fri Jul 1 14:35:44 2011 -0400
1441
1442 consistently use the order single, double, long double
1443
1444 commit 02d76b0f908814ec69eb9f4edf423e6794d63720
1445 Author: athena <athena@fftw.org>
1446 Date: Wed Jun 29 17:27:06 2011 -0400
1447
1448 MSVC AVX 64-bit detection does not work, punt for now.
1449
1450 commit 5a057b2b67c6eac3cb59c5dd555e1e4093d0ce8e
1451 Author: stevenj <stevenj@fftw.org>
1452 Date: Wed Jun 29 15:52:27 2011 -0400
1453
1454 fixed typo, added note on transposed flags for r2c/c2r; thanks to Rhys Ulerich for the suggestions
1455 [empty commit message]
1456
1457 commit 21db43d01a6a55f3bce9bbb3bd01fc968a8fb4ac
1458 Author: athena <athena@fftw.org>
1459 Date: Wed Jun 29 09:41:39 2011 -0400
1460
1461 fixes for compiling with MSVC (untested)
1462
1463 commit dcbc5ebfe7dd814f3ef8ee85fb5b2ccb4a3671f0
1464 Author: athena <athena@fftw.org>
1465 Date: Tue Jun 28 16:48:36 2011 -0400
1466
1467 comment
1468
1469 commit f71799bf38f03deaeea50a8b4178757e826854c0
1470 Author: stevenj <stevenj@fftw.org>
1471 Date: Mon Jun 27 21:01:56 2011 -0400
1472
1473 rm extraneous line break in HTML output ... I hate texinfo
1474 [empty commit message]
1475
1476 commit 9ae9c2b534eb9064d8153f235e6d013a4c8b50c1
1477 Author: stevenj <stevenj@fftw.org>
1478 Date: Mon Jun 27 00:47:33 2011 -0400
1479
1480 maintainer-clean should delete html directory (otherwwise we keep obsolete HTML files in the dist tarball, sigh)
1481 [empty commit message]
1482
1483 commit f66d29622c87134e4a790fdab1e25413fac8d33d
1484 Author: stevenj <stevenj@fftw.org>
1485 Date: Sun Jun 26 23:36:32 2011 -0400
1486
1487 update copyright year in manual
1488 [empty commit message]
1489
1490 commit 3799446cb5d30354dc69a36f07e8bdf87ed5cb34
1491 Author: stevenj <stevenj@fftw.org>
1492 Date: Sun Jun 26 22:52:54 2011 -0400
1493
1494 whoops, don't dist .f03 headers, since those are built by the user's Makefile
1495 [empty commit message]
1496
1497 commit 8c336f8396e94752233e91433a0e64a72e137599
1498 Author: stevenj <stevenj@fftw.org>
1499 Date: Sun Jun 26 22:43:49 2011 -0400
1500
1501 fix embarrassing deadlock/crashing bug in my previous nowisdom_hook fix -- I forgot to handle the case where one process has wisdom and another one doesn't, requiring a nowisdom_hook in the latter case; this should only affect MPI transforms since otherwise these hook functions are NULL
1502 [empty commit message]
1503
1504 commit e32aa9704f9a6e0811638809bbf764dc748116fb
1505 Author: stevenj <stevenj@fftw.org>
1506 Date: Sun Jun 26 21:02:15 2011 -0400
1507
1508 subsubheadings, MPI transpose reference
1509 [empty commit message]
1510
1511 commit e2759a2102797af24072573371a9d94d4943f1ff
1512 Author: stevenj <stevenj@fftw.org>
1513 Date: Sun Jun 26 20:48:53 2011 -0400
1514
1515 add MPI plan reference
1516 [empty commit message]
1517
1518 commit 5fd0d86ab1801a09997624a79a56029f76e4c718
1519 Author: stevenj <stevenj@fftw.org>
1520 Date: Sun Jun 26 17:07:21 2011 -0400
1521
1522 portions of MPI reference docs; tweaks to NEWS
1523 [empty commit message]
1524
1525 commit b280b47c049bc941297a69b5d668a7fdf4a81977
1526 Author: stevenj <stevenj@fftw.org>
1527 Date: Sun Jun 26 12:40:43 2011 -0400
1528
1529 use $(CHECK_PL_OPTS) more consistently
1530 [empty commit message]
1531
1532 commit f78b49c77e0442702bb0bb3b1e52b82795c36358
1533 Author: athena <athena@fftw.org>
1534 Date: Sun Jun 26 10:04:54 2011 -0400
1535
1536 accept \r\n as well as \n. Grrr...
1537
1538 commit 4449361639ee599d5221557c1b7021c85954c2d9
1539 Author: athena <athena@fftw.org>
1540 Date: Sun Jun 26 09:52:11 2011 -0400
1541
1542 new configure option --with-incoming-stack-boundary=N
1543
1544 This option selects CFLAGS to align the stack at all externally-callable
1545 functions. This currently comprises api/* and threads/*
1546
1547 commit 44191f4b3b5109c9e1befb9a3eefb1f34a1fd63e
1548 Author: athena <athena@fftw.org>
1549 Date: Sun Jun 26 09:51:37 2011 -0400
1550
1551 add -fomit-frame-pointer back
1552
1553 Somehow -O3 does not imply -fomit-frame-pointer on ia32
1554
1555 commit 94f1e0517794a91b91b81bc46695d0bcf5d23ca9
1556 Author: athena <athena@fftw.org>
1557 Date: Sun Jun 26 07:20:27 2011 -0400
1558
1559 Note that removal of mips-ps is temporary.
1560
1561 commit 6ec5e833bf16b843f2893e894f786a67721cf647
1562 Author: stevenj <stevenj@fftw.org>
1563 Date: Sat Jun 25 23:15:03 2011 -0400
1564
1565 update copyright year
1566 [empty commit message]
1567
1568 commit 27117ddc70e191d20cc88be0a2285f454a1409cd
1569 Author: stevenj <stevenj@fftw.org>
1570 Date: Sat Jun 25 21:33:13 2011 -0400
1571
1572 updated NEWS
1573 [empty commit message]
1574
1575 commit 2e1f81718cf9d9073a65e907c6aecebc1333a4a1
1576 Author: stevenj <stevenj@fftw.org>
1577 Date: Sat Jun 25 20:29:55 2011 -0400
1578
1579 fixes to Fortran interface and docs
1580 [empty commit message]
1581
1582 commit 32e0027e573cbfcae6c39e535a1a3549f602b97a
1583 Author: stevenj <stevenj@fftw.org>
1584 Date: Sat Jun 25 17:43:31 2011 -0400
1585
1586 initial stab at MPI Fortran docs
1587 [empty commit message]
1588
1589 commit f1b33feb4669f8b92467a448172c0c0734c5ac48
1590 Author: stevenj <stevenj@fftw.org>
1591 Date: Sat Jun 25 16:43:31 2011 -0400
1592
1593 correct description of what MPI standard says about I/O (I can't believe this crap)
1594 [empty commit message]
1595
1596 commit 0329701daca6ace6a4167366fda97a86d7d3b6f4
1597 Author: stevenj <stevenj@fftw.org>
1598 Date: Sat Jun 25 15:14:07 2011 -0400
1599
1600 more MPI documentation; mention `fftw_alloc' functions earlier in the manual
1601 [empty commit message]
1602
1603 commit c4a68ffe9d9332bc0fc9e9db4f41a7c0728ec663
1604 Author: stevenj <stevenj@fftw.org>
1605 Date: Sat Jun 25 13:40:19 2011 -0400
1606
1607 clarification about --enable-sse2
1608 [empty commit message]
1609
1610 commit cbf6b823ec85dfecab28d071db39d5f92cdcb561
1611 Author: athena <athena@fftw.org>
1612 Date: Sat Jun 25 13:31:25 2011 -0400
1613
1614 Update mingw build scripts for fftw-3.3
1615
1616 commit 1c97317e9689ac1376ba51c408adde1514475140
1617 Author: athena <athena@fftw.org>
1618 Date: Sat Jun 25 08:52:13 2011 -0400
1619
1620 Fix typo: EXTRADIST => EXTRA_DIST
1621
1622 commit 0ab873d4daf2a047ec04e273f0a8046f8919961c
1623 Author: stevenj <stevenj@fftw.org>
1624 Date: Fri Jun 24 23:52:19 2011 -0400
1625
1626 finished draft "modern fortran" chapter
1627 [empty commit message]
1628
1629 commit 35f278113d2e2b4532514f40b44fe468b5c7d729
1630 Author: stevenj <stevenj@fftw.org>
1631 Date: Fri Jun 24 20:47:49 2011 -0400
1632
1633 include FFTW_EXTERN prototypes for wrappers, so that they are properly exported to DLLs on Windows (sigh)
1634 [empty commit message]
1635
1636 commit d2a1f24513b42464d64fa4fea5b97326f4251646
1637 Author: athena <athena@fftw.org>
1638 Date: Fri Jun 24 16:52:30 2011 -0400
1639
1640 use malloc() instead of alloca() for large buffers
1641
1642 The proximate cause for this patch is that OpenBSD/i386 reserves 256KB
1643 stack size per thread. We were allocating a buffer of size
1644 128*130*sizeof(fftw_complex) that exceeds the stack.
1645
1646 While 128*130*sizeof(fftw_complex) = 260KiB is the worst case for
1647 normal configurations, it is a good idea to limit stack allocation
1648 just in case. Also, the generic solver might in principle generate
1649 unbounded buffers, even though it is normally disabled for n > 137.
1650
1651 So, as an added precaution, we now never stack-allocate buffers larger
1652 than 64KiB, which ought to be enough for anybody.
1653
1654 commit 3b1c71b8e61a7fbfa88589ddf418d494a672ed78
1655 Author: stevenj <stevenj@fftw.org>
1656 Date: Fri Jun 24 16:32:30 2011 -0400
1657
1658 don't imply that AVX is available on Pentium III; note that MIPS Paired Single is currently only in FFTW 3.2.x
1659 [empty commit message]
1660
1661 commit 02153f462b97b2733b47d298a3fc5cc57b45ba86
1662 Author: stevenj <stevenj@fftw.org>
1663 Date: Fri Jun 24 16:05:27 2011 -0400
1664
1665 silence annoying gfortran warnings
1666 [empty commit message]
1667
1668 commit dff007f6cc14bdd1ea710466aa3f6fb3a5408c0a
1669 Author: stevenj <stevenj@fftw.org>
1670 Date: Fri Jun 24 14:59:30 2011 -0400
1671
1672 a couple MPI Fortran 2003 fixes; changed MPI flags to not use 1<<31 since Fortran (not having unsigned integers) does not allow us to declare that constant in a portable way
1673 [empty commit message]
1674
1675 commit ff330ebfa25ed56b29ea61ea99bf293cec079dde
1676 Author: athena <athena@fftw.org>
1677 Date: Fri Jun 24 15:05:05 2011 -0400
1678
1679 Fix libtool shared version info.
1680
1681 FFTW-3.3.x should be a direct drop-in replacement for all FFTW-3.x.y
1682 versions.
1683
1684 commit 6c3c5cd3040d318a184fc0e6ee6ee4e3429ef8ce
1685 Author: stevenj <stevenj@fftw.org>
1686 Date: Fri Jun 24 14:38:47 2011 -0400
1687
1688 add MPI Fortran API and wrappers
1689 [empty commit message]
1690
1691 commit 02d3e72585a1254f2685014f5f8de5c7730b8ec5
1692 Author: athena <athena@fftw.org>
1693 Date: Fri Jun 24 14:51:12 2011 -0400
1694
1695 Do not require fig2dev on the user's machine
1696
1697 Distribute the manual's figures in PDF/PS/PNG form instead.
1698
1699 commit 5169fc22863b9b6ea7bfbaafc0ca523e82114ee1
1700 Author: athena <athena@fftw.org>
1701 Date: Fri Jun 24 11:52:44 2011 -0400
1702
1703 Remove --enable-portable-binary, --with-gcc-arch from documentation.
1704
1705 commit f6d1274e5c9cc173d07c58df0a3535c9f4767e48
1706 Author: athena <athena@fftw.org>
1707 Date: Fri Jun 24 11:48:48 2011 -0400
1708
1709 Forget about specifying nonportable CFLAGS. Let the user do it if he wants.
1710
1711 commit 74872e79034a2379c537c23a7c29d0b6f43d2437
1712 Author: athena <athena@fftw.org>
1713 Date: Fri Jun 24 11:48:25 2011 -0400
1714
1715 Add "-avx" to version string when appropriate.
1716
1717 commit 2d6800ac3b8070da86d6d825d89fea05fbd44b78
1718 Author: athena <athena@fftw.org>
1719 Date: Fri Jun 24 10:26:38 2011 -0400
1720
1721 change 3.3-alpha => 3.3-beta1
1722
1723 commit 97a4d17f30831d71b4075eec8b7f4b7c12deedb7
1724 Author: athena <athena@fftw.org>
1725 Date: Fri Jun 24 09:25:49 2011 -0400
1726
1727 Extend OUR_MALLOC16 to larger alignments
1728
1729 Make it work for 32-byte alignment and beyond, as needed by AVX.
1730 Rename --with-our-malloc16 to --with-our-malloc. Keep old --with-our-malloc16
1731 flag for compatibility.
1732
1733 commit fd31e415cd0731c428daafe791386d79ff34b8ca
1734 Author: athena <athena@fftw.org>
1735 Date: Fri Jun 24 09:19:38 2011 -0400
1736
1737 Fix typo
1738
1739 commit 4f8a370b687860b92a93c49fed128218e6fb9f9b
1740 Author: athena <athena@fftw.org>
1741 Date: Fri Jun 24 09:10:26 2011 -0400
1742
1743 One pass over the manual.
1744
1745 commit ba838fa07395a4f365eb16aa8ba1bb108f533dd5
1746 Author: athena <athena@fftw.org>
1747 Date: Fri Jun 24 08:19:03 2011 -0400
1748
1749 eliminate the WITH_ALIGNED_STACK hack
1750
1751 This is 2011 and I have no system with incorrect stack alignment.
1752
1753 commit 7e32fb649dcd2a78a3b2d216140fc218cb69c334
1754 Author: athena <athena@fftw.org>
1755 Date: Fri Jun 24 07:49:47 2011 -0400
1756
1757 enable both threaded and unthreaded wisdom in tools/fftw-wisdom
1758
1759 commit 7543b3029bce4fc595c5efc7e0d31a71b4ec5cce
1760 Author: stevenj <stevenj@fftw.org>
1761 Date: Fri Jun 24 02:40:04 2011 -0400
1762
1763 clarification
1764 [empty commit message]
1765
1766 commit 81589ce427090a8aea9f4362a9b7f9ba7e76e111
1767 Author: stevenj <stevenj@fftw.org>
1768 Date: Fri Jun 24 02:24:01 2011 -0400
1769
1770 check for error code in example
1771 [empty commit message]
1772
1773 commit 3c57716a6525c37f0f485e925c7df8f9819c66fd
1774 Author: stevenj <stevenj@fftw.org>
1775 Date: Fri Jun 24 02:22:18 2011 -0400
1776
1777 cleanup - since NATIVE_MALLOC is always malloc, delete this #define
1778 [empty commit message]
1779
1780 commit 644b3ee0d54eb80e78a35710d2b8027f3104fbe6
1781 Author: stevenj <stevenj@fftw.org>
1782 Date: Fri Jun 24 02:19:44 2011 -0400
1783
1784 document wisdom string import/export in Fortran
1785 [empty commit message]
1786
1787 commit bee8d24fa16cd40bba5612938edc915399526c03
1788 Author: stevenj <stevenj@fftw.org>
1789 Date: Fri Jun 24 02:11:40 2011 -0400
1790
1791 bug fix - NATIVE_MALLOC should always be plain malloc, even in debug_malloc mode, because it is used in the API to return things that should be deallocated with free(); correspondingly, be sure to use free() ansd not X(free) with this
1792 [empty commit message]
1793
1794 commit 119eb3d276de6b3178c5436fd0cee98a35f0aabf
1795 Author: stevenj <stevenj@fftw.org>
1796 Date: Fri Jun 24 01:35:27 2011 -0400
1797
1798 declaration style
1799 [empty commit message]
1800
1801 commit 8916c213d4b3121e65af9ee4989ed8ae0fc21db9
1802 Author: stevenj <stevenj@fftw.org>
1803 Date: Fri Jun 24 01:25:36 2011 -0400
1804
1805 document wisdom file export/import from Fortran; add export/import_to/from_filename functions for convenience
1806 [empty commit message]
1807
1808 commit 9fb007e826ee94927e9ff4a9de14c6b80ec06e69
1809 Author: stevenj <stevenj@fftw.org>
1810 Date: Thu Jun 23 19:19:43 2011 -0400
1811
1812 more fortran docs
1813 [empty commit message]
1814
1815 commit 3f0d26b4fd7e8e501fbd2f6ff24337ff0ad3c97c
1816 Author: stevenj <stevenj@fftw.org>
1817 Date: Thu Jun 23 17:50:30 2011 -0400
1818
1819 enforce 132-character line-length limit that is the default in Fortran
1820 [empty commit message]
1821
1822 commit 6e69de25872aed3a4eb13523a43bcfdf9a4f731c
1823 Author: stevenj <stevenj@fftw.org>
1824 Date: Wed Jun 22 23:27:31 2011 -0400
1825
1826 the F03 standard is ambiguous about whether types can be assigned to wider types as formal parameters with VALUE attributes, and e.g. gfortran interprets it to disallow this code
1827 [empty commit message]
1828
1829 commit a91a52952fb6d32423f351afdda8de2d04b71e38
1830 Author: athena <athena@fftw.org>
1831 Date: Thu Jun 23 18:12:10 2011 -0400
1832
1833 Add md5 hash of fftw's configuration to wisdom file
1834
1835 People were already confused by threaded vs unthreaded wisdom, and now
1836 things will be even worse because we enable/disable AVX codelets at
1837 runtime. Accept incoming wisdom only if it was produced by the same
1838 configuration (modulo MD5).
1839
1840 commit 0de6ca5c7f7720457124d7b7a3ca35153d06f761
1841 Author: athena <athena@fftw.org>
1842 Date: Thu Jun 23 09:01:27 2011 -0400
1843
1844 distribute fftw3.f03.in
1845
1846 commit 6422ed65a6cfb1704c1b428f37a6034baeba212c
1847 Author: stevenj <stevenj@fftw.org>
1848 Date: Wed Jun 22 22:02:18 2011 -0400
1849
1850 more Fortran documentation
1851 [empty commit message]
1852
1853 commit 9c1e1d48f0f97b49b62e5ee42e92673964e7d7cf
1854 Author: stevenj <stevenj@fftw.org>
1855 Date: Wed Jun 22 20:10:39 2011 -0400
1856
1857 correct comment
1858 [empty commit message]
1859
1860 commit ce8bb23e571efe5595d6d9578a45769e48bad7fe
1861 Author: athena <athena@fftw.org>
1862 Date: Wed Jun 22 20:26:18 2011 -0400
1863
1864 Use "sh FOO.sh" instead of "./FOO.sh" to avoid chmod +x.
1865
1866 commit 660905636ebbefe3338d405d4a6fb30b89e07912
1867 Author: stevenj <stevenj@fftw.org>
1868 Date: Wed Jun 22 19:19:05 2011 -0400
1869
1870 document fftw_alloc_real/complex ... should we switch to using these in the tutorial examples?
1871 [empty commit message]
1872
1873 commit ea8c9f7fedc0ca183449b70bee978a4251f552e1
1874 Author: stevenj <stevenj@fftw.org>
1875 Date: Wed Jun 22 19:07:49 2011 -0400
1876
1877 whoops, added missing file
1878 [empty commit message]
1879
1880 commit 6caf08feba78084741e749e022c8c2e523c7ab44
1881 Author: athena <athena@fftw.org>
1882 Date: Wed Jun 22 18:46:01 2011 -0400
1883
1884 Note addition of AVX.
1885
1886 commit a17b6a6a493d19c93fd3a6b8eaacef8174033cd7
1887 Author: athena <athena@fftw.org>
1888 Date: Wed Jun 22 18:43:43 2011 -0400
1889
1890 In SSE2, AVX: use FMA macros when applicable.
1891
1892 Makes it easier to play with fma4 and fma3 when it comes out.
1893
1894 commit d4dfffc05a4f9c3f7aa7c2c2ef9fa416f9257a5f
1895 Author: stevenj <stevenj@fftw.org>
1896 Date: Wed Jun 22 18:16:45 2011 -0400
1897
1898 all modern Fortran compilers can call FFTW's C interfface directly -- support this, and in particular generate a Fortran 2003 interface file from fftw3.h so that Fortran code calling FFTW can be typechecked ((addressing the source of a lot of Fortran-user problems)
1899 [empty commit message]
1900
1901 commit 10a9a86ddf3d94750c57ca8b20c0fca39cea6541
1902 Author: athena <athena@fftw.org>
1903 Date: Wed Jun 22 13:10:02 2011 -0400
1904
1905 some cleanup of SSE2 macros
1906
1907 commit f301a0adb53b56a2e4fd74ef61cf29d66b745286
1908 Author: athena <athena@fftw.org>
1909 Date: Wed Jun 22 07:38:18 2011 -0400
1910
1911 don't use -xHost on ICC
1912
1913 -xHost with ICC is problematic. On icc-12.0.0, "-mavx -xHost"
1914 overrides -mavx with -xHost, generating SSE2 code instead of AVX code.
1915 ICC does not seem to support -mtune=host or equivalent non-ABI
1916 changing flag.
1917
1918 commit 9e7758ff431947863cec44354413c27067f0fda8
1919 Author: athena <athena@fftw.org>
1920 Date: Tue Jun 21 20:35:36 2011 -0400
1921
1922 Complete AVX implementation for split codelets
1923
1924 commit a547e3d5dba38863f6e2c9acb45ffb94351fe3a5
1925 Author: stevenj <stevenj@fftw.org>
1926 Date: Tue Jun 21 19:37:14 2011 -0400
1927
1928 whoops, missing altivec conf patches
1929 [empty commit message]
1930
1931 commit 9dc6263714fa685f384fb61ed08d398b38b26329
1932 Author: stevenj <stevenj@fftw.org>
1933 Date: Tue Jun 21 19:12:45 2011 -0400
1934
1935 some BSD ar versions (e.g. on MacOS X) give an error if there are no object files, so we cannot build empty libraries
1936 [empty commit message]
1937
1938 commit 32dcba1b5d68cf9e33ec3f81e0405f2f909389dd
1939 Author: stevenj <stevenj@fftw.org>
1940 Date: Tue Jun 21 19:12:12 2011 -0400
1941
1942 re-insertion of Altivec code
1943 [empty commit message]
1944
1945 commit 931617ee1ba9f9257117ad8e1df38dfe055f9cee
1946 Author: athena <athena@fftw.org>
1947 Date: Tue Jun 21 16:26:09 2011 -0400
1948
1949 Implement faster AVX loads/stores.
1950
1951 commit f76d6c1d278b34b2ccac7cff57522cab7ec90864
1952 Author: athena <athena@fftw.org>
1953 Date: Tue Jun 21 16:03:24 2011 -0400
1954
1955 Initial AVX256/single implementation
1956
1957 This should be correct but slow. I need to figure out how to implement
1958 noncontiguous loads/stores efficiently.
1959
1960 commit 164cc4c8fa9bfdf2b02d9cb9364c8f3f36e420e7
1961 Author: athena <athena@fftw.org>
1962 Date: Tue Jun 21 14:13:57 2011 -0400
1963
1964 fix AVX alignment
1965
1966 commit c277833627164aeb649d187ba0409a3fdca9166d
1967 Author: athena <athena@fftw.org>
1968 Date: Tue Jun 21 14:07:28 2011 -0400
1969
1970 rename avx256d -> avx
1971
1972 AVX will work in both double and single precision, like SSE2.
1973
1974 commit f97162a135eee43630825fccaa29b735ee284fff
1975 Author: athena <athena@fftw.org>
1976 Date: Tue Jun 21 13:52:20 2011 -0400
1977
1978 remove CODELET_OPTIM
1979
1980 In the old 32-bit gcc-3.x days we used to play games with gcc to force
1981 it to produce decent code. Now gcc has gotten smarter and it produces
1982 indecent code no matter what we do, so it is safe to remove these hacks.
1983
1984 commit 57baa1a6761a441c6aa47b0b63503bfd5270d9a9
1985 Author: athena <athena@fftw.org>
1986 Date: Tue Jun 21 09:57:31 2011 -0400
1987
1988 work around gcc/icc quirks
1989
1990 commit deeea8205c4cf4511b41a8a7cd85195b1e4eb7f6
1991 Author: athena <athena@fftw.org>
1992 Date: Tue Jun 21 09:56:07 2011 -0400
1993
1994 Add remarks in places where we work around gcc quirks
1995
1996 commit b357b3a90ba2060915fa03d888f0b2306be1f17a
1997 Author: stevenj <stevenj@fftw.org>
1998 Date: Mon Jun 20 21:17:59 2011 -0400
1999
2000 remove the libbench directory (which we have kept lingering in the repository for years due to CVS's inability to remove directories)
2001 [empty commit message]
2002
2003 commit 1ff7bbcc3b0dcfa3bd8f16ec1c672e5671cc0f99
2004 Author: stevenj <stevenj@fftw.org>
2005 Date: Mon Jun 20 21:17:14 2011 -0400
2006
2007 update URLs
2008 [empty commit message]
2009
2010 commit ddcac323fe11f273f8e983836edaec002237a3ca
2011 Author: stevenj <stevenj@fftw.org>
2012 Date: Mon Jun 20 20:53:31 2011 -0400
2013
2014 whoops, forgot to check in alignment change
2015 [empty commit message]
2016
2017 commit 5eac5571d61bf5515946dab5750f5db82632cd54
2018 Author: athena <athena@fftw.org>
2019 Date: Mon Jun 20 20:22:23 2011 -0400
2020
2021 "test X = Y" requires spaces around "="
2022
2023 commit 60d4535475d937207b8fd0c6ebef966d95601154
2024 Author: stevenj <stevenj@fftw.org>
2025 Date: Mon Jun 20 19:18:52 2011 -0400
2026
2027 indenting
2028 [empty commit message]
2029
2030 commit 22cdbb3e3f35d6c289f4c250fbeba696090c6cc9
2031 Author: stevenj <stevenj@fftw.org>
2032 Date: Mon Jun 20 18:57:10 2011 -0400
2033
2034 merge back in SSE support, now combined with SSE2; --enable-sse2 now works in both single and double precision, and simd-sse2.h contains both the double- and single-precision code (which overlap a lot); in single precision it is still compiled for SSE-only (SSE2 is only required for double)
2035 [empty commit message]
2036
2037 commit 2d767316e1ba0cf9fd4f5eb3134c6341b2d87a29
2038 Author: athena <athena@fftw.org>
2039 Date: Mon Jun 20 16:02:07 2011 -0400
2040
2041 Implement AVX autodetection (gcc-only so far)
2042
2043 commit 1ed535ea5c0ae847edb64b1696c7c40ea6022fbd
2044 Author: athena <athena@fftw.org>
2045 Date: Mon Jun 20 14:25:54 2011 -0400
2046
2047 Add VZEROUPPER at the end of AVX codelets
2048
2049 If the Intel Optimization Manual is to be believed, we need to wave a
2050 dead chicken before transitioning from AVX code to SSE code. I am
2051 supposed to believe that there is a transition penalty for doing so,
2052 unless one uses a magic VZEROUPPER instruction that apparently has
2053 zero cost. Whatever.
2054
2055 commit 1b26ff69ef0065d12689cd77ae65a7a049a37150
2056 Author: athena <athena@fftw.org>
2057 Date: Mon Jun 20 10:21:25 2011 -0400
2058
2059 Move RDFT to new simd scheme
2060
2061 commit 02b63c9ba5acf94a24d0b948436026df702681a9
2062 Author: athena <athena@fftw.org>
2063 Date: Mon Jun 20 09:23:38 2011 -0400
2064
2065 New SIMD build system
2066
2067 We now support multiple SIMD extensions in the same binary, e.g.
2068 --enable-sse2 --enable-avx. This patch adds the necessary
2069 infrastructure for SSE2/AVX and complex DFT. Later patches will add
2070 RDFT and SSE/ALTIVEC/etc.
2071
2072 commit 3409ea120286bc180d314be65f949ecb62f954cb
2073 Author: stevenj <stevenj@fftw.org>
2074 Date: Sun Jun 19 12:29:27 2011 -0400
2075
2076 italicize Latin quote
2077 [empty commit message]
2078
2079 commit 760f9aec6ca8c45219a357605b8216fef71ff04f
2080 Author: stevenj <stevenj@fftw.org>
2081 Date: Sun Jun 19 12:26:34 2011 -0400
2082
2083 work around incredibly annoying makeinfo bug -- for HTML output, in any paragraph ending with an @index command, two blank lines are needed to create a paragraph break ... our HTML output has apparently been screwed up for years
2084 [empty commit message]
2085
2086 commit f7a34a1e53ec9e1b7c263d6c8a4cf8020c1de89e
2087 Author: stevenj <stevenj@fftw.org>
2088 Date: Sun Jun 19 12:01:39 2011 -0400
2089
2090 conjugate-pair algorithm turns out not to be due to djb, but it was pointed out to us by djb
2091 [empty commit message]
2092
2093 commit 34e740878c4a449ef31a6df2f538a67387504b57
2094 Author: stevenj <stevenj@fftw.org>
2095 Date: Sun Jun 19 11:59:21 2011 -0400
2096
2097 new-array execute functions are *not* the same for MPI, since the problems are different
2098 [empty commit message]
2099
2100 commit a0b07a03fd52e6192dd0023054cc6359dd651554
2101 Author: stevenj <stevenj@fftw.org>
2102 Date: Sun Jun 19 11:57:52 2011 -0400
2103
2104 tweaks to MPI manual
2105 [empty commit message]
2106
2107 commit 9fa05d4bcd100d5ed0ade53a1c28f00a01cd89fc
2108 Author: stevenj <stevenj@fftw.org>
2109 Date: Sun Jun 19 00:47:23 2011 -0400
2110
2111 only call MPI_Init_thread for MPI version >= 2
2112 [empty commit message]
2113
2114 commit e2f3cf7c8965653eb94a03c25ab7ce8f4f09ed8e
2115 Author: stevenj <stevenj@fftw.org>
2116 Date: Sun Jun 19 00:35:44 2011 -0400
2117
2118 document quad precision in Fortran
2119 [empty commit message]
2120
2121 commit f5dd231509aa0a32aa1d0fa1024adf8ebba30aa9
2122 Author: stevenj <stevenj@fftw.org>
2123 Date: Sun Jun 19 00:16:10 2011 -0400
2124
2125 use -lquadmath for quad-precision library in pkgconfig file
2126 [empty commit message]
2127
2128 commit d0775d11f358dc46f0f2925be4830b3127564ab4
2129 Author: stevenj <stevenj@fftw.org>
2130 Date: Sun Jun 19 00:10:33 2011 -0400
2131
2132 document quad precision
2133 [empty commit message]
2134
2135 commit a6142f7e745906e6b392369e5ffc5bf83f57d573
2136 Author: stevenj <stevenj@fftw.org>
2137 Date: Sat Jun 18 21:26:24 2011 -0400
2138
2139 there is currently no standard quad-precision type in MPI, so don't allow MPI support to be compiled with --enable-quad-precision
2140 [empty commit message]
2141
2142 commit 34067999298aa71f65b2ac33386693f03bebd725
2143 Author: stevenj <stevenj@fftw.org>
2144 Date: Sat Jun 18 21:25:51 2011 -0400
2145
2146 make quad-precision library libfftwq
2147 [empty commit message]
2148
2149 commit 28db5c98edf2ce5508cc8a91118b41ede6476183
2150 Author: stevenj <stevenj@fftw.org>
2151 Date: Sat Jun 18 21:19:50 2011 -0400
2152
2153 use --estimate in check script with --enable-random-estimator
2154 [empty commit message]
2155
2156 commit e16e119568222dd95a717242b191a4adf72ec2de
2157 Author: stevenj <stevenj@fftw.org>
2158 Date: Sat Jun 18 20:36:51 2011 -0400
2159
2160 bug fix - correct crashing interaction between threads and debug-malloc
2161 [empty commit message]
2162
2163 commit 25a1b5252eb203919634a13d0c5deb8f8ddad940
2164 Author: stevenj <stevenj@fftw.org>
2165 Date: Sat Jun 18 18:41:48 2011 -0400
2166
2167 whoops, typo
2168 [empty commit message]
2169
2170 commit 2d8b12a9624e30de0054d035d35474c57d115f49
2171 Author: stevenj <stevenj@fftw.org>
2172 Date: Sat Jun 18 18:35:14 2011 -0400
2173
2174 clarification of when fftw_cost may return 0
2175 [empty commit message]
2176
2177 commit 9d7a9545df20eb5b0c4ea6535161108225abce21
2178 Author: stevenj <stevenj@fftw.org>
2179 Date: Sat Jun 18 18:31:26 2011 -0400
2180
2181 corrected manual and test program for proper interaction of MPI and threads
2182 [empty commit message]
2183
2184 commit a950b94a168ed22d850db5394fd633eee3309ebf
2185 Author: stevenj <stevenj@fftw.org>
2186 Date: Sat Jun 18 17:13:52 2011 -0400
2187
2188 need --mpi restriction in mpi+threads check
2189 [empty commit message]
2190
2191 commit 7a8106a510a8147ce2f8f986a0ea6f1fc935b419
2192 Author: stevenj <stevenj@fftw.org>
2193 Date: Sat Jun 18 12:09:04 2011 -0400
2194
2195 split fftw3.texi into multiple files for ease of editing
2196 [empty commit message]
2197
2198 commit cb26916dace1d5d264f7561b760a89d5ee972d3b
2199 Author: stevenj <stevenj@fftw.org>
2200 Date: Fri Jun 17 17:26:50 2011 -0400
2201
2202 merge recent Cell deletion with MPI branch
2203 [empty commit message]
2204
2205 commit 1595e9847b428d6b439d7f908d3d6f06b6746d1f
2206 Author: stevenj <stevenj@fftw.org>
2207 Date: Fri Jun 17 01:52:59 2011 -0400
2208
2209 whoops, incorrect assertion
2210 [empty commit message]
2211
2212 commit 158a22057fd700263ff39e20dafbf506982bad25
2213 Author: stevenj <stevenj@fftw.org>
2214 Date: Fri Jun 17 01:52:51 2011 -0400
2215
2216 comment fix
2217 [empty commit message]
2218
2219 commit e0d118305f05ad4f429fda2879547b9285c362ea
2220 Author: stevenj <stevenj@fftw.org>
2221 Date: Thu Jun 16 23:30:27 2011 -0400
2222
2223 check if pln creation failed (e.g. for split input) bbefore calling setup_gather_scatter, to prevent crashes
2224 [empty commit message]
2225
2226 commit b2254795d8d3f65d1205053f39d5e837bec6e4d0
2227 Author: stevenj <stevenj@fftw.org>
2228 Date: Thu Jun 16 23:26:48 2011 -0400
2229
2230 bug fix -- transpose-recurse is only applicable if subtransposes fit in the same space (unless I change the allocation routine, but this would seem to require looking at all possible recursive invocations of transpose-recurse)
2231 [empty commit message]
2232
2233 commit 25faa34d32d8b7577ad1107769f3e87e7c87cef0
2234 Author: stevenj <stevenj@fftw.org>
2235 Date: Mon Apr 11 17:58:03 2011 -0400
2236
2237 yikes, any_true check on subplan creation should be in comm, not comm2, so that all processes know if failure occurred
2238 [empty commit message]
2239
2240 commit c0b90d9331fbcc167f07c04a3ce1298cc8d88593
2241 Author: stevenj <stevenj@fftw.org>
2242 Date: Mon Apr 11 17:00:46 2011 -0400
2243
2244 add wisdom_ok_hook to enforce wisdom synchronization on MPI problems, apparently fixing a longstanding deadlock/crash bug
2245 [empty commit message]
2246
2247 commit 651a2f59b8fdeecf79246c3f65b776be567b2ddb
2248 Author: stevenj <stevenj@fftw.org>
2249 Date: Mon Apr 11 15:10:22 2011 -0400
2250
2251 add a check (in DEBUG mode only) that all processes produce the same hash of MPI problems; don't include alignment in MPI problem hash because it may differ between processes for unaligned malloc
2252 [empty commit message]
2253
2254 commit 23bb1cb665dc571a773eb5125371b1079e0a4243
2255 Author: stevenj <stevenj@fftw.org>
2256 Date: Fri Apr 8 18:46:54 2011 -0400
2257
2258 use cost_hook in random_estimate
2259 [empty commit message]
2260
2261 commit 21229fc46c88d7ca15c9ba06c1f731d01eecd77a
2262 Author: stevenj <stevenj@fftw.org>
2263 Date: Sun Mar 6 23:33:53 2011 -0500
2264
2265 added mpi new-array execute functions; thanks to Guo Luo for the bug report
2266 [empty commit message]
2267
2268 commit 7335ef11cd5e2e9962dbc41c42e5c14e156e6f82
2269 Author: stevenj <stevenj@fftw.org>
2270 Date: Wed Feb 9 21:29:17 2011 -0500
2271
2272 MPI may not support tags > 2^15-1 (e.g. Cray MPI requires tags < 2^24); thanks to Jonathan Bentz for the bug report.
2273 [empty commit message]
2274
2275 commit 155887d9e173f2a72cb63cf5b7b36ff49bf52356
2276 Author: stevenj <stevenj@fftw.org>
2277 Date: Wed Feb 2 12:21:30 2011 -0500
2278
2279 fix merge conflicts
2280 [empty commit message]
2281
2282 commit 56c3bf01ecfcc23f2d76efed77dac234a59b9234
2283 Author: stevenj <stevenj@fftw.org>
2284 Date: Sat Nov 15 20:33:33 2008 -0500
2285
2286 version bump for 3.3alpha1
2287 [empty commit message]
2288
2289 commit 136cf63d2cdcb5889a38163c4ccf9b1198e47e04
2290 Author: stevenj <stevenj@fftw.org>
2291 Date: Sun Oct 26 22:47:07 2008 -0400
2292
2293 re-added mpi/Makefile
2294 [empty commit message]
2295
2296 commit 3bfab1285c5390285e734dc910b728a328d9f7fd
2297 Author: stevenj <stevenj@fftw.org>
2298 Date: Sat Oct 25 17:14:42 2008 -0400
2299
2300 re-add MPI to dist
2301 [empty commit message]
2302
2303 commit b2470178928b190c6b50d3bef353925061db3d08
2304 Author: athena <athena@fftw.org>
2305 Date: Sat Jun 18 08:50:13 2011 -0400
2306
2307 remove obsolete Cell code
2308
2309 commit 38bfc62ffa5051da294faa46a8ab29fc7225a97b
2310 Author: stevenj <stevenj@fftw.org>
2311 Date: Fri Jun 17 23:31:33 2011 -0400
2312
2313 bug fix in accuracy test, which prevented us from consiistently determining accuracy in > double precision
2314 [empty commit message]
2315
2316 commit 7356645134bcb66286da0c00ad3d993e90e425af
2317 Author: athena <athena@fftw.org>
2318 Date: Fri Jun 17 20:05:13 2011 -0400
2319
2320 do not check for gcc version before checking for gcc
2321
2322 commit d94f234b00d3ced13ccfc3551e0a20cd66645922
2323 Author: stevenj <stevenj@fftw.org>
2324 Date: Fri Jun 17 18:56:37 2011 -0400
2325
2326 require gcc 4.6.0 or later for --enable-quad-precision, to match fftw3.h header file; no need to mark this as EXPERIMENTAL (make check passes, and support in gcc 4.6 seems reasonably complete)
2327 [empty commit message]
2328
2329 commit 28ebf4da08a1fc607b0ea41ed24ea3707a256548
2330 Author: stevenj <stevenj@fftw.org>
2331 Date: Fri Jun 17 18:51:41 2011 -0400
2332
2333 need ugly __attribute__ to use __float128 with _Complex, ugh
2334 [empty commit message]
2335
2336 commit b00cf20a5c45b953d2e6d954570543727b72cf9a
2337 Author: stevenj <stevenj@fftw.org>
2338 Date: Fri Jun 17 18:23:05 2011 -0400
2339
2340 --verify tolerance in quad precision changed to 1e-29
2341 [empty commit message]
2342
2343 commit 015e365952344e8395a0516c9fe0e3c736550b9e
2344 Author: stevenj <stevenj@fftw.org>
2345 Date: Fri Jun 17 18:22:38 2011 -0400
2346
2347 quad-precision F77 api should use "qfftw" prefix
2348 [empty commit message]
2349
2350 commit af4a1c37d8eb5e14678449741fd185cb65c4c10b
2351 Author: stevenj <stevenj@fftw.org>
2352 Date: Fri Jun 17 18:22:27 2011 -0400
2353
2354 rm extraneous space from fftw3.h
2355 [empty commit message]
2356
2357 commit 654e73b0cfe2079498eadaf15b19361f71ef18ab
2358 Author: stevenj <stevenj@fftw.org>
2359 Date: Fri Jun 17 18:05:10 2011 -0400
2360
2361 use cosq etcetera with libquadmath in libbench2, so that --verify correctly gives ~33 decimal places in shift test
2362 [empty commit message]
2363
2364 commit 00bac1ae1e651e5e85c507294c3e215dde1bb85b
2365 Author: stevenj <stevenj@fftw.org>
2366 Date: Fri Jun 17 17:52:51 2011 -0400
2367
2368 libquadmath ships with gcc 4.6.0, so we should require this library for sinq/cosq with --enable-quad-precision; also, include the __float128 FFTW functions in the header file for gcc >= 4.6 on i86/x86_64/ia64
2369 [empty commit message]
2370
2371 commit a17a0720767ca177a799d685a5ac7b63331dd559
2372 Author: stevenj <stevenj@fftw.org>
2373 Date: Fri Jun 17 16:54:01 2011 -0400
2374
2375 typo in manual for fftw_cost
2376 [empty commit message]
2377
2378 commit 4aab5d51dbc8b798c25f857cfa07ce7f25f9360d
2379 Author: stevenj <stevenj@fftw.org>
2380 Date: Fri Jun 17 16:48:24 2011 -0400
2381
2382 fix fftw_cost function: pcost needs to be saved in mkapiplan, since the plan is re-created from wisdom
2383 [empty commit message]
2384
2385 commit c031d561c14a97b9a04197ba07c19cbf769648f9
2386 Author: athena <athena@fftw.org>
2387 Date: Fri Jun 17 16:42:25 2011 -0400
2388
2389 removed support for the Cell Broadband Engine
2390
2391 commit 34f5ad2eaae86075973d26ee5adcc7ceb04f4924
2392 Author: athena <athena@fftw.org>
2393 Date: Tue May 24 06:51:07 2011 -0400
2394
2395 Undo previous change; the typo was not a typo after all.
2396
2397 commit b9b72d1a42b162f74dfe9dc073ce5f5fc873113b
2398 Author: athena <athena@fftw.org>
2399 Date: Mon May 23 05:08:05 2011 -0400
2400
2401 Fix typo in manual
2402
2403 commit f41fb798be412eff5c26c539e07385dbbc6ac56a
2404 Author: athena <athena@fftw.org>
2405 Date: Sat May 21 17:37:50 2011 -0400
2406
2407 clarify intent about canonicalization of tensor in tensor_compress_contiguous()
2408
2409 commit 438c3b46f428023ce986422a697c9d33687ae9c1
2410 Author: athena <athena@fftw.org>
2411 Date: Sat May 21 17:30:31 2011 -0400
2412
2413 avoid useless canonicalization in tensor_compress_contiguous()
2414
2415 commit 8fbf77ca71756bd32bb5c71e709ec717e388451e
2416 Author: athena <athena@fftw.org>
2417 Date: Sat May 21 17:24:57 2011 -0400
2418
2419 Fix tensor_compress_contiguous
2420
2421 tensor_compress_contiguous() was supposed to sort dimensions by
2422 descending istride, and then compress adjacent dimensions. This
2423 property was lost once we changed the canonical order of strides to be
2424 sorted by descending min{istride,ostride}.
2425
2426 Change tensor_compress_contiguous() to sort by descending istride
2427 again, which is necessary for its correctness, and then canonicalize
2428 at the end.
2429
2430 commit 5ad70bf5c1bdeadefcaac86cc3e9a76b31f75724
2431 Author: athena <athena@fftw.org>
2432 Date: Sun May 8 18:47:26 2011 -0400
2433
2434 Don't distribute obsolete .depend
2435
2436 commit c48d28bc5b7fb54ea8e037579cb0af3fae339543
2437 Author: athena <athena@fftw.org>
2438 Date: Sun May 8 18:05:36 2011 -0400
2439
2440 Use ocamlbuild for building genfft
2441
2442 Remove the old Makefile cruft to support ocaml, and use ocamlbuild
2443 instead.
2444
2445 commit d183b35663d030b1ad789795fa441941961472c0
2446 Author: athena <athena@fftw.org>
2447 Date: Sun May 8 18:03:07 2011 -0400
2448
2449 Do not use __float128 unless BENCHFFT_QUAD is defined
2450
2451 Otherwise, compilation fails on compilers that do not support
2452 __float128.
2453
2454 commit 833ec738fe3c3234382a3fc160c8fe54060dc860
2455 Author: stevenj <stevenj@fftw.org>
2456 Date: Fri Apr 8 13:15:54 2011 -0400
2457
2458 fix configure --help string for --disable-alloca (since default is enabled)
2459 [empty commit message]
2460
2461 commit 68538e1ffa84d206cae95558c636d9fa490888bd
2462 Author: stevenj <stevenj@fftw.org>
2463 Date: Fri Apr 8 13:09:56 2011 -0400
2464
2465 add "random estimator" for debugging purposes; note that this is best used with ESTIMATE_PATIENT mode
2466 [empty commit message]
2467
2468 commit 56d274a97c1868b43a2294bab6a4d6d245849608
2469 Author: stevenj <stevenj@fftw.org>
2470 Date: Tue Apr 5 14:47:56 2011 -0400
2471
2472 add AC_CHECK_DECLS for srand48; thanks to Ralf Wildenhues for the bug report
2473 [empty commit message]
2474
2475 commit 50465ef2118b72f9f868e9ec53ee7e53bb050259
2476 Author: stevenj <stevenj@fftw.org>
2477 Date: Sat Feb 5 17:00:40 2011 -0500
2478
2479 experimental support for gcc's __float128 quad-precision type
2480 [empty commit message]
2481
2482 commit 2471f34097daef93ae593743403cf40820a0673a
2483 Author: athena <athena@fftw.org>
2484 Date: Sun Oct 24 14:33:59 2010 -0400
2485
2486 guarantee that "timelimit < 0" means "no timeout"
2487
2488 "timelimit < 0" was always meant to be equivalent to
2489 "timelimit = HUGENUM", but this was not true in all cases,
2490 causing some obscure wisdom behavior.
2491
2492 Thanks William Andrew Burnson for the bug report.
2493
2494 commit c16bc87b770bb0757dead223c13dc1966e3c2e3e
2495 Author: athena <athena@fftw.org>
2496 Date: Sun Oct 24 14:32:20 2010 -0400
2497
2498 compile with --enable-fma and SSE, SSE2
2499
2500 Allow compilation with --enable-fma and --enable-sse, --enable-sse2.
2501 This is a bad idea performance-wise, but people will try anyway.
2502
2503 commit eb34fdf7b5233e8f8a5b44c7f275e0c950ead3e7
2504 Author: athena <athena@fftw.org>
2505 Date: Sun Jul 11 13:34:06 2010 -0400
2506
2507 Make threads.c compiler with c++
2508
2509 commit a80ce9ee8210615480efcaf03989278540ad900e
2510 Author: athena <athena@fftw.org>
2511 Date: Sun Jul 11 10:05:05 2010 -0400
2512
2513 Attempt at clarifying the advanced interface doc.
2514
2515 commit 537372cf3446b014e53ad2b2bfd636748abfe44f
2516 Author: athena <athena@fftw.org>
2517 Date: Sun Jul 11 07:37:27 2010 -0400
2518
2519 rename rfftwnd html picture
2520
2521 It turns out that texinfo with pdf output reads .png
2522 files in preference to .pdf files (when did this change?).
2523 I renamed the .png figure to avoid producing an ugly pdf file.
2524
2525 commit 7be5dbd77b2c719b804b53731ffc9e27100b48f6
2526 Author: stevenj <stevenj@fftw.org>
2527 Date: Tue Mar 30 19:43:22 2010 -0400
2528
2529 added fftw_cost function; this is the second time people have asked for this, and there is a reasonable use for it in comparing e.g. oout-of-place vs. in-place plans
2530 [empty commit message]
2531
2532 commit 101fc17a6dbc1feb1e5cc7625a251068fac7c202
2533 Author: stevenj <stevenj@fftw.org>
2534 Date: Tue Mar 2 18:55:49 2010 -0500
2535
2536 documented that --enable-debug-malloc causes fftw_execute to be thread-unsafe (thanks to Alexis Rohou for the problem report)
2537 [empty commit message]
2538
2539 commit e9b894f0a2b7d65d559d8fded2d7298bdfc90694
2540 Author: athena <athena@fftw.org>
2541 Date: Fri Jan 22 19:42:08 2010 -0500
2542
2543 Added FAQ about how to transpose matrices using FFTW.
2544 [empty commit message]
2545
2546 commit 18462a4c21b99482fcb9b2dc7338b83f8bbd790b
2547 Author: stevenj <stevenj@fftw.org>
2548 Date: Thu Jan 7 20:16:57 2010 -0500
2549
2550 catch FMS (instead of generating FMA(_,_,NEG(_)) with h -generic-arith option
2551 [empty commit message]
2552
2553 commit 90015026798cd3bad02d8c4144f527dfdc5f1ca7
2554 Author: athena <athena@fftw.org>
2555 Date: Fri Dec 11 07:01:26 2009 -0500
2556
2557 note future wisdom enhancements.
2558 [empty commit message]
2559
2560 commit 03747c3de44cda09224d08e8d580483cc23b6687
2561 Author: athena <athena@fftw.org>
2562 Date: Mon Oct 19 20:21:05 2009 -0400
2563
2564 Use SIMD flags when checking for xmmintrin.h
2565
2566 This prevents an obnoxious warning from configure.
2567
2568 commit 9211b77226bd67a674d5be4b26843b466a24d377
2569 Author: athena <athena@fftw.org>
2570 Date: Sat Aug 29 20:47:56 2009 -0400
2571
2572 new bug
2573 [empty commit message]
2574
2575 commit 4d7817c4b3f6476892515b47aca61d2830ba2e5c
2576 Author: stevenj <stevenj@fftw.org>
2577 Date: Sun Jul 26 00:40:11 2009 -0400
2578
2579 typo (s/man1/many)
2580 [empty commit message]
2581
2582 commit 4de43b59f0ef8a445810e2b96e746d95a63b39b1
2583 Author: stevenj <stevenj@fftw.org>
2584 Date: Tue Jul 14 14:19:08 2009 -0400
2585
2586 BUILD-MINGW32 script, updated Windows README
2587 [empty commit message]
2588
2589 commit fe7ce32f22a1cfe7049d095ecbea5024915e93ac
2590 Author: fftw <fftw@fftw.org>
2591 Date: Mon Jul 13 09:40:38 2009 -0400
2592
2593 cleanup BUILD-MINGW64.sh
2594
2595 commit 18ddd3f4d23697d8f6dcbf9c122ca281ed17bdde
2596 Author: athena <athena@fftw.org>
2597 Date: Sun Jul 12 06:34:46 2009 -0400
2598
2599 Update NEWS, version number for 3.2.2 release.
2600
2601 commit 54f4ad016522892f54c2955ecaa5dc06dbff260a
2602 Author: athena <athena@fftw.org>
2603 Date: Sat Jul 11 22:28:38 2009 -0400
2604
2605 Reintroduce the pruning heuristic in ESTIMATE mode for r2r problems.
2606
2607 Somehow, we lost this feature between fftw-3.1.3 and fftw-3.2.
2608
2609 commit 18e2d0a785627f6360e756d1cd93c78a8f7b6ba3
2610 Author: athena <athena@fftw.org>
2611 Date: Thu Jun 25 07:39:04 2009 -0400
2612
2613 don't use pshared=1 in sem_init
2614
2615 pshared is really not necessary, and it is not supported on
2616 GNU/kFreeBSD. Thanks Petr Salinger for the bug report.
2617
2618 commit e58f95716b84021e2175673ccbbd4fe1bc180ad3
2619 Author: fftw <fftw@fftw.org>
2620 Date: Thu Jun 11 19:35:40 2009 -0400
2621
2622 Add mingw64 build file so that we can track it.
2623
2624 commit 03c7f0e0ade24de0e4d08bc6899f78db917ffaca
2625 Author: fftw <fftw@fftw.org>
2626 Date: Wed Jun 10 12:10:58 2009 -0400
2627
2628 note 3.2.2 NEWS
2629
2630 commit ddd2281898dca1a30c48cff89c42c2d9c631faa3
2631 Author: fftw <fftw@fftw.org>
2632 Date: Wed Jun 10 12:04:54 2009 -0400
2633
2634 add --disable-alloca to configure
2635
2636 It looks like alloca() is broken on mingw64, and thus
2637 we need to disable it explicitly.
2638
2639 commit 902651afe12f9de0efb131bffa42db8189516595
2640 Author: athena <athena@fftw.org>
2641 Date: Sun Apr 26 16:33:10 2009 -0400
2642
2643 Note in FAQ that --enable-k7 has been discontinued.
2644
2645 commit 0d50e05674406773adea157318c85b8f9c94d9c0
2646 Author: athena <athena@fftw.org>
2647 Date: Tue Mar 24 09:16:18 2009 -0400
2648
2649 clarified small confusion in fftw_cleanup documentation
2650
2651 commit bea8d6909782b15db9d6a591c8344e8179444746
2652 Author: stevenj <stevenj@fftw.org>
2653 Date: Thu Mar 19 13:18:06 2009 -0400
2654
2655 fix documentation of dfftw_init_threads to indicate thaat it takes an argument (since the C version returns a value); thanks t Hans Johnnston for the bug report
2656 [empty commit message]
2657
2658 commit d6eaf145d2cc51db18fd69b49ef24cf628313c01
2659 Author: fftw <fftw@fftw.org>
2660 Date: Thu Mar 12 13:12:13 2009 -0400
2661
2662 if possible, use a 128-bit type for copy
2663
2664 commit b1d732a8e58c303b9f3be4feb082f5b5ac27628c
2665 Author: fftw <fftw@fftw.org>
2666 Date: Tue Mar 10 12:49:51 2009 -0400
2667
2668 add size-128 simd codelets
2669
2670 It's about time
2671
2672 commit d1f4ac081fe3fa267db692b6da4da3b2023e2e8a
2673 Author: athena <athena@fftw.org>
2674 Date: Mon Mar 9 20:29:16 2009 -0400
2675
2676 copy two floats as a double when possible
2677
2678 Resurrect the old hack of copying two floats as a double,
2679 which makes some difference in these days of 64 bit boxes.
2680
2681 commit aa6865bac3cfb4050d6f662ddf744c86c8324393
2682 Author: athena <athena@fftw.org>
2683 Date: Sun Mar 8 18:08:04 2009 -0400
2684
2685 fixed (harmless) confusion of strides
2686
2687 RS and VS were swapped in dftw-direct.c. This is a bug, but
2688 it is harmless unless one uses fixed-stride codelets, which we
2689 do not.
2690
2691 commit f34f1f3fee5d0bd112c8e55c9292d47bd643552f
2692 Author: athena <athena@fftw.org>
2693 Date: Sun Mar 8 10:29:49 2009 -0400
2694
2695 oops, I checked in debug code accidentally.
2696
2697 commit d5a07965857012694d310ac28800d47741abccfd
2698 Author: athena <athena@fftw.org>
2699 Date: Sat Feb 14 19:01:00 2009 -0500
2700
2701 Change TLO email address since Magdalen is no longer there.
2702 [empty commit message]
2703
2704 commit 8418ed8d856c8c50e6463828e015c9d80be1285d
2705 Author: stevenj <stevenj@fftw.org>
2706 Date: Sat Feb 14 18:18:45 2009 -0500
2707
2708 quote arguments to bench in test script on the off-chance that '*' would be expanded by the shell into a valid filename, and also to avoid shell confusion on Cygwin that "//" begins the name of a Windows network mountpoint
2709 [empty commit message]
2710
2711 commit 55f747d248139ddffad00ede4d649fc6eb612839
2712 Author: athena <athena@fftw.org>
2713 Date: Sun Mar 8 10:02:59 2009 -0400
2714
2715 stricter conditions for Cooley-Tukey being ugly
2716
2717 It turns out that m=2 in the leaf of Cooley-Tukey may be
2718 advantageous in certain cases, eg. i512v512 on AMD Shanghai:
2719
2720 (dft-buffered-512-x128/512-6
2721 (dft-ct-dit/4
2722 (dftw-direct-4/24-x128 "t2fv_4")
2723 (dft-vrank>=1-x4/1
2724 (dft-ct-dit/64
2725 (dftw-direct-64/504-x128 "t2fv_64")
2726 (dft-vrank>=1-x64/1
2727 (dft-direct-2-x128 "n2fv_2")))))
2728 (dft-r2hc-1
2729 (rdft-rank0-tiled/2-x128-x512))
2730 (dft-nop))
2731
2732 Presumably this works around the 2 way associativity of the L1 cache.
2733
2734 commit b2acc4c668acebf2ded61cc3a939606bbc73a3e0
2735 Author: stevenj <stevenj@fftw.org>
2736 Date: Mon Feb 9 19:46:00 2009 -0500
2737
2738 disable Windows QueryPerformanceCounter code, since it requires us to pull in windows.h in ifftw.h and causes namespace conflicts; gettimeofday seems to work well enough and has had few complaints
2739 [empty commit message]
2740
2741 commit 1b3884da38a34cbc1c8f33f78394eeca588f0786
2742 Author: stevenj <stevenj@fftw.org>
2743 Date: Wed Feb 4 22:55:54 2009 -0500
2744
2745 version bump for 3.2.1, updated NEWS
2746 [empty commit message]
2747
2748 commit e12e5cb04667aa089cf606fb163ce788247d1c2b
2749 Author: stevenj <stevenj@fftw.org>
2750 Date: Wed Feb 4 22:27:28 2009 -0500
2751
2752 recommend that users avoid fftw_execute in Fortran, instead using dfftw_execute_dft and friends so that the compiler knows that the input/output arrays are used
2753 [empty commit message]
2754
2755 commit db43aa9ae291dd66fc542c13afc2dd577750ef75
2756 Author: stevenj <stevenj@fftw.org>
2757 Date: Wed Jan 21 16:02:08 2009 -0500
2758
2759 prefer windows queryperformancecounter to gettimeofday on Windows, thanks to David Price for the suggestion
2760 [empty commit message]
2761
2762 commit 338b5272f6924179a0b345e70f44fd1e5edafc23
2763 Author: athena <athena@fftw.org>
2764 Date: Sun Feb 1 14:34:49 2009 -0500
2765
2766 compilation fixes in case snprintf() is defined as a macro.
2767 [empty commit message]
2768
2769 commit 321141568010f66f31c36912a230005ab10d54d3
2770 Author: athena <athena@fftw.org>
2771 Date: Wed Jan 28 20:19:04 2009 -0500
2772
2773 Automake does not like continuation lines beginning with a comment.
2774 [empty commit message]
2775
2776 commit 618225923a36a2ef96214e2f2a0c6c12b0fb89be
2777 Author: athena <athena@fftw.org>
2778 Date: Wed Jan 28 18:24:39 2009 -0500
2779
2780 Add r2cb_2.c
2781
2782 r2cb_2.c is needed for problem rb2, which is not equivalent to
2783 rf2 (unlike kb2, which is equivalent to kf2).
2784
2785 This change would not matter much except that rb2 is generated
2786 when reducing backward rdft2 to dft, and the absence of the codelet was
2787 preventing radix 2 from being employed at all in this case.
2788
2789 commit dc4c6cb9e1ae4df2be85e77c3fea172f24e1523b
2790 Author: athena <athena@fftw.org>
2791 Date: Sat Jan 10 06:47:22 2009 -0500
2792
2793 handle the case vecsz->rnk == 0 correctly.
2794 [empty commit message]
2795
2796 commit 3ca4f694d0b27bb0b1e84ea028e3dadcfdf5b236
2797 Author: stevenj <stevenj@fftw.org>
2798 Date: Fri Dec 19 15:20:36 2008 -0500
2799
2800 Macs are no longer ppc-based; thanks to Charles Collicutt for the FAQ update
2801 [empty commit message]
2802
2803 commit bbfa5e2c5102a5f923eed3b31d37ec7b75616edd
2804 Author: stevenj <stevenj@fftw.org>
2805 Date: Mon Dec 8 18:08:33 2008 -0500
2806
2807 use new multiple-nbuf code in rdft/buffered, like for dft/buffered
2808 [empty commit message]
2809
2810 commit 679ab9ffd5738b9df115adfb64f72fd015fe7d6b
2811 Author: stevenj <stevenj@fftw.org>
2812 Date: Sat Dec 6 16:34:36 2008 -0500
2813
2814 make x86_cpuid macro work on x86_64
2815 [empty commit message]
2816
2817 commit 9771718d2e4e57450b03c89bb0c06663c59242c8
2818 Author: athena <athena@fftw.org>
2819 Date: Sat Dec 6 09:20:37 2008 -0500
2820
2821 Allow automatic choice of buffer size in dft/buffered.c
2822
2823 Try a couple of different buffer sizes in buffered transforms,
2824 since this seems to make a difference on some Core2 models.
2825
2826 commit c4888a4f4fb2961e0f067c55489989da8f3223f5
2827 Author: athena <athena@fftw.org>
2828 Date: Tue Dec 2 19:18:30 2008 -0500
2829
2830 libbench2: do not assume that split-complex arrays are stride-1
2831 [empty commit message]
2832
2833 commit e05f9234129ed82f1f5094465788742c271d1f4b
2834 Author: stevenj <stevenj@fftw.org>
2835 Date: Tue Dec 2 18:39:43 2008 -0500
2836
2837 updated NEWS
2838 [empty commit message]
2839
2840 commit 3cfe589fdc4393ff549c1bacbeb2b23c27562339
2841 Author: stevenj <stevenj@fftw.org>
2842 Date: Tue Dec 2 18:30:00 2008 -0500
2843
2844 date fix
2845 [empty commit message]
2846
2847 commit 81326cf16c11ddc12f3d3c1fda7861853abba308
2848 Author: stevenj <stevenj@fftw.org>
2849 Date: Tue Dec 2 18:29:06 2008 -0500
2850
2851 updated icc flags -- now prefer -xHost (-xN etc. seem t be obsolete), check for new spelling -ansi-alias, and use -malign-double like we do for gcc
2852 [empty commit message]
2853
2854 commit 2e94f29d37f25690825b11ed436d726d5077dba6
2855 Author: stevenj <stevenj@fftw.org>
2856 Date: Tue Dec 2 18:28:03 2008 -0500
2857
2858 use $ax_cv_c_compiler_vendor rather than $GCC, as the former is more reliable (icc incorrectly self-identifies as gcc on MacOS where we don't use -no-gcc)
2859 [empty commit message]
2860
2861 commit a5edcdb0c705b3b42f8aec48e41457fd3771bed7
2862 Author: stevenj <stevenj@fftw.org>
2863 Date: Tue Dec 2 17:55:36 2008 -0500
2864
2865 don't use -no-gcc for icc on MacOS
2866 [empty commit message]
2867
2868 commit 2ce94a7fa1858ca3bfdf38f47f7f2d62ceae5262
2869 Author: stevenj <stevenj@fftw.org>
2870 Date: Tue Dec 2 17:34:04 2008 -0500
2871
2872 document some more bench options
2873 [empty commit message]
2874
2875 commit 315a8ae3389d84d6c062a1afc5c2c4eddee4bb77
2876 Author: stevenj <stevenj@fftw.org>
2877 Date: Wed Nov 19 16:55:13 2008 -0500
2878
2879 make it clearer that --enable-openmp and --enable-threads are mutually exclusive; thanks to Long To for his comments
2880 [empty commit message]
2881
2882 commit 4bca25954f1e56299cf45e61bec3877007f8cbc4
2883 Author: stevenj <stevenj@fftw.org>
2884 Date: Mon Nov 17 20:16:28 2008 -0500
2885
2886 version bump to 3.2.1, use explicit Makefile.am for m4 subdirectory so that tarball does not include random files in there when you do 'make dist'
2887 [empty commit message]
2888
2889 commit 7728d69ca6e4f30747b182a3f0d30ec7c25bf26d
2890 Author: stevenj <stevenj@fftw.org>
2891 Date: Sat Nov 15 21:12:58 2008 -0500
2892
2893 document behavior of FFTW guru arrays, and in particular the odd behavior of the plan_guru_r2r routine in Fortran (thanks to Alexander Pozdneev for the bug report)
2894 [empty commit message]
2895
2896 commit ba5c08b8b8a3c0e69ba228e071d71664f72c76ba
2897 Author: stevenj <stevenj@fftw.org>
2898 Date: Mon Nov 10 20:21:32 2008 -0500
2899
2900 version bump to 3.2, updated copyright year
2901 [empty commit message]
2902
2903 commit a25226c3cd7b9451e6690a813cc3266b15acd7c2
2904 Author: athena <athena@fftw.org>
2905 Date: Wed Nov 5 16:40:31 2008 -0500
2906
2907 Store GPLv2 in darcs because automake installs GPLv3 these days.
2908 [empty commit message]
2909
2910 commit f80a90668573e199b3509a7737ba2d071f4e3974
2911 Author: athena <athena@fftw.org>
2912 Date: Thu Oct 30 15:03:41 2008 -0400
2913
2914 stylistic changes, comments
2915 [empty commit message]
2916
2917 commit b8f22edf8aadff2aea6d4e69b7651506951810d0
2918 Author: athena <athena@fftw.org>
2919 Date: Thu Oct 30 14:40:14 2008 -0400
2920
2921 oops
2922 [empty commit message]
2923
2924 commit bfaec2f123eb8d8297ce405590e07d682cf80293
2925 Author: athena <athena@fftw.org>
2926 Date: Thu Oct 30 14:30:08 2008 -0400
2927
2928 simplification of the threading machinery
2929 [empty commit message]
2930
2931 commit c471651b5bc46868c1e8231a89ec6d459c868854
2932 Author: athena <athena@fftw.org>
2933 Date: Thu Oct 30 14:22:40 2008 -0400
2934
2935 typo
2936 [empty commit message]
2937
2938 commit e1f64989da3c427c36c9df3495ef9d24ab01993d
2939 Author: athena <athena@fftw.org>
2940 Date: Thu Oct 30 13:42:07 2008 -0400
2941
2942 [SECOND ATTEMPT] do not assume that a semaphore can be freed just because nobody is using it
2943
2944 Let S be a semaphore, initially 0. Let thread A execute UP(S);
2945 let thread B execute DOWN(S); free(&S); It is unclear whether this
2946 code is correct with posix semaphores. The problem is whether UP()
2947 uses S after allowing DOWN() to continue; this seems to be the
2948 case in the glibc-2.7 implementation, and thus the pattern above
2949 seems to be incorrect. Avoid using such a pattern, and introduce
2950 a global semaphore for the unavoidable case when nothing else
2951 can be depended upon.
2952
2953 commit cddb0450696d51a99ca1d9663d4e4a606c45725e
2954 Author: stevenj <stevenj@fftw.org>
2955 Date: Wed Oct 29 20:09:39 2008 -0400
2956
2957 updated cpu codes from x86-1.21
2958 [empty commit message]
2959
2960 commit 2b8ab85fb21f1fd637cfe7a04ad0acf1610b5713
2961 Author: athena <athena@fftw.org>
2962 Date: Wed Oct 29 16:24:16 2008 -0400
2963
2964 Previous change was bogus, need to find another way.
2965 [empty commit message]
2966
2967 commit 0123295bb8dd2064d858a59a48242611219b020d
2968 Author: athena <athena@fftw.org>
2969 Date: Wed Oct 29 12:22:20 2008 -0400
2970
2971 do not assume that a semaphore can be freed just because nobody is using it
2972
2973 Let S be a semaphore, initially 0. Let thread A execute UP(S);
2974 let thread B execute DOWN(S); free(&S); It is unclear whether this
2975 code is correct with posix semaphores. The problem is whether UP()
2976 uses S after allowing DOWN() to continue; this seems to be the
2977 case in the glibc-2.7 implementation, and thus the pattern above
2978 seems to be incorrect. Avoid using such a pattern, and introduce
2979 a global semaphore for the unavoidable case when nothing else
2980 can be depended upon.
2981
2982 commit 1b1dd4a34bb653d4bd63775d2760b435cb4f0d1d
2983 Author: stevenj <stevenj@fftw.org>
2984 Date: Mon Oct 27 23:38:02 2008 -0400
2985
2986 don't need PROG_AS any more
2987 [empty commit message]
2988
2989 commit f7f67160af9b208e74304378ef54b4b5608fb96a
2990 Author: stevenj <stevenj@fftw.org>
2991 Date: Sun Oct 26 23:41:11 2008 -0400
2992
2993 use AC_CONFIG_MACRO_DIR macro
2994 [empty commit message]
2995
2996 commit d6334fa841da6e5f06a7323ce1d31346fb79b4f4
2997 Author: athena <athena@fftw.org>
2998 Date: Sun Oct 26 10:08:44 2008 -0400
2999
3000 Remove mpi/Makefile from configure.ac
3001 Otherwise, the tarball breaks because mpi/ is not in
3002 the distribution.
3003
3004 commit dda1fd64e3ab5fbb80578cfe41c69191cdfcc7f5
3005 Author: stevenj <stevenj@fftw.org>
3006 Date: Sat Oct 25 17:13:50 2008 -0400
3007
3008 remove MPI from dist until FFTW 3.3
3009 [empty commit message]
3010
3011 commit a3a16288f18899e7fc8351da1c500024709174cd
3012 Author: stevenj <stevenj@fftw.org>
3013 Date: Sat Oct 25 17:12:35 2008 -0400
3014
3015 use MPIRUN even for -np 1
3016 [empty commit message]
3017
3018 commit 1b2a86c0ab92772ce43bf6b0c5e0bbae2dfb7fee
3019 Author: stevenj <stevenj@fftw.org>
3020 Date: Fri Jul 18 17:17:08 2008 -0400
3021
3022 use new gcc arch=native flag as fallback
3023 [empty commit message]
3024
3025 commit 73944e9472d933cdafcff9c3e5b85efc9661ea5b
3026 Author: athena <athena@fftw.org>
3027 Date: Sat Oct 25 13:36:40 2008 -0400
3028
3029 Use sem_t to implement mutexes
3030 Use sem_t instead of pthread_mutex_t to implement mutexes.
3031 It seems like pthread mutexes hang on linux-2.6.22 after several
3032 days of tests; the hang does not occur on linux >= 2.6.24
3033 or when we use sem_t instead of pthread_mutex_t. The
3034 situation is still quite mysterious but this code seems to
3035 work.
3036
3037 commit 82a0159088bdacf0cb5d5ecb5547f51ae34f77ab
3038 Author: athena <athena@fftw.org>
3039 Date: Thu Oct 23 13:32:45 2008 -0400
3040
3041 print informative message when pstring is NULL.
3042 [empty commit message]
3043
3044 commit ddc681c6a5de3aee386cf990428dcfba95d32369
3045 Author: athena <athena@fftw.org>
3046 Date: Sun Oct 19 16:00:07 2008 -0400
3047
3048 Fix incorrect alignment in dftw-generic.
3049
3050 Multithreaded dftw-generic is supposed to process only a slice
3051 of the array, but we were planning with the alignment of the
3052 original array rather than the slice. This led to unaligned
3053 accesses in certain obscure situations.
3054
3055 commit d35ad1d719daf7a8b1c7658b88bf962e86dd050a
3056 Author: Matteo Frigo <athena@fftw.org>
3057 Date: Mon Aug 18 17:27:26 2008 -0400
3058
3059 Paranoia: do not create OS threads while holding locks.
3060
3061 Glibc at least plays silly games such as keeping a global variable
3062 that records whether there is more than one thread in the process, and
3063 it does not perform atomic operations if the variable says that there
3064 is only one thread. Who knows how this interacts with creating
3065 threads while holding a lock. Some day some genius will come up with
3066 some ``optimization'' that breaks everything.
3067
3068 commit 9ae439e37bf0cb024de699e15f98b5f5074d116c
3069 Author: athena <athena@fftw.org>
3070 Date: Wed Aug 6 07:41:46 2008 -0400
3071
3072 Welcome to the quadcore era
3073 [empty commit message]
3074
3075 commit be6af68ab86ada70645a79ef9ac5da11ea787eba
3076 Author: stevenj <stevenj@fftw.org>
3077 Date: Mon Jun 16 16:46:39 2008 -0400
3078
3079 backslash is technically not allowed in "echo" arguments; thanks to Debian Bug#486046 for pointing out problem and solution (and Raphael Geissert and Vincent Zweije, in particular)
3080 [empty commit message]
3081
3082 commit fd1ef499dca6f079bd9980cbecd1499e08fe99d0
3083 Author: stevenj <stevenj@fftw.org>
3084 Date: Sun May 4 12:15:24 2008 -0400
3085
3086 note problem with test program in gcc 4.1.2-4.2; thanks to Raymond Rogers for reporting it
3087 [empty commit message]
3088
3089 commit 771f298272494232c994bdca79978f00cbd0a0ac
3090 Author: stevenj <stevenj@fftw.org>
3091 Date: Fri May 2 19:21:30 2008 -0400
3092
3093 output count of constants along with other statistics
3094 [empty commit message]
3095
3096 commit 8a8a1bb47539bb8be624af291c28c77cc541ba4e
3097 Author: athena <athena@fftw.org>
3098 Date: Sat Apr 19 14:15:03 2008 -0400
3099
3100 Lower priority of unaligned SIMD codelets.
3101 List t1[fb]uv_* codelets before the corresponding
3102 aligned codelets, since the estimator picks the
3103 latter ones in case of a tie and aligned codelets
3104 are preferable.
3105
3106 In other words, this is a hack.
3107
3108 commit d4d0ed3f7cee7e5c06409b3162fbcf4bfd42fea9
3109 Author: Matteo Frigo <athena@fftw.org>
3110 Date: Sat Apr 19 08:55:46 2008 -0400
3111
3112 There is no point in using higher radices for unaligned codelets.
3113 [empty commit message]
3114
3115 commit c09bbbbc4d2c7236b861b7b2f67b77d4821bb8fc
3116 Author: stevenj <stevenj@fftw.org>
3117 Date: Fri Apr 18 19:01:27 2008 -0400
3118
3119 support generating loopless, strideless r2r codelets
3120 [empty commit message]
3121
3122 commit 5d2811a46f654c7dbbade5d2d65921e056c6b3a2
3123 Author: stevenj <stevenj@fftw.org>
3124 Date: Fri Apr 18 19:00:25 2008 -0400
3125
3126 added Magic.threemult to use 3+3 complex-multiply variant when possible
3127 [empty commit message]
3128
3129 commit b21cf57a0c4d5711ea4cdb085b068b366f93c916
3130 Author: stevenj <stevenj@fftw.org>
3131 Date: Thu Apr 10 19:53:31 2008 -0400
3132
3133 fix documentation bug - export_wisdom_to_string returns a string that should be deallocated with free, not fftw_free (thanks to Stein Vidar Hagfors Haugan for the bug report)
3134 [empty commit message]
3135
3136 commit 2a8ac0ba37e9087af75bd0edc9563279424c909d
3137 Author: stevenj <stevenj@fftw.org>
3138 Date: Mon Jan 21 01:11:44 2008 -0500
3139
3140 bsd calls x86_64 "amd64"; thanks to Fernando Herrero Carron for the bug report
3141 [empty commit message]
3142
3143 commit 9d150bc32eea5f0404562a6e26c8f5af7571174c
3144 Author: stevenj <stevenj@fftw.org>
3145 Date: Tue Jan 1 12:29:56 2008 -0500
3146
3147 fix typo in manual, thanks to Yinon Ehrlich
3148 [empty commit message]
3149
3150 commit a46838157abb2d1d08cf36d882b6e6979c90a059
3151 Author: stevenj <stevenj@fftw.org>
3152 Date: Mon Dec 3 13:57:13 2007 -0500
3153
3154 note problem with gcc 3.4.4 on x86_64, thanks to Uwe Hollerbach for the report
3155 [empty commit message]
3156
3157 commit 14def93d5b1ba54d64d86d0b9635dfbb41795197
3158 Author: stevenj <stevenj@fftw.org>
3159 Date: Tue Nov 13 16:19:22 2007 -0500
3160
3161 bump shared-lib revision
3162 [empty commit message]
3163
3164 commit ac56042c777020dd5edd04a142c522d0ea3d55d9
3165 Author: stevenj <stevenj@fftw.org>
3166 Date: Tue Nov 13 16:16:49 2007 -0500
3167
3168 update NEWS for alpha3
3169 [empty commit message]
3170
3171 commit d90bca8d53eaa2ecde6c54123b290ea2cccfeda1
3172 Author: stevenj <stevenj@fftw.org>
3173 Date: Tue Oct 2 13:53:04 2007 -0400
3174
3175 fixed URL
3176 [empty commit message]
3177
3178 commit 2e992067b2172b9ef10c068d5b3b1f5f0e336790
3179 Author: stevenj <stevenj@fftw.org>
3180 Date: Mon Sep 17 19:38:29 2007 -0400
3181
3182 added missing prototype
3183 [empty commit message]
3184
3185 commit a9a3696f1daa50cfcea8e9264912fd7010f59edf
3186 Author: stevenj <stevenj@fftw.org>
3187 Date: Tue Aug 14 22:35:06 2007 -0400
3188
3189 terminology tweak
3190 [empty commit message]
3191
3192 commit 7e0c1a370fdec22df30379eb952943a8b9f16080
3193 Author: stevenj <stevenj@fftw.org>
3194 Date: Wed Aug 1 18:44:21 2007 -0400
3195
3196 check for pathscale compilers (thanks to Julian Cummings)
3197 [empty commit message]
3198
3199 commit dabff4a5303cc1bde1a1ac88508f3301caeb6e9f
3200 Author: athena <athena@fftw.org>
3201 Date: Sat Sep 15 18:02:32 2007 -0400
3202
3203 Avoid possible conflict with Windows include files.
3204 [empty commit message]
3205
3206 commit 1090ecb91cd0da452cca31e8ef926494895a83bc
3207 Author: athena <athena@fftw.org>
3208 Date: Tue Aug 7 21:26:05 2007 -0400
3209
3210 Distribute codlist.c for SIMD codelets in the commercial tarball.
3211 [empty commit message]
3212
3213 commit 9c132ba2c88c1d5f9e35ad89c8d9e7b012f3741f
3214 Author: stevenj <stevenj@fftw.org>
3215 Date: Wed Aug 1 10:33:41 2007 -0400
3216
3217 some documentation clarifications, and documented FFTW_WISDOM_ONLY, at the suggestion of Mario Emmenlauer and Phil Dumont
3218 [empty commit message]
3219
3220 commit 79a73f23fc62044a1edd421d031c35d9d17345dc
3221 Author: stevenj <stevenj@fftw.org>
3222 Date: Tue Jul 31 16:52:56 2007 -0400
3223
3224 bug fix in test program for vrank-3 transpose plans with vl=1
3225 [empty commit message]
3226
3227 commit 13dcde33151a281f5dd4084f3a65277223d444eb
3228 Author: stevenj <stevenj@fftw.org>
3229 Date: Sun Jul 29 17:02:46 2007 -0400
3230
3231 only run mpi checks for --enable-mpi
3232 [empty commit message]
3233
3234 commit da920b9d9649c89291980b342a38cd31e689d04c
3235 Author: stevenj <stevenj@fftw.org>
3236 Date: Sun Jul 29 16:45:30 2007 -0400
3237
3238 check for NULL return from spe_context_create in case SPE_MAP_PS not supported
3239 [empty commit message]
3240
3241 commit 8b5208ab2d26b33f10864d23ae032a575877cdb3
3242 Author: stevenj <stevenj@fftw.org>
3243 Date: Sun Jul 29 15:56:57 2007 -0400
3244
3245 use problem-state pointer to write SPE mailbox with lower latency (makes a significant performance difference for N < 32k), thanks to Jan Wagner for suggestion
3246 [empty commit message]
3247
3248 commit 35435685af71440fc9601b845163491e61845b4b
3249 Author: stevenj <stevenj@fftw.org>
3250 Date: Sun Jul 29 14:22:08 2007 -0400
3251
3252 port cell code to SDK2.1 (libspe2), since libspe1 API is deprecated and can't be used in code that also uses libspe2 API
3253 [empty commit message]
3254
3255 commit 21dc1b9f90f96120a92469077cabfd80dd7fcb70
3256 Author: stevenj <stevenj@fftw.org>
3257 Date: Sun Jul 29 11:46:24 2007 -0400
3258
3259 bug fix: ego->W allocated with cell_aligned_malloc, so deallocate with free, not X(ifree0)
3260 [empty commit message]
3261
3262 commit 7c9f576ed6672631a9d36698f5d9824d173e06ea
3263 Author: stevenj <stevenj@fftw.org>
3264 Date: Mon Jul 2 15:57:12 2007 -0400
3265
3266 removed obsolete reference to CVS id
3267 [empty commit message]
3268
3269 commit 2efeadcf8d2b6562d8c18707a0b7eb2e3e5f73d3
3270 Author: athena <athena@fftw.org>
3271 Date: Mon May 21 14:25:39 2007 -0400
3272
3273 cycle counter for sun compiler
3274 [empty commit message]
3275
3276 commit 0b59ce4b61ae5c052d9c673807e7b3386d7bdaa2
3277 Author: stevenj <stevenj@fftw.org>
3278 Date: Wed May 9 19:49:11 2007 -0400
3279
3280 use __inline instead of inline for AIX routines (__inline is supported by gcc and xlc, whereas apparently "inline" is only supported by xlc if you specify -qlanglvl=stdc99 or similar); thanks to Jeff Haferman for the bug report
3281 [empty commit message]
3282
3283 commit a3dc6f8631568cca3039a6932aa4a66e46456a79
3284 Author: stevenj <stevenj@fftw.org>
3285 Date: Mon Apr 30 15:37:56 2007 -0400
3286
3287 fixed incorrect type prefix (fftw_ vs. X(...)) in mpi/wisdom-api.c; thanks to Eric A. Borisch for the bug report
3288 [empty commit message]
3289
3290 commit 122d2b4a77a11b949e61e503681975f2da3d7d4f
3291 Author: stevenj <stevenj@fftw.org>
3292 Date: Wed Apr 25 21:21:39 2007 -0400
3293
3294 some cleanups in MPI make check
3295 [empty commit message]
3296
3297 commit 4d26d141fb5e018b49133b1e080acbff744d97c0
3298 Author: stevenj <stevenj@fftw.org>
3299 Date: Wed Apr 25 21:19:27 2007 -0400
3300
3301 re-enable heuristic in the common case where we are not compiling for Cell
3302 [empty commit message]
3303
3304 commit 28a27bde79e55d51dd1fb81d82ca418587106a62
3305 Author: athena <athena@fftw.org>
3306 Date: Tue Apr 24 17:42:43 2007 -0400
3307
3308 Removed duplicate codelet names, was breaking linker.
3309 [empty commit message]
3310
3311 commit 1a4a3dcbbe5a046f07654fa3734a5b3568d51b32
3312 Author: stevenj <stevenj@fftw.org>
3313 Date: Tue Apr 24 11:38:16 2007 -0400
3314
3315 added more codelets of sizes 5/10/20/25 to improve speed for round decimal sizes (speed improvements of 10-20%, at cost of 10-30% in library size)
3316 [empty commit message]
3317
3318 commit 35443ed785a0ce0a05e16d1f6419769f7641f415
3319 Author: stevenj <stevenj@fftw.org>
3320 Date: Sat Mar 24 18:40:47 2007 -0400
3321
3322 for 1d prime sizes, punt and return serial plan
3323 [empty commit message]
3324
3325 commit 3cf27d0073f9f911a2b15283b0d1acebeaf7b599
3326 Author: stevenj <stevenj@fftw.org>
3327 Date: Sat Mar 24 18:24:55 2007 -0400
3328
3329 output reminders of the problem during bench --verify
3330 [empty commit message]
3331
3332 commit e68227acb0ebf9ad3cb0b022382c6df9fcf0d8b1
3333 Author: stevenj <stevenj@fftw.org>
3334 Date: Sat Mar 24 18:10:24 2007 -0400
3335
3336 bug fix - missing solver->destroy initializer in rdft2-rdft
3337 [empty commit message]
3338
3339 commit 59a3e77ab1cba10afa53a627849abef6dd93152d
3340 Author: stevenj <stevenj@fftw.org>
3341 Date: Fri Mar 23 11:12:19 2007 -0400
3342
3343 -static, in --enable-debug, doesn't work on MacOS X (according to Daniel Oberhoff)
3344 [empty commit message]
3345
3346 commit 1bcacddfa919627af62568a28b0713b368549612
3347 Author: stevenj <stevenj@fftw.org>
3348 Date: Wed Mar 21 22:23:06 2007 -0400
3349
3350 fix MPI r2c/c2r to work with howmany > 1
3351 [empty commit message]
3352
3353 commit 86e99768530258b6184733a382920feae222ae55
3354 Author: stevenj <stevenj@fftw.org>
3355 Date: Wed Mar 21 18:44:41 2007 -0400
3356
3357 rm MPI version from TODO
3358 [empty commit message]
3359
3360 commit b55ed34cb35d64e452aac41b5661536d75c492d4
3361 Author: stevenj <stevenj@fftw.org>
3362 Date: Wed Mar 21 18:34:40 2007 -0400
3363
3364 added 'make bigcheck' for MPI (no paranoid-check, unfortunately), and properly get MPIRUN from configure
3365 [empty commit message]
3366
3367 commit e11b28e739bf5b888cfdf0ec97337166fbb6c425
3368 Author: stevenj <stevenj@fftw.org>
3369 Date: Wed Mar 21 18:23:18 2007 -0400
3370
3371 bug fix - incorrect local_size returned for 1d bigvec case
3372 [empty commit message]
3373
3374 commit 3c4171a56630a623798d71e1a6218c1400ea3e46
3375 Author: stevenj <stevenj@fftw.org>
3376 Date: Wed Mar 21 03:13:54 2007 -0400
3377
3378 hack to specify MPI_TRANSPOSED_IN/OUT via "[" and "]" in libbench2 problem
3379 [empty commit message]
3380
3381 commit b6643c4d6de6ac41e771a65accc67af6d515009f
3382 Author: stevenj <stevenj@fftw.org>
3383 Date: Wed Mar 21 02:58:11 2007 -0400
3384
3385 added MPI 'make check', still needs a bit of work
3386 [empty commit message]
3387
3388 commit 5c4ca6bf40ab9683f717ef89a5bbb2c7da031680
3389 Author: stevenj <stevenj@fftw.org>
3390 Date: Wed Mar 21 02:47:10 2007 -0400
3391
3392 bug fix in r2r transposed-input case
3393 [empty commit message]
3394
3395 commit 518bfe4ddbe9a727866374bb0b0fb49a2d0a9f2b
3396 Author: stevenj <stevenj@fftw.org>
3397 Date: Wed Mar 21 02:46:25 2007 -0400
3398
3399 don't output more than 300 erroneous outputs (unless verbose > 2)
3400 [empty commit message]
3401
3402 commit 5ae1f03689a0f37d5db6becf54c8e54395541407
3403 Author: stevenj <stevenj@fftw.org>
3404 Date: Wed Mar 21 01:48:54 2007 -0400
3405
3406 fixed bug in transposed-in c2r MPI transforms ... seems to be working, finally
3407 [empty commit message]
3408
3409 commit 6ff00891c3f7fcfe5399e652b9aeb1538bf9c8d6
3410 Author: stevenj <stevenj@fftw.org>
3411 Date: Wed Mar 21 00:41:32 2007 -0400
3412
3413 some fixes to MPI r2c/c2r transforms with transposed output/input
3414 [empty commit message]
3415
3416 commit fc68b9bdd4975fec0d3f9b9ef6a2d9e052f8e7ce
3417 Author: stevenj <stevenj@fftw.org>
3418 Date: Wed Mar 21 00:40:25 2007 -0400
3419
3420 typos
3421 [empty commit message]
3422
3423 commit 75dce53511a209c32f881a782af96bf68fdf41af
3424 Author: stevenj <stevenj@fftw.org>
3425 Date: Tue Mar 20 19:53:02 2007 -0400
3426
3427 bug fix for mpi-bench with r2c/c2r: allocate a little bit extra to make sure that padding is allocated
3428 [empty commit message]
3429
3430 commit 1720fcb4dc2220e66e50a2baa9201f6c58913bf4
3431 Author: stevenj <stevenj@fftw.org>
3432 Date: Tue Mar 20 19:19:13 2007 -0400
3433
3434 fix typo, thanks to Ernest Turro for the bug report
3435 [empty commit message]
3436
3437 commit 3a9a95e347c10d98ad7d7ef0c3dca97217e2137a
3438 Author: stevenj <stevenj@fftw.org>
3439 Date: Tue Mar 20 01:39:06 2007 -0400
3440
3441 spacing tweaks
3442 [empty commit message]
3443
3444 commit 27cc0f277fb7839e10996eb97c07e4ea9e5bb94c
3445 Author: stevenj <stevenj@fftw.org>
3446 Date: Tue Mar 20 00:53:11 2007 -0400
3447
3448 Ralf Wildenhues is the one who pointed out that the self-communication could fill in the stalls in the pairwise schedule
3449 [empty commit message]
3450
3451 commit 3879a995d7146eb6be6ab3df826ebdf2660451f5
3452 Author: stevenj <stevenj@fftw.org>
3453 Date: Tue Mar 20 00:22:25 2007 -0400
3454
3455 add TRANSPOSED_OUT/IN support for r2c/c2r, respectively
3456 [empty commit message]
3457
3458 commit 5a4f8df7a48f55926d1a2017e234903e75fbf35b
3459 Author: stevenj <stevenj@fftw.org>
3460 Date: Mon Mar 19 21:45:34 2007 -0400
3461
3462 yikes! fixed likely deadlock bug in MPI
3463 [empty commit message]
3464
3465 commit e5514b08ccfb3c99dfa7034276872af1e3a15b84
3466 Author: stevenj <stevenj@fftw.org>
3467 Date: Mon Mar 19 21:38:52 2007 -0400
3468
3469 comment
3470 [empty commit message]
3471
3472 commit 2ccef4a6915eeebe969120c75c5790791905fd37
3473 Author: stevenj <stevenj@fftw.org>
3474 Date: Mon Mar 19 21:30:44 2007 -0400
3475
3476 s/alpha1/alpha2/
3477 [empty commit message]
3478
3479 commit 4c069ca435d517243da0ea52594b8101723303b1
3480 Author: stevenj <stevenj@fftw.org>
3481 Date: Mon Mar 19 00:39:47 2007 -0400
3482
3483 include README in dist tarball
3484 [empty commit message]
3485
3486 commit ea9cd7ed69c82e7b129bf88b99dc58238d856c0c
3487 Author: stevenj <stevenj@fftw.org>
3488 Date: Mon Mar 19 00:35:43 2007 -0400
3489
3490 added MPI r2c/c2r transforms, some more documentation
3491 [empty commit message]
3492
3493 commit 539fd2ff41bbf5d9955ff83880d983d422e4f4bd
3494 Author: stevenj <stevenj@fftw.org>
3495 Date: Sun Mar 18 23:14:29 2007 -0400
3496
3497 set version to 3.2alpha2
3498 [empty commit message]
3499
3500 commit 5b7625b7daebd8aba2e0a876083a944e2c7b520e
3501 Author: stevenj <stevenj@fftw.org>
3502 Date: Sun Mar 18 19:12:18 2007 -0400
3503
3504 changed --enable-mips_ps to --enable-mips-ps; added Cell section to manual (from README.Cell); many minor updates to manual
3505 [empty commit message]
3506
3507 commit c8cd95869bb81b8d85d87a91e0d65402f9de2288
3508 Author: stevenj <stevenj@fftw.org>
3509 Date: Sun Mar 18 15:27:06 2007 -0400
3510
3511 whoops, need to sync costs in problem_mpi_rdft
3512 [empty commit message]
3513
3514 commit dfc055b714f7d4b63b6615bb4b00c86d1600b7de
3515 Author: stevenj <stevenj@fftw.org>
3516 Date: Sun Mar 18 12:44:49 2007 -0400
3517
3518 documented guru64 interface
3519 [empty commit message]
3520
3521 commit e6a8b5ed239bd9e150f62c8f773e0dcdc97df31a
3522 Author: stevenj <stevenj@fftw.org>
3523 Date: Sun Mar 18 02:57:46 2007 -0400
3524
3525 typo
3526 [empty commit message]
3527
3528 commit 4625ba2558f8f51201b06cc14102507dd3f2731d
3529 Author: stevenj <stevenj@fftw.org>
3530 Date: Sun Mar 18 02:45:09 2007 -0400
3531
3532 bumped copyright year to 2007
3533 [empty commit message]
3534
3535 commit 66392e6b7c997772c49e9c38d275fe79cc25ed33
3536 Author: stevenj <stevenj@fftw.org>
3537 Date: Sun Mar 18 01:41:40 2007 -0400
3538
3539 noted CodeSourcery in AUTHORS
3540 [empty commit message]
3541
3542 commit 2c18cc0507bb6ea17abd5d54bacf15bd7ccbca13
3543 Author: stevenj <stevenj@fftw.org>
3544 Date: Sun Mar 18 01:25:00 2007 -0400
3545
3546 more MPI documentation
3547 [empty commit message]
3548
3549 commit 498f7ef52ac60aa1467d76bbfbd0d2224b9ccb10
3550 Author: stevenj <stevenj@fftw.org>
3551 Date: Sat Mar 17 23:15:04 2007 -0400
3552
3553 added MPI multi-dimensional rdft solvers & tests
3554 [empty commit message]
3555
3556 commit 871ff1554eded2f68e184ecff1d3befd19aa2679
3557 Author: stevenj <stevenj@fftw.org>
3558 Date: Sat Mar 17 22:52:00 2007 -0400
3559
3560 whoops
3561 [empty commit message]
3562
3563 commit 5a46acce32021f8bcdf12188ca3d764ce7f1cc85
3564 Author: stevenj <stevenj@fftw.org>
3565 Date: Sat Mar 17 22:43:54 2007 -0400
3566
3567 clarification - fftw_mpi_init should be called before importing wisdom
3568 [empty commit message]
3569
3570 commit 3e2d1704698a4609579e332b904502f5b30370fa
3571 Author: stevenj <stevenj@fftw.org>
3572 Date: Sat Mar 17 19:49:37 2007 -0400
3573
3574 kindx/y/z -> kind0/1/2 for consistency
3575 [empty commit message]
3576
3577 commit 73c018e5b29c759aaf1012ee39853b025024334c
3578 Author: stevenj <stevenj@fftw.org>
3579 Date: Sat Mar 17 19:34:02 2007 -0400
3580
3581 typo
3582 [empty commit message]
3583
3584 commit 1d9eeb0231c02f554470a9b6150b07df35e85a4a
3585 Author: stevenj <stevenj@fftw.org>
3586 Date: Sat Mar 17 19:14:16 2007 -0400
3587
3588 some refactoring in preparation for mpi-rdft
3589 [empty commit message]
3590
3591 commit 3a5f38381e0f65c6da82ab93eefe1be2789c9749
3592 Author: stevenj <stevenj@fftw.org>
3593 Date: Sat Mar 17 18:12:45 2007 -0400
3594
3595 documented more stuff for MPI
3596 [empty commit message]
3597
3598 commit f833ef7087c898b684d1e0945fb28164e7d5fc02
3599 Author: stevenj <stevenj@fftw.org>
3600 Date: Sat Mar 17 15:41:23 2007 -0400
3601
3602 added NEWS for 3.2alpha
3603 [empty commit message]
3604
3605 commit 75d1f8189e12f1104a11d92da913592e69b37227
3606 Author: stevenj <stevenj@fftw.org>
3607 Date: Sat Mar 17 14:50:22 2007 -0400
3608
3609 documented MPI transpose routines
3610 [empty commit message]
3611
3612 commit 4fdc9e45f4c6f587f12edb5c0bbe0c60a499d0a9
3613 Author: athena <athena@fftw.org>
3614 Date: Sat Mar 17 08:57:30 2007 -0400
3615
3616 Removed unused variables
3617 [empty commit message]
3618
3619 commit a1bd09375e2342d3dec8dbaba75321c278b50861
3620 Author: athena <athena@fftw.org>
3621 Date: Fri Mar 16 14:47:10 2007 -0400
3622
3623 Preparing for interim release of Cell code.
3624 [empty commit message]
3625
3626 commit bd1f6de1d0c69ee9a7b7be715797ae2e5cb28ed0
3627 Author: athena <athena@fftw.org>
3628 Date: Thu Feb 8 12:23:43 2007 -0500
3629
3630 Added README.Cell
3631 [empty commit message]
3632
3633 commit 4125ae1b42049d9828b51cb9f45398601fa25e5c
3634 Author: athena <athena@fftw.org>
3635 Date: Sat Mar 10 19:17:40 2007 -0500
3636
3637 Synchronized with main branch
3638 [empty commit message]
3639
3640 commit fa8f1748c92e9255b456b995a9c2d439110fb1b5
3641 Author: athena <athena@fftw.org>
3642 Date: Mon Jan 22 17:43:56 2007 -0500
3643
3644 Adapted vrecur heuristic to Cell.
3645 [empty commit message]
3646
3647 commit 31c0788d89e5d2db56d1949df2e61171360ad282
3648 Author: athena <athena@fftw.org>
3649 Date: Thu Jan 18 20:29:22 2007 -0500
3650
3651 Increased MAX_N to 32K/sizeof(R).
3652 [empty commit message]
3653
3654 commit e0e08abd04fec6f16a5aa4b8dbec2f614b845bde
3655 Author: Matteo Frigo <athena@fftw.org>
3656 Date: Thu Jan 18 13:43:51 2007 -0500
3657
3658 Added pointer to solver->destroy which is used in the Cell branch.
3659 [empty commit message]
3660
3661 commit dbb33d0b51897749feff0ef26e63af7769cd4fa5
3662 Author: athena <athena@fftw.org>
3663 Date: Thu Jan 18 12:09:26 2007 -0500
3664
3665 Updated copyright notices
3666 [empty commit message]
3667
3668 commit bdb23b08725ce86827dc72f39ace915e594e0ddd
3669 Author: athena <athena@fftw.org>
3670 Date: Fri Jan 12 12:54:43 2007 -0500
3671
3672 Use mfc_read_tag_status_all() instead of spu_mfcstat(2), since the former seems to be standardized.
3673 [empty commit message]
3674
3675 commit d958d4081d9d131a8c331795b51c38392e038f5f
3676 Author: athena <athena@fftw.org>
3677 Date: Thu Jan 11 14:55:08 2007 -0500
3678
3679 Silence some int/INT warnings.
3680 [empty commit message]
3681
3682 commit a465f3a820c88855cec17a8b62093f151cf4a75b
3683 Author: athena <athena@fftw.org>
3684 Date: Wed Jan 10 18:19:53 2007 -0500
3685
3686 Note incompatibility of --enable-cell with --enable-threads
3687 [empty commit message]
3688
3689 commit f8d67adca8de472032a5bb176caef2df069ac301
3690 Author: athena <athena@fftw.org>
3691 Date: Wed Jan 10 17:57:10 2007 -0500
3692
3693 forgot to add file
3694 [empty commit message]
3695
3696 commit 2b494f41afa950fa4174d4588070c49879c89acb
3697 Author: athena <athena@fftw.org>
3698 Date: Wed Jan 10 17:45:16 2007 -0500
3699
3700 64-bit cleanup
3701 [empty commit message]
3702
3703 commit d4d591f6547fba8ab96d982a76747e0248e94031
3704 Author: athena <athena@fftw.org>
3705 Date: Wed Jan 10 13:47:20 2007 -0500
3706
3707 Use -mcpu=cell where appropriate.
3708 [empty commit message]
3709
3710 commit bbff6b92337e5462c8e01c3c6f200f0841422229
3711 Author: athena <athena@fftw.org>
3712 Date: Tue Dec 26 21:35:59 2006 -0500
3713
3714 synchronized with main
3715 [empty commit message]
3716
3717 commit 011961c240152fa9ff6c791c430f0104ca2dada7
3718 Author: athena <athena@fftw.org>
3719 Date: Sun Dec 24 20:58:25 2006 -0500
3720
3721 synchronized with main branch
3722 [empty commit message]
3723
3724 commit 563b10fee948f8cf7089fc91f97ccd07b92169ae
3725 Author: athena <athena@fftw.org>
3726 Date: Sun Dec 24 13:47:37 2006 -0500
3727
3728 synchronized with main branch, updated to new sdk.
3729 [empty commit message]
3730
3731 commit 8a7076d3c731fa116d61cc072416ab46beddfc03
3732 Author: athena <athena@fftw.org>
3733 Date: Thu Dec 21 17:17:41 2006 -0500
3734
3735 removed obsolete file
3736 [empty commit message]
3737
3738 commit b4139c9ef725c1910b97628667ab1fa9ab98e635
3739 Author: athena <athena@fftw.org>
3740 Date: Tue Dec 19 15:17:20 2006 -0500
3741
3742 synchronized with main branch
3743 [empty commit message]
3744
3745 commit 7df6b5623e1db3fe7e9dff26fd4d23f484495649
3746 Author: athena <athena@fftw.org>
3747 Date: Tue Dec 19 11:27:38 2006 -0500
3748
3749 Synchronized with main branch
3750 [empty commit message]
3751
3752 commit 6ea2fd75cd1aae82fe1d1a510f104646ab7aa7c9
3753 Author: athena <athena@fftw.org>
3754 Date: Fri Dec 15 16:04:31 2006 -0500
3755
3756 resolved conflict with main branch
3757 [empty commit message]
3758
3759 commit 65515a62ffff8fb5649200627cb0c93ef813a9c0
3760 Author: athena <athena@fftw.org>
3761 Date: Fri Dec 8 14:43:50 2006 -0500
3762
3763 Fixes for compilation in subdirectories
3764 [empty commit message]
3765
3766 commit d39013569f9cb742b50238ca622f3bd52cade5b5
3767 Author: athena <athena@fftw.org>
3768 Date: Fri Dec 8 12:46:00 2006 -0500
3769
3770 Silence warning
3771 [empty commit message]
3772
3773 commit 565f828f3b33be86ac3263046fae490fda62d059
3774 Author: athena <athena@fftw.org>
3775 Date: Fri Dec 8 12:24:19 2006 -0500
3776
3777 silence warning
3778 [empty commit message]
3779
3780 commit 5ae3fbed814693f0172abe16b6875b17df64616d
3781 Author: athena <athena@fftw.org>
3782 Date: Thu Dec 7 15:18:17 2006 -0500
3783
3784 Commented a particularly obscure piece of code.
3785 [empty commit message]
3786
3787 commit b4f78f41fb5960b0ec300d23d6653e80f498eee2
3788 Author: athena <athena@fftw.org>
3789 Date: Thu Dec 7 11:53:29 2006 -0500
3790
3791 Reorganized, clarified conditions for applicability of the DFT solver.
3792 [empty commit message]
3793
3794 commit 4d31f1609b233b3951f5f660bc7d2f8f98d7bd38
3795 Author: athena <athena@fftw.org>
3796 Date: Mon Dec 4 21:33:49 2006 -0500
3797
3798 Minor changes
3799 [empty commit message]
3800
3801 commit b4cd386c5a2ebd85f8c53be407642199914c26ed
3802 Author: athena <athena@fftw.org>
3803 Date: Mon Dec 4 17:43:28 2006 -0500
3804
3805 Clarified comment
3806 [empty commit message]
3807
3808 commit aafb3252fb01b21a852ed938b9bc6b2e8b852517
3809 Author: athena <athena@fftw.org>
3810 Date: Mon Dec 4 16:49:06 2006 -0500
3811
3812 Less incorrect conditions for fitting into local store.
3813 [empty commit message]
3814
3815 commit 985d9f04682d20ed877a04bfc1d5c0cb73af903c
3816 Author: athena <athena@fftw.org>
3817 Date: Mon Dec 4 16:08:24 2006 -0500
3818
3819 Implemented DECDIF+TRANSPOSE on Cell
3820 [empty commit message]
3821
3822 commit 00969378eff1f94e8858105bd22015e622da58d0
3823 Author: athena <athena@fftw.org>
3824 Date: Fri Dec 1 17:42:55 2006 -0500
3825
3826 relaxed conditions of applicability of SPE
3827 [empty commit message]
3828
3829 commit 4df1c8eb6351f9f6dd2e869a33044d8b36f8dd54
3830 Author: athena <athena@fftw.org>
3831 Date: Fri Dec 1 16:28:10 2006 -0500
3832
3833 tweaks
3834 [empty commit message]
3835
3836 commit 92a232ae0edf2fe3f92ca5485861d866aa4c96b0
3837 Author: athena <athena@fftw.org>
3838 Date: Fri Dec 1 14:35:17 2006 -0500
3839
3840 Implemented Cell opcounts
3841 [empty commit message]
3842
3843 commit b2e38a76dac60881d4e14e3d9a6ad2b236086a68
3844 Author: athena <athena@fftw.org>
3845 Date: Fri Dec 1 13:38:44 2006 -0500
3846
3847 minor cleanup
3848 [empty commit message]
3849
3850 commit 0ab21aa8b736fd4002a92db39449d9e140c39606
3851 Author: athena <athena@fftw.org>
3852 Date: Fri Dec 1 11:16:52 2006 -0500
3853
3854 use [c0 s0 c1 s1] format for Cell twiddle factors, rather than [c0 c1 s0 s1]. This makes life easier and there is no speed penalty on Cell (unlike Altivec).
3855 [empty commit message]
3856
3857 commit d080990161fe731d5e1af92f9534c4bd86e06d1f
3858 Author: athena <athena@fftw.org>
3859 Date: Wed Nov 29 18:02:54 2006 -0500
3860
3861 Implemented SPE-accelerated copies
3862 [empty commit message]
3863
3864 commit 23f9c35ec5d4c123a664c907e5aaca2d9704888c
3865 Author: athena <athena@fftw.org>
3866 Date: Wed Nov 29 12:11:08 2006 -0500
3867
3868 allow SPEs to compute vrank-0 problems.
3869 [empty commit message]
3870
3871 commit 2f71518adcd364d1cc45272d4f254028c779ff83
3872 Author: athena <athena@fftw.org>
3873 Date: Tue Nov 28 18:03:07 2006 -0500
3874
3875 eliminated DMA lists
3876 [empty commit message]
3877
3878 commit 8620a7ab00d1bd4d288513998c82d14cce47b98f
3879 Author: athena <athena@fftw.org>
3880 Date: Tue Nov 28 14:22:05 2006 -0500
3881
3882 Conservatively force all dimensions to be 0 (mod VL) in cell, since otherwise it is too hard to get all cases right.
3883 [empty commit message]
3884
3885 commit 8343bf57ddaff7d35756635dd9a4a6aa8d31e964
3886 Author: athena <athena@fftw.org>
3887 Date: Tue Nov 28 12:39:01 2006 -0500
3888
3889 Check alignment of strides when transposing on Cell.
3890 [empty commit message]
3891
3892 commit 7e28410dc1fbaa1bbf53007869937b84d44c37f3
3893 Author: athena <athena@fftw.org>
3894 Date: Tue Nov 28 12:19:09 2006 -0500
3895
3896 consistent usage of FFT_SIGN
3897 [empty commit message]
3898
3899 commit 66491d40310d02c982e54ebee2f9f6c7cb0ae7db
3900 Author: athena <athena@fftw.org>
3901 Date: Tue Nov 28 11:35:38 2006 -0500
3902
3903 clever transposition algorithm without buffering
3904 [empty commit message]
3905
3906 commit 33e68acd59c892e969a722ded4292aef57fab0a9
3907 Author: athena <athena@fftw.org>
3908 Date: Mon Nov 27 14:08:28 2006 -0500
3909
3910 Fixed tracking of dependencies
3911 [empty commit message]
3912
3913 commit 1eab08a3242ae935de04debda8abee056fb3d978
3914 Author: athena <athena@fftw.org>
3915 Date: Mon Nov 27 14:03:53 2006 -0500
3916
3917 implemented 1D transforms, various tweaks
3918 [empty commit message]
3919
3920 commit 14891530341581ba7a2422754d83d0c621c71daa
3921 Author: athena <athena@fftw.org>
3922 Date: Wed Nov 22 15:43:36 2006 -0500
3923
3924 no need to poll mailbox on spu side
3925 [empty commit message]
3926
3927 commit bc0822718ba87089828bd9362b112c8a9bef878c
3928 Author: athena <athena@fftw.org>
3929 Date: Wed Nov 22 14:08:24 2006 -0500
3930
3931 increased maximum size handled by spe
3932 [empty commit message]
3933
3934 commit 0fb0144374b505502ed768b7f13c191d775bf870
3935 Author: athena <athena@fftw.org>
3936 Date: Tue Nov 21 16:23:17 2006 -0500
3937
3938 allow vrank<=2 problems in SPEs to avoid the vecloop overhead (grrr...)
3939 [empty commit message]
3940
3941 commit 26017102cbb70e6e0292087249267b6560414f1c
3942 Author: athena <athena@fftw.org>
3943 Date: Mon Nov 20 14:41:45 2006 -0500
3944
3945 added emacs mode
3946 [empty commit message]
3947
3948 commit ae2ed8341f9860cd659dc62def4f0c3712e856ab
3949 Author: athena <athena@fftw.org>
3950 Date: Mon Nov 20 09:34:12 2006 -0500
3951
3952 revised transpose, cleanup
3953 [empty commit message]
3954
3955 commit 7de0b7799021747ff1eef31aca59f7b229750e93
3956 Author: athena <athena@fftw.org>
3957 Date: Sun Nov 19 20:20:23 2006 -0500
3958
3959 added file
3960 [empty commit message]
3961
3962 commit 7383afd328c1e98b5ec25c32094a28b0312fb7b0
3963 Author: athena <athena@fftw.org>
3964 Date: Sun Nov 19 20:18:35 2006 -0500
3965
3966 removed file
3967 [empty commit message]
3968
3969 commit fa6b1a88cae92cf2e4e5ab247d7a9d93e722c405
3970 Author: athena <athena@fftw.org>
3971 Date: Sun Nov 19 20:15:38 2006 -0500
3972
3973 better automake integration
3974 [empty commit message]
3975
3976 commit d1af1e31717e8df8126e7f44197d10e652adbaab
3977 Author: athena <athena@fftw.org>
3978 Date: Sat Nov 18 20:14:29 2006 -0500
3979
3980 changed algorithm for computing chunk size
3981 [empty commit message]
3982
3983 commit 631ad019b179b1e260a5197ef0012e38e5adfb9c
3984 Author: athena <athena@fftw.org>
3985 Date: Sat Nov 18 19:18:11 2006 -0500
3986
3987 implemented transpose, various fixes.
3988 [empty commit message]
3989
3990 commit 4d0d4332d36eb952e188eb44f039249a78dc2545
3991 Author: athena <athena@fftw.org>
3992 Date: Thu Nov 16 16:33:50 2006 -0500
3993
3994 Added explicit destructor to all solvers to help with the cell port.
3995 [empty commit message]
3996
3997 commit c668de4bc5e8677b2c78830b34214aa832631281
3998 Author: athena <athena@fftw.org>
3999 Date: Thu Nov 16 15:22:15 2006 -0500
4000
4001 consistent use of #if vs. #ifdef
4002 [empty commit message]
4003
4004 commit 34192d4eaa06426a1168b5ac743332adb1cd6039
4005 Author: athena <athena@fftw.org>
4006 Date: Thu Nov 16 15:15:34 2006 -0500
4007
4008 Additional Cell double codelets, better automake integration
4009 [empty commit message]
4010
4011 commit 4b19e0b192a7f797d21adc5b8b39b126bf809e53
4012 Author: athena <athena@fftw.org>
4013 Date: Thu Nov 16 12:43:34 2006 -0500
4014
4015 Use dma lists.
4016 [empty commit message]
4017
4018 commit 398bcee9091aa5c56d753877957f367e7041e6a7
4019 Author: athena <athena@fftw.org>
4020 Date: Thu Nov 16 11:03:46 2006 -0500
4021
4022 converted to automake
4023 [empty commit message]
4024
4025 commit caf4303b1448b64d7f82cf9ba36eee8071674421
4026 Author: athena <athena@fftw.org>
4027 Date: Wed Nov 15 18:00:12 2006 -0500
4028
4029 Initial port to Cell Broadband Engine.
4030 [empty commit message]
4031
4032 commit 45eebf6ef925ca51e2749ea8658cfb39216fd5b7
4033 Author: athena <athena@fftw.org>
4034 Date: Wed Mar 14 10:19:53 2007 -0400
4035
4036 Remove Codesourcery contributions from commercial tarball.
4037 [empty commit message]
4038
4039 commit 71e740a2b810c009c637addb3f87bba3338fa0d2
4040 Author: athena <athena@fftw.org>
4041 Date: Wed Mar 14 08:59:18 2007 -0400
4042
4043 Added FFTW_WISDOM_ONLY, at the request of Phil Dumont.
4044 [empty commit message]
4045
4046 commit 8c4485fd3fffb1cfd1aacddfecb58250b5b69607
4047 Author: stevenj <stevenj@fftw.org>
4048 Date: Tue Mar 13 00:32:05 2007 -0400
4049
4050 fixed potential MPI deadlock if timer misbehaves
4051 [empty commit message]
4052
4053 commit 193dbead568fc6582fce99e2b1824f7aac2c66b1
4054 Author: stevenj <stevenj@fftw.org>
4055 Date: Mon Mar 12 23:31:52 2007 -0400
4056
4057 more work on MPI documentation
4058 [empty commit message]
4059
4060 commit 4374a330a301a85267faf67eb71833daeeeefa72
4061 Author: stevenj <stevenj@fftw.org>
4062 Date: Tue Feb 27 13:48:43 2007 -0500
4063
4064 index
4065 [empty commit message]
4066
4067 commit 8dd26fb6008dec917db3ff3f34bbd437b21ba12f
4068 Author: stevenj <stevenj@fftw.org>
4069 Date: Tue Feb 27 13:46:45 2007 -0500
4070
4071 rename "new-data execute" to "new-array execute", since of course you do not need a new array to have new data
4072 [empty commit message]
4073
4074 commit 89ebde1693423d225eb9a50b56dc0a5703d30384
4075 Author: stevenj <stevenj@fftw.org>
4076 Date: Tue Feb 27 13:43:55 2007 -0500
4077
4078 consistency with manual (guru execute -> new-data execute)
4079 [empty commit message]
4080
4081 commit 8cce0d9c67bf193b5cf177483ad0500e71a18a84
4082 Author: stevenj <stevenj@fftw.org>
4083 Date: Tue Feb 27 13:42:24 2007 -0500
4084
4085 texinfo fixes; renamed "guru execute" section to "new-data execute", since previously it seemed to lead to endless confusion with the guru planner API
4086 [empty commit message]
4087
4088 commit 7188f6250c91692fb25976542298900e557d092a
4089 Author: stevenj <stevenj@fftw.org>
4090 Date: Mon Feb 26 18:57:11 2007 -0500
4091
4092 consistently use n0/n1/.. everywhere instead of nx/ny/... (for consistency with d-dimensional case n[0], n[1], ...) ... first start at MPI documentation
4093 [empty commit message]
4094
4095 commit 385b92bc1fa159e0423f02059cd15c93b7444c92
4096 Author: athena <athena@fftw.org>
4097 Date: Sat Mar 10 18:48:05 2007 -0500
4098
4099 Changed C++-style comment into K&R
4100 [empty commit message]
4101
4102 commit 32f8fc24e66030c4e5fdc42b9ec503c50d163435
4103 Author: athena <athena@fftw.org>
4104 Date: Sat Mar 10 18:47:12 2007 -0500
4105
4106 Forgot to add file
4107 [empty commit message]
4108
4109 commit acf05fd6f7275e013b16abcfafbc2db7437145f1
4110 Author: athena <athena@fftw.org>
4111 Date: Sat Mar 10 18:44:39 2007 -0500
4112
4113 Note removal of K7 support.
4114 [empty commit message]
4115
4116 commit e768b9aeeddd3937eacf72bf4bcd1fe6b67681b8
4117 Author: athena <athena@fftw.org>
4118 Date: Sat Mar 10 18:41:52 2007 -0500
4119
4120 Updated manual for MIPS PS
4121 [empty commit message]
4122
4123 commit 56c7d29b2740a24da19b5c022569e60a9bf1abaa
4124 Author: athena <athena@fftw.org>
4125 Date: Sat Mar 10 18:37:07 2007 -0500
4126
4127 Adopted MIPS_PS patches from Codesourcery.
4128 [empty commit message]
4129
4130 commit 117c18b54c2398c74c00d3f375e60e490cfd0a55
4131 Author: athena <athena@fftw.org>
4132 Date: Sun Feb 25 11:34:51 2007 -0500
4133
4134 Incorrect initialization of win32 semaphores
4135 [empty commit message]
4136
4137 commit 835fb99c05fc32b63c000aaa65fa8f098d66d1a1
4138 Author: stevenj <stevenj@fftw.org>
4139 Date: Tue Jan 30 11:43:09 2007 -0500
4140
4141 win32 fixes (I think, still untested)
4142 [empty commit message]
4143
4144 commit 22544bfee3ccdd6810c7f7b9552eb8ec67f58562
4145 Author: stevenj <stevenj@fftw.org>
4146 Date: Fri Jan 19 17:31:47 2007 -0500
4147
4148 message-size heuristic in tranpose-recurse
4149 [empty commit message]
4150
4151 commit c3f9a60853f7d021b8e2e84aca81167fe0742499
4152 Author: athena <athena@fftw.org>
4153 Date: Tue Jan 30 08:53:55 2007 -0500
4154
4155 Threading layer for Win32, completely untested.
4156 [empty commit message]
4157
4158 commit e9103c2fa36af2816f233d39aa4b4e6aad4bccd2
4159 Author: athena <athena@fftw.org>
4160 Date: Mon Jan 29 14:26:30 2007 -0500
4161
4162 Check for EINTR after sem_wait(), as suggested by Chip Salzenberg.
4163 [empty commit message]
4164
4165 commit 719f223ad7ec385208d4d10171374f44d6dcbfa9
4166 Author: athena <athena@fftw.org>
4167 Date: Mon Jan 22 13:58:23 2007 -0500
4168
4169 Force vector recursion by means of a separate function pointer. I need this for Cell.
4170 [empty commit message]
4171
4172 commit 44d62282fe44de7c794ce22ec8a5a3120e71d57f
4173 Author: athena <athena@fftw.org>
4174 Date: Mon Jan 22 09:28:35 2007 -0500
4175
4176 Merge multiplications by twiddle with multiplications by i for faster r2c transforms.
4177 [empty commit message]
4178
4179 commit 37defea1b213e2cb3e5f73fc481e34551ca72e59
4180 Author: athena <athena@fftw.org>
4181 Date: Sun Jan 21 19:02:44 2007 -0500
4182
4183 Disabled vector recursion, too messy.
4184 [empty commit message]
4185
4186 commit f6f7ab5fd044a6ed0b9803c8ea10e176c37137dd
4187 Author: athena <athena@fftw.org>
4188 Date: Sun Jan 21 14:23:35 2007 -0500
4189
4190 Changed heuristics for vector recursion.
4191
4192 As in fftw-3.1, NO_VRECURSE disables vector recursion. As an
4193 exception, however, vector recursion is allowed when the predicate
4194 VRECURSE_ANYWAYP is true. We need some form of vector recursion to
4195 obtain decent plans on Cell, and this solution captures the common
4196 cases without increasing planning time too much.
4197
4198 commit 3612cb7be2fce875627ec720c48a70f9204b42f6
4199 Author: athena <athena@fftw.org>
4200 Date: Sun Dec 17 22:31:17 2006 -0500
4201
4202 fixed hc2c for vector-recursion branch
4203 [empty commit message]
4204
4205 commit af9505fcc532b01fb7d7d4e4df0793f1d58bbedd
4206 Author: athena <athena@fftw.org>
4207 Date: Tue Dec 5 12:52:36 2006 -0500
4208
4209 switch to default vector recursion
4210 [empty commit message]
4211
4212 commit d49ea8d1b8d123219d25c7279a06f0146ff0020b
4213 Author: athena <athena@fftw.org>
4214 Date: Sat Jan 20 23:37:33 2007 -0500
4215
4216 Smarter algorithm for selection of nbuf.
4217 [empty commit message]
4218
4219 commit 983a3c8a18351c2aa89b096d17419c8ecc8ee4eb
4220 Author: athena <athena@fftw.org>
4221 Date: Sat Jan 20 22:15:33 2007 -0500
4222
4223 Increased buffer sizes according to Moore's law.
4224 [empty commit message]
4225
4226 commit 3063d37e369e9b607af9a1870c3e9c67966969d3
4227 Author: stevenj <stevenj@fftw.org>
4228 Date: Fri Jan 19 16:02:00 2007 -0500
4229
4230 fix another MPI synchronization bug -- several more places where cost_hook must be called to synchronized process timings (sigh)
4231 [empty commit message]
4232
4233 commit ed26acb97814e71ca8961385f95d136fb532d3e5
4234 Author: athena <athena@fftw.org>
4235 Date: Fri Jan 19 12:08:07 2007 -0500
4236
4237 Set havewisdom=0 when calling forget_wisdom() in the test program.
4238 [empty commit message]
4239
4240 commit 9c8fc20de720a1f8588230add1f732504a489797
4241 Author: stevenj <stevenj@fftw.org>
4242 Date: Fri Jan 19 10:29:56 2007 -0500
4243
4244 remove redundant check
4245 [empty commit message]
4246
4247 commit ea709110aaac1eac97acdc9e6d6dccb1a319f491
4248 Author: stevenj <stevenj@fftw.org>
4249 Date: Thu Jan 18 22:37:59 2007 -0500
4250
4251 fixed potential (unlikely) bug in wisdom import (triggered when importing impatient wisdom after creating more patient plans, but apparently only for nonstandard configure.c configurations)
4252 [empty commit message]
4253
4254 commit c30ae9a7d180707e86d8a42ce607c6e7717b49e6
4255 Author: stevenj <stevenj@fftw.org>
4256 Date: Thu Jan 18 21:50:14 2007 -0500
4257
4258 added functions to gather/broadcast wisdom for MPI
4259 [empty commit message]
4260
4261 commit a87ad4116c7bf1ac3e28709b2dc7a3f942beba34
4262 Author: stevenj <stevenj@fftw.org>
4263 Date: Thu Jan 11 18:33:17 2007 -0500
4264
4265 whoops, another int/INT bug
4266 [empty commit message]
4267
4268 commit 51ddf455e30f2f8448b94dc40b8a19a8f296067b
4269 Author: stevenj <stevenj@fftw.org>
4270 Date: Thu Jan 11 17:42:24 2007 -0500
4271
4272 whoops, fixed bug in transpose-recurse for r != m
4273 [empty commit message]
4274
4275 commit d2550926efaedd18154f03ae20b464f57ebbc71f
4276 Author: stevenj <stevenj@fftw.org>
4277 Date: Thu Jan 11 17:25:36 2007 -0500
4278
4279 canonicalize mpi-transposed flags by setting TRANSPOSED_IN/OUT where possible
4280 [empty commit message]
4281
4282 commit 0129b3159f5ffd78b1d5e8c99a80e5aac5ae1743
4283 Author: stevenj <stevenj@fftw.org>
4284 Date: Thu Jan 11 17:16:24 2007 -0500
4285
4286 replace transpose-radix2 with much more general transpose-recurse solver
4287 [empty commit message]
4288
4289 commit b5399f6884419e5aac9bd45b2f99a55c722dbae6
4290 Author: stevenj <stevenj@fftw.org>
4291 Date: Wed Jan 10 20:23:48 2007 -0500
4292
4293 rename transpose-inplace to transpose-pairwise, as the algorithm is not restricted to inplace operation
4294 [empty commit message]
4295
4296 commit 1db83491ac2308011e874a0e14867ab82285ca87
4297 Author: stevenj <stevenj@fftw.org>
4298 Date: Wed Jan 10 14:39:08 2007 -0500
4299
4300 whoops, some int/INT bugs
4301 [empty commit message]
4302
4303 commit 7c54c7285fedadb55997fa5032a86721a5d73c00
4304 Author: stevenj <stevenj@fftw.org>
4305 Date: Tue Jan 9 18:50:07 2007 -0500
4306
4307 fix FAQ Makefile for vpath builds
4308 [empty commit message]
4309
4310 commit 1f9ce0c767890a637491a26dc6d671cb48d899e1
4311 Author: athena <athena@fftw.org>
4312 Date: Tue Jan 9 20:22:11 2007 -0500
4313
4314 Missing ``static'' keyword.
4315 [empty commit message]
4316
4317 commit 5719264a71b3d5a725179d6c6f38fc9844f614c7
4318 Author: athena <athena@fftw.org>
4319 Date: Tue Jan 9 20:13:18 2007 -0500
4320
4321 Minor cleanup.
4322 [empty commit message]
4323
4324 commit 31f23769946e8cbd668eae280cf6fa5e0d731cc6
4325 Author: stevenj <stevenj@fftw.org>
4326 Date: Tue Jan 9 00:04:03 2007 -0500
4327
4328 interleave twiddle mults with DFTs (should we use dftw?)
4329 [empty commit message]
4330
4331 commit 5ee274d2bfff3ccfa48faf75d4c5ba4254b6403a
4332 Author: stevenj <stevenj@fftw.org>
4333 Date: Mon Jan 8 18:35:41 2007 -0500
4334
4335 simplified (and somewhat sped up) dft-rank1 by exploiting dft-rank1-bigvec
4336 [empty commit message]
4337
4338 commit 6603c476a81bd7d9a84eeec0106ce87ea7af55eb
4339 Author: stevenj <stevenj@fftw.org>
4340 Date: Sun Jan 7 00:31:31 2007 -0500
4341
4342 rearranged TRANSPOSED format, numerous speedups
4343
4344 Split the TRANSPOSED and non-TRANSPOSED rank-geq2 solvers, and changed
4345 the DFT TRANSPOSED format to be more like fftw2 (both globally and
4346 locally transposed). In general, more emphasis on arranging the data
4347 contiguously for the DFTs, and more flexibility in intermediate
4348 transposed formats. Also disable NO_SLOW when planning transposes,
4349 since otherwise non-square in-place transposes gratuitously put the
4350 planner in SLOW mode.
4351
4352 Currently, dft-rank1-bigvec has 5 variants (or 10, if DESTROY_INPUT).
4353 It looks like only 2 of these are commonly used, so I should probably
4354 add some UGLY tags once I do more benchmarking.
4355
4356 commit 8efa4e83812fc0d52b20291b0ae6b6d863d873b4
4357 Author: stevenj <stevenj@fftw.org>
4358 Date: Thu Jan 4 19:13:17 2007 -0500
4359
4360 add bench_cost_postprocess to prevent deadlocks in mpi-bench
4361 [empty commit message]
4362
4363 commit ad8fbe7775bfe2a214cefd3759493f11d3330532
4364 Author: stevenj <stevenj@fftw.org>
4365 Date: Thu Jan 4 16:46:29 2007 -0500
4366
4367 whoops
4368 [empty commit message]
4369
4370 commit f1d13c4b532737e65ce9f8cdb058875fed16aac7
4371 Author: stevenj <stevenj@fftw.org>
4372 Date: Wed Jan 3 14:23:42 2007 -0500
4373
4374 pass proper pointer types as arguments, so that ACX_PTHREAD still works with C++ and -Werror (thanks to Ewald Arnold for the suggestion)
4375 [empty commit message]
4376
4377 commit 85662c73ef1053f67e55830adb20a7660c7f546e
4378 Author: athena <athena@fftw.org>
4379 Date: Mon Jan 1 19:30:43 2007 -0500
4380
4381 Renamed [io]vs => [io]vs_by_nbuf, which is more appropriate and would have saved me 30mins debugging.
4382 [empty commit message]
4383
4384 commit 011d6fa311a3126c66527f22f76a55acababb0f3
4385 Author: stevenj <stevenj@fftw.org>
4386 Date: Mon Jan 1 18:52:38 2007 -0500
4387
4388 add --with-g77-wrappers option & always include g77 wrappers on GNU systems and/or with gfortran
4389
4390 Upcoming GNU/Linux distros will most likely switch to configuring FFTW
4391 with gfortran by default, since g77 isn't even included with recent gcc
4392 versions. However, we still want to include g77-compatible wrappers in
4393 this case (two underscores) in addition to gfortran wrappers (one
4394 underscore) lest we silently break binary compatibility and provoke
4395 lots of annoying emails.
4396
4397 commit fbb0f99f47d4c09c87cd81573b3532809b44fee1
4398 Author: stevenj <stevenj@fftw.org>
4399 Date: Mon Jan 1 16:48:36 2007 -0500
4400
4401 use AC_HELP_STRING for --disable-fortran
4402 [empty commit message]
4403
4404 commit 4c6880164b7e43be156bd10825038bc5fe83b9b3
4405 Author: stevenj <stevenj@fftw.org>
4406 Date: Mon Jan 1 15:56:12 2007 -0500
4407
4408 terminology
4409 [empty commit message]
4410
4411 commit ae75dc0d2a5fb8286ebadc5fa70a1ff2e17ed7ba
4412 Author: athena <athena@fftw.org>
4413 Date: Sat Dec 30 16:18:35 2006 -0500
4414
4415 Free buffers before calling cldrest.
4416 [empty commit message]
4417
4418 commit 053f45629c9af2bc608086640e6684ef1e76bf0b
4419 Author: athena <athena@fftw.org>
4420 Date: Fri Dec 29 10:52:15 2006 -0500
4421
4422 Removed obsolete code.
4423 [empty commit message]
4424
4425 commit e6ffd09841ff145db9112e4fca774cc3454e1170
4426 Author: athena <athena@fftw.org>
4427 Date: Thu Dec 28 21:37:48 2006 -0500
4428
4429 Attempt to work-around old gcc bugs in a more efficient fashion that does not lose performance on newer gcc's.
4430 [empty commit message]
4431
4432 commit b1d16645f02bf03f9934c6acfe86d41705734cf6
4433 Author: athena <athena@fftw.org>
4434 Date: Thu Dec 28 16:10:33 2006 -0500
4435
4436 Make sure that the speed() input is zero even in paranoid mode.
4437 [empty commit message]
4438
4439 commit bd281a3248526dd660f3cc5db5662a38af6aca70
4440 Author: athena <athena@fftw.org>
4441 Date: Thu Dec 28 11:41:46 2006 -0500
4442
4443 cld0 and cldm problems must be tainted because they are used in a v-loop.
4444 [empty commit message]
4445
4446 commit 762203e35e50a636ebbe34f1bb4a9a72dbdfceae
4447 Author: athena <athena@fftw.org>
4448 Date: Wed Dec 27 17:17:45 2006 -0500
4449
4450 Run paranoid-check in patient mode.
4451 [empty commit message]
4452
4453 commit 13fcf5a8a0073c72a967a6b5c21009dc09b0e63e
4454 Author: athena <athena@fftw.org>
4455 Date: Wed Dec 27 10:51:42 2006 -0500
4456
4457 Fixed incorrect initialization to zero.
4458 [empty commit message]
4459
4460 commit 957a6a68a80da76a90adfd5c50e6570a0102a174
4461 Author: athena <athena@fftw.org>
4462 Date: Wed Dec 27 09:33:02 2006 -0500
4463
4464 Fixed wrong TAINT()
4465 [empty commit message]
4466
4467 commit 131e00d9d05b13400d93ba18bddd02ee53db276a
4468 Author: athena <athena@fftw.org>
4469 Date: Tue Dec 26 22:50:28 2006 -0500
4470
4471 Grrrrr...
4472 [empty commit message]
4473
4474 commit e30b1ccf6d58829fdae52ee072c605802f728761
4475 Author: athena <athena@fftw.org>
4476 Date: Tue Dec 26 22:48:44 2006 -0500
4477
4478 Give up trying to verify rdft2 when vrank=-infinity.
4479 [empty commit message]
4480
4481 commit 50b70cffda5f011216fd43162aa1b6b69f7ef912
4482 Author: athena <athena@fftw.org>
4483 Date: Tue Dec 26 22:31:38 2006 -0500
4484
4485 typo
4486 [empty commit message]
4487
4488 commit 4cdf2b4a16da17795eadebf1a1215e1060f1c573
4489 Author: athena <athena@fftw.org>
4490 Date: Tue Dec 26 21:54:53 2006 -0500
4491
4492 Correctly verify rdft2 when vrank = -infinity.
4493 [empty commit message]
4494
4495 commit a93befe83478f18c088fc474973185660c237154
4496 Author: athena <athena@fftw.org>
4497 Date: Tue Dec 26 21:25:02 2006 -0500
4498
4499 rdft/buffered2.c now generates rdft2 subproblems, not rdft.
4500
4501 The old rdft2->rdft reduction is now in rdft/rdft2-rdft.c
4502 and still does way too much.
4503
4504 commit 994d04b97146dcfb849bc7d83136402cb1a0a070
4505 Author: athena <athena@fftw.org>
4506 Date: Tue Dec 26 14:03:27 2006 -0500
4507
4508 Buffer the input in hc2r problems, as opposed to the output.
4509 [empty commit message]
4510
4511 commit 47f2f5a1335a6cc49ed95c73655fa08a19958606
4512 Author: athena <athena@fftw.org>
4513 Date: Tue Dec 26 10:02:59 2006 -0500
4514
4515 streamlined buffered solvers
4516 [empty commit message]
4517
4518 commit add79ce24b3c20348a098ca15c7431ce95835a54
4519 Author: athena <athena@fftw.org>
4520 Date: Mon Dec 25 16:08:22 2006 -0500
4521
4522 c++ compatibility
4523 [empty commit message]
4524
4525 commit 7caedf2e6196972d2a5c4745ff5badc6856c1b29
4526 Author: athena <athena@fftw.org>
4527 Date: Sun Dec 24 20:27:23 2006 -0500
4528
4529 Gratuitous renaming of directories and files since the old naming was becoming too inconsistent for my taste.
4530 [empty commit message]
4531
4532 commit ab5397b31582ea9372345a7868a165a340a8aefb
4533 Author: athena <athena@fftw.org>
4534 Date: Sun Dec 24 20:11:50 2006 -0500
4535
4536 Fixed another dftw bug (sigh)
4537 [empty commit message]
4538
4539 commit aa1c7cfcbfb0b6bedd716d02d2b84ea86432f03b
4540 Author: athena <athena@fftw.org>
4541 Date: Sun Dec 24 11:48:01 2006 -0500
4542
4543 Removed debugging leftovers.
4544 [empty commit message]
4545
4546 commit 401d4cd84bec4348694725e268ccb78c5cbbb71c
4547 Author: athena <athena@fftw.org>
4548 Date: Sun Dec 24 11:34:17 2006 -0500
4549
4550 Moved dftw-generic* to new dftw protocol.
4551 [empty commit message]
4552
4553 commit 91d2ba6242b230cf1195cf9c8e7d61f2ee226a28
4554 Author: athena <athena@fftw.org>
4555 Date: Sun Dec 24 09:37:19 2006 -0500
4556
4557 Oops
4558 [empty commit message]
4559
4560 commit ef28c24515ebda3edb9fcb0e67682b3e608f7e67
4561 Author: athena <athena@fftw.org>
4562 Date: Sun Dec 24 09:31:46 2006 -0500
4563
4564 Fixed wrong verification of rank-1 rdft2
4565 [empty commit message]
4566
4567 commit a0f01cb9aaaa491d23686acf3ccedc38c47cd8bb
4568 Author: athena <athena@fftw.org>
4569 Date: Sat Dec 23 20:11:29 2006 -0500
4570
4571 minor tweaks
4572 [empty commit message]
4573
4574 commit de3d507c8f454e02a382e0cbf7d9453f04621021
4575 Author: athena <athena@fftw.org>
4576 Date: Sat Dec 23 19:50:03 2006 -0500
4577
4578 Removed obsolete items.
4579 [empty commit message]
4580
4581 commit 67ca9cb9258b4fb320d26445040b6fae0e450594
4582 Author: athena <athena@fftw.org>
4583 Date: Sat Dec 23 17:56:37 2006 -0500
4584
4585 Modified the problem_dftw invocation protocol.
4586
4587 apply() now requires pointers to the beginning of the full array.
4588 Each thread processes a slice mb <= m < me. This protocol is
4589 consistent with the one used in hc2hc, where there is no other choice.
4590
4591 commit 378686a490f47d469eedfb5383cb46f6500cf835
4592 Author: athena <athena@fftw.org>
4593 Date: Sat Dec 23 16:18:25 2006 -0500
4594
4595 typo
4596 [empty commit message]
4597
4598 commit a15a3176f43a12770d66407d77b3fc138f278a53
4599 Author: athena <athena@fftw.org>
4600 Date: Sat Dec 23 16:06:56 2006 -0500
4601
4602 changed hc2hc twiddle storage to be the same as hc2c
4603 [empty commit message]
4604
4605 commit a4d048b7080396fae83e41bd64c4740ba0ab9f7a
4606 Author: athena <athena@fftw.org>
4607 Date: Sat Dec 23 15:16:36 2006 -0500
4608
4609 Allowed extra_iter in dftw-direct. Rationalized twiddle factors in hc2c.
4610 [empty commit message]
4611
4612 commit 4c0bf02653b7e58b218d47e0cf01d719edc1d015
4613 Author: athena <athena@fftw.org>
4614 Date: Sat Dec 23 10:37:11 2006 -0500
4615
4616 Implemented unmentionable hack to use 4-way SIMD with an odd number of
4617 iterations.
4618
4619 commit 992d3ce4a54640d5af4d942ef17eb880f56ec36e
4620 Author: athena <athena@fftw.org>
4621 Date: Fri Dec 22 22:13:30 2006 -0500
4622
4623 altivec support for new codelets
4624 [empty commit message]
4625
4626 commit e0908cfd6fe22ae0544576667bec649b71dcb922
4627 Author: athena <athena@fftw.org>
4628 Date: Fri Dec 22 19:09:15 2006 -0500
4629
4630 fixed incorrect computation of W
4631 [empty commit message]
4632
4633 commit df8bd57748278b92e0975a66062bd71bb5ac2e8d
4634 Author: athena <athena@fftw.org>
4635 Date: Fri Dec 22 18:51:22 2006 -0500
4636
4637 Implemented 4-way simd hc2cdftv
4638
4639 Also eliminated the twiddle_shift hack. A zillion changes dictated
4640 by this choice, which was in turn necessary for the hc2cdftv thing
4641 to work.
4642
4643 commit 7bac8d1f715f737bfed8742521fe60d5dec6b963
4644 Author: athena <athena@fftw.org>
4645 Date: Fri Dec 22 08:45:46 2006 -0500
4646
4647 Fixed verification of rdft2 problems with new format.
4648 [empty commit message]
4649
4650 commit c18f29a56027a5e08aa164530d10ff55c1950170
4651 Author: athena <athena@fftw.org>
4652 Date: Fri Dec 22 00:05:59 2006 -0500
4653
4654 Added file
4655 [empty commit message]
4656
4657 commit aafef0ef88f37d8b0e63a31afec168dad67a29f4
4658 Author: athena <athena@fftw.org>
4659 Date: Fri Dec 22 00:02:50 2006 -0500
4660
4661 Hmm, previous commit did not work
4662 [empty commit message]
4663
4664 commit 21c810018e7f4993ebadf9a05682f3bd0a6d2c8f
4665 Author: athena <athena@fftw.org>
4666 Date: Thu Dec 21 23:58:33 2006 -0500
4667
4668 Added SIMD r2cdft codelets.
4669 [empty commit message]
4670
4671 commit fe2f5075f1443d522b445b31027cacb32e8add18
4672 Author: athena <athena@fftw.org>
4673 Date: Thu Dec 21 21:19:21 2006 -0500
4674
4675 Bug in buffering, grrr...
4676 [empty commit message]
4677
4678 commit 32f34cf494321ef860f20924b84df527d63e0ce0
4679 Author: athena <athena@fftw.org>
4680 Date: Thu Dec 21 20:58:14 2006 -0500
4681
4682 Oops, memory leak.
4683 [empty commit message]
4684
4685 commit 179cfb2f9ddf45916458e2dfdd0e0adbcf762044
4686 Author: athena <athena@fftw.org>
4687 Date: Thu Dec 21 17:12:31 2006 -0500
4688
4689 minor changes, cleanup.
4690 [empty commit message]
4691
4692 commit 2505062c2e9ded3822b01c123e82033d37968917
4693 Author: athena <athena@fftw.org>
4694 Date: Wed Dec 20 22:09:28 2006 -0500
4695
4696 Unified hc2hc-direct, hc2hc-directbuf. Cleanup.
4697 [empty commit message]
4698
4699 commit 5f80c36202acc746148c007e394a4260457f1f60
4700 Author: athena <athena@fftw.org>
4701 Date: Wed Dec 20 17:55:56 2006 -0500
4702
4703 removed obsolete rdft2-radix2
4704 [empty commit message]
4705
4706 commit 18d4fddebb71049478d41152af043e33ed90d014
4707 Author: athena <athena@fftw.org>
4708 Date: Wed Dec 20 17:51:20 2006 -0500
4709
4710 implemented reduction rdft2->dft
4711 [empty commit message]
4712
4713 commit f84c7e67e6c77dc3b8ef4c0703277aa884852ab0
4714 Author: athena <athena@fftw.org>
4715 Date: Wed Dec 20 09:29:39 2006 -0500
4716
4717 Implemented buffered direct-r2c, direct-hc2c.
4718 Also, removed some old cruft:
4719
4720 * okp() functions were never used and a pain to maintain---now they
4721 are gone.
4722
4723 * ``m'' in hc2hc and hc2c codelets is now the number of iterations,
4724 not the ``logical'' m.
4725
4726 commit de904f19b230a114ead0b9580646689ab8519a29
4727 Author: stevenj <stevenj@fftw.org>
4728 Date: Tue Dec 19 17:07:04 2006 -0500
4729
4730 added memcpy-loop rank0 solver (it makes a 5-20% difference for transposes of large tuples)
4731 [empty commit message]
4732
4733 commit d91736d4442e92910eabaa0e923d0cda833213cc
4734 Author: stevenj <stevenj@fftw.org>
4735 Date: Tue Dec 19 16:15:54 2006 -0500
4736
4737 new variable to disable libbench2's problem allocation during speed benchmarking (to benchmark MPI transforms where the array does not fit into the memory of a single process)
4738 [empty commit message]
4739
4740 commit 8c1f9aabc4cd60f5509b287de2850c2767d07fd8
4741 Author: stevenj <stevenj@fftw.org>
4742 Date: Tue Dec 19 14:55:08 2006 -0500
4743
4744 allow transpose-inplace to use input as scratch for DESTROY_INPUT plans (to avoid non-square in-place transpositions) ... on supersgj, the planner often prefers transpose-inplace to transpose-alltoall in this case (apparently MPI_Alltoall in LAM MPI isn't that great)
4745 [empty commit message]
4746
4747 commit 762d58ccde3a29468b9b522c8426ba6f48f0e74b
4748 Author: athena <athena@fftw.org>
4749 Date: Tue Dec 19 17:07:14 2006 -0500
4750
4751 For some reason HB2 codelets were not generated.
4752 [empty commit message]
4753
4754 commit 928be47a01cfc332b729fd60775949d699d60795
4755 Author: athena <athena@fftw.org>
4756 Date: Tue Dec 19 15:12:39 2006 -0500
4757
4758 split rdft/direct.c into direct-r2r and direct-r2c, since the file was getting out of control.
4759 [empty commit message]
4760
4761 commit cf38c33836313129b7e98c192434dae261777810
4762 Author: stevenj <stevenj@fftw.org>
4763 Date: Tue Dec 19 02:59:35 2006 -0500
4764
4765 added dft-rank1 solver - MPI now supports 1d complex DFTs!
4766 [empty commit message]
4767
4768 commit 061b341f302122d768db24c7aab043ade2e2dbb8
4769 Author: stevenj <stevenj@fftw.org>
4770 Date: Tue Dec 19 01:27:20 2006 -0500
4771
4772 fftw_flops must call cost_hook directly; iestimate_cost always uses COST_MAX
4773 [empty commit message]
4774
4775 commit ebf61714b949775e7004b86b828112ae82b69726
4776 Author: stevenj <stevenj@fftw.org>
4777 Date: Tue Dec 19 01:16:54 2006 -0500
4778
4779 fftw_flops and fftw_estimate_cost must now be called from every process, to prevent deadlocks in the MPI code (since they sum/max the cost over all processes)
4780 [empty commit message]
4781
4782 commit bea9d02f1cc9edd02ad6d30a11795bc11ff64d1a
4783 Author: stevenj <stevenj@fftw.org>
4784 Date: Tue Dec 19 00:55:34 2006 -0500
4785
4786 whoops, typo in assert
4787 [empty commit message]
4788
4789 commit aee20bd2d616611547ef7826e5d30bf033994736
4790 Author: stevenj <stevenj@fftw.org>
4791 Date: Tue Dec 19 00:51:07 2006 -0500
4792
4793 remove multiplication by FFT_SIGN
4794 [empty commit message]
4795
4796 commit 8583a34cfe3ae51cd835c45d9035d80a0f944b52
4797 Author: stevenj <stevenj@fftw.org>
4798 Date: Mon Dec 18 22:51:45 2006 -0500
4799
4800 need to synchronize ESTIMATE costs in MPI planner, and sum ESTIMATE costs for flop reporting: generalize measure_hook to cost_hook(..., {COST_SUM, COST_MAX})
4801 [empty commit message]
4802
4803 commit 97ebd8fa0c58fd24345e3386b28f1c7abba8cb8d
4804 Author: stevenj <stevenj@fftw.org>
4805 Date: Mon Dec 18 15:36:15 2006 -0500
4806
4807 previous patch slowed down transpose-alltoall when TRANSPOSED_IN and DESTROY_INPUT; now allow planner to choose old behavior in this case
4808 [empty commit message]
4809
4810 commit 045a9c7e5b7ac5d91eb7567f34a2b4e307adeeeb
4811 Author: stevenj <stevenj@fftw.org>
4812 Date: Mon Dec 18 15:15:39 2006 -0500
4813
4814 transpose-alltoall doesn't require input to be destroyed if TRANSPOSED_IN is set
4815 [empty commit message]
4816
4817 commit 43ab77408bc3d76457a0e89ad02aec84f4949bf3
4818 Author: athena <athena@fftw.org>
4819 Date: Mon Dec 18 17:41:25 2006 -0500
4820
4821 Added t2-style hc2c codelets, fixed typos.
4822 [empty commit message]
4823
4824 commit 7e431baa8e5da11432db111e201a4da9b19d6f49
4825 Author: athena <athena@fftw.org>
4826 Date: Mon Dec 18 16:02:42 2006 -0500
4827
4828 Renamed certain variables to avoid calling an output stride `is'.
4829 [empty commit message]
4830
4831 commit 141dcad10c248a45577b80c26d1e396530597d3b
4832 Author: athena <athena@fftw.org>
4833 Date: Mon Dec 18 15:54:43 2006 -0500
4834
4835 Oops---wrong stride
4836 [empty commit message]
4837
4838 commit 23386506c8294fc1d61bc7cfcedb0bebc4e8fe60
4839 Author: athena <athena@fftw.org>
4840 Date: Mon Dec 18 14:59:16 2006 -0500
4841
4842 Oops, forgot to add file
4843 [empty commit message]
4844
4845 commit 8e69f0617fe6f90d09c23d4ce8f125f1822eb363
4846 Author: athena <athena@fftw.org>
4847 Date: Mon Dec 18 14:17:02 2006 -0500
4848
4849 Renamed r2hc/hc2r codelets to r2c
4850 After the recent changes, r2hc/hc2r codelets became rdft2
4851 problems, so I renamed them accordingly to r2cf/r2cb.
4852 Codelet parameters are now a real array and a complex array, instead
4853 of an input array and an output array, and forward and backward
4854 codelets have the same type, which removes some clutter from the rdft
4855 code.
4856
4857 commit 91b8d21aa599744cf6f9bb2141bcd4193fcdb957
4858 Author: athena <athena@fftw.org>
4859 Date: Mon Dec 18 10:48:07 2006 -0500
4860
4861 Implemented backward radix-2k rdft2.
4862 [empty commit message]
4863
4864 commit c91a0bf1ed85466bcb46d2f55128399855c90f06
4865 Author: stevenj <stevenj@fftw.org>
4866 Date: Mon Dec 18 13:56:09 2006 -0500
4867
4868 move extract_reim into kernel, since it is used by internal MPI stuff and not just in the API code any more
4869 [empty commit message]
4870
4871 commit ab0e79e7a1319598924b4d434f1a0ce57bc58a43
4872 Author: athena <athena@fftw.org>
4873 Date: Mon Dec 18 08:40:14 2006 -0500
4874
4875 Do not check r1==cr unless rnk>0
4876 [empty commit message]
4877
4878 commit 4a203a4d39cb5b02d1f6d83f2f525a6a6c0cf065
4879 Author: athena <athena@fftw.org>
4880 Date: Sun Dec 17 21:03:50 2006 -0500
4881
4882 Implemented radix-2k RDFT2, forward only for now
4883 [empty commit message]
4884
4885 commit 6d86c9dd27b6fbfb45faf91980565df40ec8d825
4886 Author: stevenj <stevenj@fftw.org>
4887 Date: Mon Dec 18 01:23:45 2006 -0500
4888
4889 separate TRANSPOSED/SCRAMBLED flags internally (this is required so that dft-rank1-bigvec and the future dft-rank1 won't have incompatible SCRAMBLED formats)
4890 [empty commit message]
4891
4892 commit 7920d86807a6fe9829cca1cb4e633ab3156c8b38
4893 Author: stevenj <stevenj@fftw.org>
4894 Date: Mon Dec 18 01:02:27 2006 -0500
4895
4896 ops_add -> ops_add2 where possible, to shrink code
4897 [empty commit message]
4898
4899 commit 81d5eddab81d4c0265863e1da6302b63fb1a9a80
4900 Author: stevenj <stevenj@fftw.org>
4901 Date: Mon Dec 18 00:43:02 2006 -0500
4902
4903 added dft-rank1-bigvec solver (easy case for 1d parallel transforms)
4904 [empty commit message]
4905
4906 commit bf7a77840dcbe0b1d5a8a1d7568877f093299e69
4907 Author: stevenj <stevenj@fftw.org>
4908 Date: Sun Dec 17 20:42:21 2006 -0500
4909
4910 rewrote MPI stuff to use dtensor data structure
4911
4912 A dtensor is an ordered tuple of triplets (n, ib, ob) giving the size of
4913 a dimension (n) and its input and output block sizes of a distributed
4914 row-major multi-dimensional array. An MPI DFT (etc.) is now specified
4915 in terms of dtensors, which provide a much more flexible data layout.
4916
4917 For example, we can now describe multidimensional block distributions,
4918 which are important if the number of processors is greater than the
4919 size of any given dimension. Currently, we only have solvers for
4920 1d slab distributions, and this is all that is supported in the basic
4921 and advanced APIs. The guru API allows one to specify more general
4922 distributions, however, which will be useful when/if we have solvers
4923 for this case.
4924
4925 We now also don't need a TRANSPOSED flag, at least internally, since
4926 TRANSPOSED multi-dimensional DFT plans just correspond to dtensors
4927 where the input and output block distributions are different.
4928
4929 Other changes include the use of the XM(foo) macro for X(mpi_foo).
4930
4931 commit c9e4b997dd8cd38b753a8c40fb0004ab07124ca7
4932 Author: athena <athena@fftw.org>
4933 Date: Fri Dec 15 16:01:23 2006 -0500
4934
4935 Distinguished mutexes from semaphores.
4936 The distinction is useful because the linux implementation of
4937 sem_post() in unnecessarily slow when semaphores are used for mutual
4938 exclusion. This change made spinlocks messier to implement, so I
4939 excised them.
4940
4941 commit 352252ac74f50d01ae2c996f0072533f84c9a043
4942 Author: athena <athena@fftw.org>
4943 Date: Fri Dec 15 12:46:11 2006 -0500
4944
4945 Use posix semaphores where available.
4946 Paranoid declaration of all shared variables as ``volatile''. Paranoid
4947 initialization of all shared variables within locks.
4948
4949 commit 3364aa89b74e5e6a3514c653dc4ef4ebeebddae4
4950 Author: Matteo Frigo <athena@fftw.org>
4951 Date: Wed Dec 13 20:12:13 2006 -0500
4952
4953 paranoia
4954 [empty commit message]
4955
4956 commit 0be1cd7e754cf3b9550bcf6f60c2b31643d4512a
4957 Author: stevenj <stevenj@fftw.org>
4958 Date: Tue Dec 12 17:28:13 2006 -0500
4959
4960 punt on detecting unsolvable rdft2 problems; make r==iio rdft2 problems unsolvable, since it doesn't look like we've consistently checked for this case and it's not clear why we would want to support it (it was also not documented in the manual)
4961 [empty commit message]
4962
4963 commit 8f3194d212eeb8c2382a60a4db59ff1cf935faef
4964 Author: athena <athena@fftw.org>
4965 Date: Sat Dec 9 12:14:13 2006 -0500
4966
4967 Obey stupid const rules
4968 [empty commit message]
4969
4970 commit 1f7938759fd6c3a52293ffeffea1961692a22e72
4971 Author: stevenj <stevenj@fftw.org>
4972 Date: Fri Dec 8 18:21:50 2006 -0500
4973
4974 added unsolvable check for rdft2 problem
4975
4976 An in-place rdft2 problem is ill-formed if the real data, including the
4977 extra "padding" elements, do not coincide with the complex data.
4978
4979 CHANGE: the new code considers all in-place split r2c and c2r problems
4980 to be ill-formed. Previously, these could be done, but only if the
4981 entire multi-dimensional array fit into the buffer, which is kind of
4982 stupid. I'm not sure it's worth it to even try to support the
4983 split in-place r2c case.
4984
4985 commit e5241fedc1b2a9be448809abfc8b812e07598801
4986 Author: stevenj <stevenj@fftw.org>
4987 Date: Fri Dec 8 13:47:53 2006 -0500
4988
4989 check in-placeness after joining taints
4990 [empty commit message]
4991
4992 commit b7a9db50bbf343d80e6b5d0cbaae7cd4d8653f1e
4993 Author: athena <athena@fftw.org>
4994 Date: Fri Dec 8 13:43:44 2006 -0500
4995
4996 Grrr... paranoid-check was not testing in exhaustive mode
4997 [empty commit message]
4998
4999 commit d34bae7a5b89e8298450b98759be43f22e7c99d3
5000 Author: Matteo Frigo <athena@fftw.org>
5001 Date: Fri Dec 8 10:00:30 2006 -0500
5002
5003 Implemented PROBLEM_UNSOLVABLE.
5004 In-place DFT and RDFT problems with inconsistent I/O strides are
5005 now unsolvable, and we don't check for them any longer in solvers.
5006
5007 While I was at it, declared all problem pointers to be ``const''
5008 for extra safety.
5009
5010 commit db6e8b81d60e8cbe9f49ac3035a5151759afc88b
5011 Author: Matteo Frigo <athena@fftw.org>
5012 Date: Thu Dec 7 20:13:46 2006 -0500
5013
5014 Avoid qsort'ing one element.
5015 [empty commit message]
5016
5017 commit a6d29bce88258799bb4bc6ee27c36aa5ccf4cbcd
5018 Author: Matteo Frigo <athena@fftw.org>
5019 Date: Thu Dec 7 18:25:47 2006 -0500
5020
5021 In-place vrank>=1 is now applicable only if the problem is really in-place.
5022 [empty commit message]
5023
5024 commit f0e0bda2dacfef167a5387c26d0c5631b59aaa0c
5025 Author: athena <athena@fftw.org>
5026 Date: Tue Dec 5 12:21:38 2006 -0500
5027
5028 unused variable
5029 [empty commit message]
5030
5031 commit 07dc6817f4991f8690c6b6952bc3879c4712a624
5032 Author: Matteo Frigo <athena@fftw.org>
5033 Date: Sun Dec 3 19:16:33 2006 -0500
5034
5035 Removed CVS $Id$ everywhere, since darcs does not update them.
5036 [empty commit message]
5037
5038 commit 2cf2355d9987a09710a6b6b345cf232abf8c1a8b
5039 Author: Matteo Frigo <athena@fftw.org>
5040 Date: Sun Dec 3 16:11:17 2006 -0500
5041
5042 generalized dftw to encompass q codelets. As a side effect, q codelets are now threaded.
5043 [empty commit message]
5044
5045 commit 942c7b34d673282b52aacbb51237b38f3ffef3f5
5046 Author: stevenj <stevenj@fftw.org>
5047 Date: Sat Nov 25 16:34:38 2006 -0500
5048
5049 add missing __declspec attribute to threads API functions when compiling for Windows (thanks to Robert O. Morris for the bug report)
5050 [empty commit message]
5051
5052 commit 8c4b9a9a79e7fdbbd7eab18f4aac4ac94c8ce2cb
5053 Author: stevenj <stevenj@fftw.org>
5054 Date: Mon Nov 20 17:39:20 2006 -0500
5055
5056 add AC_SUBST to AX_OPENMP, thanks to Sebastien Maret for the suggestion
5057 [empty commit message]
5058
5059 commit 02d141e6157d606dce0bf146248958313ea19466
5060 Author: stevenj <stevenj@fftw.org>
5061 Date: Mon Oct 16 23:02:29 2006 -0400
5062
5063 not gcc bug for MIPS (thanks to Jonathan Day)
5064 [empty commit message]
5065
5066 commit 87fc8a66ef9cf8161a4cf23c0580f91ec9e86e25
5067 Author: stevenj <stevenj@fftw.org>
5068 Date: Sat Sep 23 17:52:36 2006 -0400
5069
5070 in maintainer/debug mode, don't modify CFLAGS if they were explicitly set (-pedantic seems to cause problems with LAM's mpicc, so I need a way to override)
5071 [empty commit message]
5072
5073 commit d1ebd06376db08bd5afecbe45d6059f60f7cd09d
5074 Author: athena <athena@fftw.org>
5075 Date: Wed Nov 22 18:14:47 2006 -0500
5076
5077 Removed obsolete comment.
5078 [empty commit message]
5079
5080 commit b7bdd19e3b444a9c0ce68991739644a0fd4d9166
5081 Author: athena <athena@fftw.org>
5082 Date: Sun Nov 19 11:21:44 2006 -0500
5083
5084 Use p->v when comparing TW_FULL fields.
5085 [empty commit message]
5086
5087 commit fd6481c30c72bf15c3316dd7db6664e5b801160e
5088 Author: athena <athena@fftw.org>
5089 Date: Thu Nov 16 14:49:05 2006 -0500
5090
5091 removed useless definition
5092 [empty commit message]
5093
5094 commit d161dc974c19cf43addd4b6cb516ae6b770827e7
5095 Author: athena <athena@fftw.org>
5096 Date: Mon Nov 13 09:18:32 2006 -0500
5097
5098 paranoid avoidance of integer overflows
5099 [empty commit message]
5100
5101 commit e5a1cce0ead5ae9d73c2c38c48e66c3bf059a874
5102 Author: athena <athena@fftw.org>
5103 Date: Mon Nov 13 09:00:11 2006 -0500
5104
5105 avoid potential overflows in cycle counters
5106 At the suggestion of Alex Cichowski, convert all ticks
5107 to double before operating on them, to avoid potential
5108 signed/unsigned confusion and integer overflow.
5109
5110 commit 98e4c9b9751d26d0adecc56634cc77e5689357bc
5111 Author: Matteo Frigo <athena@fftw.org>
5112 Date: Sun Nov 5 09:00:52 2006 -0500
5113
5114 Removed unused struct field
5115 [empty commit message]
5116
5117 commit 303349e158e3fdf0231790fe32a6831aa671f895
5118 Author: Matteo Frigo <athena@fftw.org>
5119 Date: Sat Nov 4 09:43:13 2006 -0500
5120
5121 use pthread condition variables instead of semaphores
5122 Condition variables are more likely to be portable everywhere, and
5123 somehow they appear to introduce less overhead at least on my
5124 linux box.
5125
5126 commit eb7fb1efca70242568f0e74266ea88e8c9a45eff
5127 Author: Matteo Frigo <athena@fftw.org>
5128 Date: Tue Oct 31 20:45:24 2006 -0500
5129
5130 Imprecise help message.
5131 [empty commit message]
5132
5133 commit 08bdb758c515972281738ca7567e38d3aeb05cf4
5134 Author: athena <athena@fftw.org>
5135 Date: Mon Oct 30 20:13:35 2006 -0500
5136
5137 Experimental implementation of spinlocks.
5138 This patch implements spinlocks via a semi-portable hack, and adds
5139 the -ospinlocks option to the bench program so that we can play with them.
5140
5141 commit fe239f5afbec9a3868f4330849cfe3d6dccb54b0
5142 Author: athena <athena@fftw.org>
5143 Date: Thu Oct 26 22:29:18 2006 -0400
5144
5145 Updated manual for new openmp configure options.
5146 [empty commit message]
5147
5148 commit 9809db57ce3f7e945e7bf04105a3fce74cdf7f47
5149 Author: athena <athena@fftw.org>
5150 Date: Thu Oct 26 21:52:39 2006 -0400
5151
5152 Added back openmp.
5153 Rationalized threads naming conventions:
5154
5155 * threads explicitly managed by us are enabled by --enable-threads,
5156 predicated on HAVE_THREADS, etc.
5157 * openmp is enabled by --enable-openmp, predicated on HAVE_OPENMP, etc.
5158 * SMP denotes either THREADS or OPENMP.
5159
5160 commit 22cd21b038b6dd972444d5b00a6ebd00a932aa7f
5161 Author: athena <athena@fftw.org>
5162 Date: Mon Oct 23 20:14:31 2006 -0400
5163
5164 different thread protocols
5165 [empty commit message]
5166
5167 commit f61da0e9c9db3c22dfd61c108f5f65bc4afe78bd
5168 Author: athena <athena@fftw.org>
5169 Date: Sun Oct 22 14:49:32 2006 -0400
5170
5171 fix memory leak
5172 Added pthread_attr_destroy to avoid memory leak.
5173
5174 commit 6f6532928b29c6ac7599424c9dc834c41fc7fcf0
5175 Author: athena <athena@fftw.org>
5176 Date: Sun Oct 22 14:23:30 2006 -0400
5177
5178 Experimental new pthread implementation that recycles threads.
5179 [empty commit message]
5180
5181 commit e8c76bbab164fd6ad784bcfd9ec0fe5f002bfb43
5182 Author: athena <athena@fftw.org>
5183 Date: Tue Oct 24 23:28:10 2006 -0400
5184
5185 switched buddies
5186 Switched order of buddies in rdft2 rank-geq2 for consistency
5187 with analogous dft and rdft solvers. Furthermore, this change reduces
5188 the MEASURE planning time for rank == 3.
5189
5190 commit 3e13c85d1651dfc698143631f47a45b4c3947d12
5191 Author: Matteo Frigo <athena@fftw.org>
5192 Date: Sat Oct 21 10:10:00 2006 -0400
5193
5194 Typo.
5195 [empty commit message]
5196
5197 commit 7151038f7642b5ca050afb037fd91719a6f733b8
5198 Author: Matteo Frigo <athena@fftw.org>
5199 Date: Sat Oct 21 09:56:50 2006 -0400
5200
5201 Out of place is the default. Thanks to Kirk Kern for pointing this out.
5202 [empty commit message]
5203
5204 commit 281e20106cf076681392cb66050e11d2ac758dd2
5205 Author: stevenj <stevenj@fftw.org>
5206 Date: Fri Sep 29 01:36:11 2006 -0400
5207
5208 rename "test" to "tst", since a user (Igor Levicki) reports that "test" is a reserved words in some x86 assemblers
5209 [empty commit message]
5210
5211 commit 859e712b9c8051f6a1fb5a6500472042f194712f
5212 Author: Matteo Frigo <athena@fftw.org>
5213 Date: Tue Sep 26 09:01:08 2006 -0400
5214
5215 Stylistic change.
5216 [empty commit message]
5217
5218 commit d024e575f98dc4a3452b9e0d5115a6650a7bf951
5219 Author: athena <athena@fftw.org>
5220 Date: Tue Sep 26 08:45:37 2006 -0400
5221
5222 Do not set tmin=1e10, since a large FFT may take longer than that.
5223 [empty commit message]
5224
5225 commit f31fffd32e9497675200784973ee8420ef3d60db
5226 Author: athena <athena@fftw.org>
5227 Date: Sat Sep 23 22:07:10 2006 -0400
5228
5229 Disable certain gcc optimizations.
5230 When PRECOMPUTE_ARRAY_INDICES is #define'd, array indices have the
5231 form array[stride[k]] for compile-time constant k. Apparently new
5232 gcc's copy stride[k] onto the stack before the codelet loop, which is
5233 an idiotic optimization if ever there was one. This patch confuses
5234 gcc enough to prevent this optimization.
5235
5236 commit 0cc1f20ac1bbadb2e82d6465941755a9754d69d7
5237 Author: stevenj <stevenj@fftw.org>
5238 Date: Sat Sep 23 13:02:58 2006 -0400
5239
5240 re-enable TOMS algorithm - it is the best for large vector lengths, since for such sizes the cache line is not an issue and the bookkeeping overhead is negligible
5241 [empty commit message]
5242
5243 commit 458c7ee2e058d2cbe6fc90d23780b59bb29fbb52
5244 Author: stevenj <stevenj@fftw.org>
5245 Date: Thu Sep 21 15:40:15 2006 -0400
5246
5247 add measure_hook so that MPI can synchronize timing measurements (otherwise different processors might end up with different MPI plans, yikes!)
5248 [empty commit message]
5249
5250 commit 9fa6c37e2e09ea6bd226bde9a62f95d7c66f33bb
5251 Author: stevenj <stevenj@fftw.org>
5252 Date: Tue Sep 19 21:26:19 2006 -0400
5253
5254 added O(p log p) transpose algorithm (radix 2)
5255 [empty commit message]
5256
5257 commit 1316689f96089a3b53799a3733d15add7c2f267c
5258 Author: stevenj <stevenj@fftw.org>
5259 Date: Tue Sep 19 21:05:09 2006 -0400
5260
5261 comments
5262 [empty commit message]
5263
5264 commit c4b69d82b2c7de2fa2a963e27e3e498544c80262
5265 Author: stevenj <stevenj@fftw.org>
5266 Date: Tue Sep 19 19:54:58 2006 -0400
5267
5268 whoops
5269 [empty commit message]
5270
5271 commit 19265283619d376581c5815adab98a2b51fb0cb2
5272 Author: stevenj <stevenj@fftw.org>
5273 Date: Tue Sep 19 19:49:01 2006 -0400
5274
5275 synchronize planning so that if one process fails to create a plan then all of them do.
5276 [empty commit message]
5277
5278 commit e1b970b70562528b08d665ad2f7a17ee31f23e47
5279 Author: stevenj <stevenj@fftw.org>
5280 Date: Tue Sep 19 18:17:38 2006 -0400
5281
5282 call MPI_Alltoall instead of MPI_Alltoallv for equal-blocks case, in case MPI implementation has special optimizations for the common case of equal sizes
5283 [empty commit message]
5284
5285 commit 3adcd54e6a54928afc2c58b7aab4bc75664be1d1
5286 Author: stevenj <stevenj@fftw.org>
5287 Date: Tue Sep 19 12:07:35 2006 -0400
5288
5289 whoops
5290 [empty commit message]
5291
5292 commit 31b25a3bccaa0a8290dab5010199da8a5fec619d
5293 Author: stevenj <stevenj@fftw.org>
5294 Date: Tue Sep 19 02:20:06 2006 -0400
5295
5296 typo in comment
5297 [empty commit message]
5298
5299 commit 519395bdb6ed85a2f18ba95bc82a68b2d42ddaae
5300 Author: stevenj <stevenj@fftw.org>
5301 Date: Tue Sep 19 01:58:55 2006 -0400
5302
5303 more filename simplifications
5304 [empty commit message]
5305
5306 commit 2870207d79654158ecf7ae1d68d37382be5e39da
5307 Author: stevenj <stevenj@fftw.org>
5308 Date: Tue Sep 19 01:49:52 2006 -0400
5309
5310 canonicalize file names (hyphens, not underscores)
5311 [empty commit message]
5312
5313 commit 41c88ac7e2cc2df2ff894c7223d55a41800b4c98
5314 Author: stevenj <stevenj@fftw.org>
5315 Date: Tue Sep 19 01:34:07 2006 -0400
5316
5317 add mpi-dft-serial
5318 [empty commit message]
5319
5320 commit cbf1beef8656c2b0bc205c4787e6986cf32b405a
5321 Author: stevenj <stevenj@fftw.org>
5322 Date: Tue Sep 19 01:21:47 2006 -0400
5323
5324 silence warnings
5325 [empty commit message]
5326
5327 commit ff7df52317b96acc1966b2d5920e46a3e368bded
5328 Author: stevenj <stevenj@fftw.org>
5329 Date: Tue Sep 19 00:31:59 2006 -0400
5330
5331 make "t" problem semantics match FFTW_MPI_TRANSPOSED
5332 [empty commit message]
5333
5334 commit 694244ed8ede7153eca565e43ff553a26db39b8f
5335 Author: stevenj <stevenj@fftw.org>
5336 Date: Mon Sep 18 23:50:43 2006 -0400
5337
5338 whoops, fixed backwards mpi_dft
5339 [empty commit message]
5340
5341 commit a36a49ee7709c1f3010f32039814f655e502850a
5342 Author: stevenj <stevenj@fftw.org>
5343 Date: Mon Sep 18 22:26:31 2006 -0400
5344
5345 initial stab at rank-geq2 mpi-dft; seems to be mostly working
5346 [empty commit message]
5347
5348 commit c8e0a65f63c0d8eb6a148cee255c5aca2ff4c68b
5349 Author: stevenj <stevenj@fftw.org>
5350 Date: Sun Sep 17 13:41:32 2006 -0400
5351
5352 support SCRAMBLED_OUT in alltoall transpose
5353 [empty commit message]
5354
5355 commit 72887de15eec06aeb7426d6a7cc527fc171821b0
5356 Author: stevenj <stevenj@fftw.org>
5357 Date: Sun Sep 17 12:34:30 2006 -0400
5358
5359 skeleton of future support for block-cyclic
5360 [empty commit message]
5361
5362 commit 62b562d1df02409e10395385348f56318e46a2e7
5363 Author: stevenj <stevenj@fftw.org>
5364 Date: Sun Sep 17 12:11:19 2006 -0400
5365
5366 test program now checks scrambled in/out via -obflag=28/29
5367 [empty commit message]
5368
5369 commit b3ef0c11ca26e02875c29eb154f1a5b9bf386ad5
5370 Author: stevenj <stevenj@fftw.org>
5371 Date: Sun Sep 17 11:58:36 2006 -0400
5372
5373 added -obflag to make it easier to set high-order bits
5374 [empty commit message]
5375
5376 commit a4cbe985fe508661ccf587b5331e62b0a6526289
5377 Author: stevenj <stevenj@fftw.org>
5378 Date: Sun Sep 17 01:30:51 2006 -0400
5379
5380 use proper child plans for 2nd transpose in transpose_alltoall; implement opcount in transpose_inplace
5381 [empty commit message]
5382
5383 commit ab2dd6cfd9903487e3ac3cf9401c9a1f35de4862
5384 Author: stevenj <stevenj@fftw.org>
5385 Date: Sun Sep 17 01:08:01 2006 -0400
5386
5387 fix in test program for transposes of vectors -- transpose routines seem to completely work now (except for scrambled in/out, which is untested)
5388 [empty commit message]
5389
5390 commit aa5eecbf266020f2e2788bba862c13f6575d1ce8
5391 Author: stevenj <stevenj@fftw.org>
5392 Date: Sun Sep 17 01:01:16 2006 -0400
5393
5394 fixed bug in transpose_alltoall for unequal blocks
5395 [empty commit message]
5396
5397 commit 202f232a54abc2cb04e0a3d0d32bdb727c306c4e
5398 Author: stevenj <stevenj@fftw.org>
5399 Date: Sat Sep 16 15:29:46 2006 -0400
5400
5401 correctly handle cld2rest
5402 [empty commit message]
5403
5404 commit 36668c0dd144f2bc2f6b2bf1f10eb1677593b9c6
5405 Author: stevenj <stevenj@fftw.org>
5406 Date: Sat Sep 16 15:29:31 2006 -0400
5407
5408 some debugging code and other fixes
5409 [empty commit message]
5410
5411 commit 66dcf1f5c673fd16b2f0f88988c4aaf388eeaf27
5412 Author: stevenj <stevenj@fftw.org>
5413 Date: Sat Sep 16 14:54:30 2006 -0400
5414
5415 whoops, forgot to check in mpi_bench.c file
5416 [empty commit message]
5417
5418 commit 3d96f316225934ef4485bcc2432314b89292914b
5419 Author: stevenj <stevenj@fftw.org>
5420 Date: Sat Sep 16 14:54:02 2006 -0400
5421
5422 added bench_exit routine so that it can be overridden (by MPI_Abort) if needed
5423 [empty commit message]
5424
5425 commit b14337a969f6fee88bda25464c7ef7c0e56b5c00
5426 Author: stevenj <stevenj@fftw.org>
5427 Date: Sat Sep 16 14:52:56 2006 -0400
5428
5429 bug fix in mpi_transpose_inplace for case where some processors are idle
5430 [empty commit message]
5431
5432 commit 43fd42786f54710bffe85528beae2fff76e4a58e
5433 Author: stevenj <stevenj@fftw.org>
5434 Date: Fri Sep 15 18:47:13 2006 -0400
5435
5436 allow vecloop for sz->rnk==0 in exceptional (SLOW) cases, e.g. it is necessary for loops of non-square transposes (otherwise e.g. ik1v5:200:200x10:20:1x20:1:10 planning fails)
5437 [empty commit message]
5438
5439 commit 121eaa69908a7b465f21f3529f74e983a63801ad
5440 Author: stevenj <stevenj@fftw.org>
5441 Date: Thu Sep 14 23:36:48 2006 -0400
5442
5443 first pass at working mpi_bench test program; transpose seems to work iff dimensions are divisible by #processors
5444 [empty commit message]
5445
5446 commit 51101a902b4fdaef585e1d9e975238100951601c
5447 Author: stevenj <stevenj@fftw.org>
5448 Date: Wed Sep 13 17:28:07 2006 -0400
5449
5450 whoops
5451 [empty commit message]
5452
5453 commit 7986cd7f00327db5f156e8d4d1458456f309e37a
5454 Author: stevenj <stevenj@fftw.org>
5455 Date: Tue Sep 12 22:27:03 2006 -0400
5456
5457 initial stub for mpi_bench
5458 [empty commit message]
5459
5460 commit 279ca0155c7cb9dcd9bb9c75149a24bb1f44ba50
5461 Author: stevenj <stevenj@fftw.org>
5462 Date: Tue Sep 12 21:54:31 2006 -0400
5463
5464 do no output at all if verbose < 0 (for use with MPI, where we only want output from process 0)
5465 [empty commit message]
5466
5467 commit 481f3838af04ae3db7aee15094ecf748f71d03da
5468 Author: stevenj <stevenj@fftw.org>
5469 Date: Tue Sep 12 21:39:15 2006 -0400
5470
5471 whoops
5472 [empty commit message]
5473
5474 commit 792aaa1acca61e89b5605cbed49e9dd86bfbc2b1
5475 Author: stevenj <stevenj@fftw.org>
5476 Date: Tue Sep 12 21:31:40 2006 -0400
5477
5478 split bench.c into bench.c and fftw_bench_common.c so that we can re-use some of the code in the MPI test program
5479 [empty commit message]
5480
5481 commit 3b3b95ad0b1ab373687a9df59cdf2ec4bcdd502b
5482 Author: stevenj <stevenj@fftw.org>
5483 Date: Tue Sep 12 21:00:36 2006 -0400
5484
5485 MPI stuff at least compiles now
5486 [empty commit message]
5487
5488 commit f5092f54bc2b8ee7289a2fb5148fc5315cbb2ee8
5489 Author: stevenj <stevenj@fftw.org>
5490 Date: Mon Sep 11 22:26:36 2006 -0400
5491
5492 initial (nonfunctional) start at MPI support (similar to FFTW 2.x in spirit, but mostly rewritten)
5493 [empty commit message]
5494
5495 commit 64d68fafe0c7f4433aec4a0925ce5972c33c78b4
5496 Author: stevenj <stevenj@fftw.org>
5497 Date: Mon Sep 11 22:25:38 2006 -0400
5498
5499 make X(plan_awake) work for NULL argument to reduce code size
5500 [empty commit message]
5501
5502 commit ed05c503c219544b0fe91af61db02d9cbb4027b5
5503 Author: stevenj <stevenj@fftw.org>
5504 Date: Fri Sep 15 23:47:08 2006 -0400
5505
5506 -mt should go before -mthreads to avoid spurious warnings on HPUX (thanks to Peter O'Gorman for the bug report)
5507 [empty commit message]
5508
5509 commit d737c7b3eca4ff8d7f372273f114dfd4e765b70c
5510 Author: stevenj <stevenj@fftw.org>
5511 Date: Mon Sep 11 13:53:44 2006 -0400
5512
5513 Fortran init_threads wrapper didn't return result; thanks to Markus Wetzstein for the bug report
5514 [empty commit message]
5515
5516 commit ba5664a7958d533904b9251a4bfaa56b0f338a8a
5517 Author: stevenj <stevenj@fftw.org>
5518 Date: Thu Sep 7 18:43:55 2006 -0400
5519
5520 make sure wrappers are included even if Fortran compiler was not detected (unless --disable-fortran was specified explicitly) ... this was supposed to be done before, but the definition was in the wrong place, grr
5521 [empty commit message]
5522
5523 commit 188c9dde71d0bc56ba30a052b82d02b6676f20ed
5524 Author: stevenj <stevenj@fftw.org>
5525 Date: Thu Aug 31 19:33:29 2006 -0400
5526
5527 I'm sick of answering this question about non-deterministic results
5528 [empty commit message]
5529
5530 commit 336fb6116c43aa5559392ea2d0759606efd6f275
5531 Author: Matteo Frigo <athena@fftw.org>
5532 Date: Tue Aug 22 21:27:29 2006 -0400
5533
5534 Add --tag=CC flag to libtool.
5535
5536 This change is consistent with the libtool invocation in the latest
5537 automake, and is required to compile with (some version of) xlc.
5538
5539 commit d98d86f9115ca1a836e92d8df8e061f98f329032
5540 Author: athena <athena@fftw.org>
5541 Date: Mon Aug 21 21:40:36 2006 -0400
5542
5543 avoid ``fma'' because it is defined in c99.
5544 [empty commit message]
5545
5546 commit 841eb8db14a22936ba8ef81f439f42cb2411073d
5547 Author: Matteo Frigo <athena@fftw.org>
5548 Date: Sun Aug 20 11:40:53 2006 -0400
5549
5550 Obey -standalone flag.
5551 [empty commit message]
5552
5553 commit f270abac4732fe5f77708bef5f0d0cdc599bdb61
5554 Author: Matteo Frigo <athena@fftw.org>
5555 Date: Sat Aug 19 13:34:27 2006 -0400
5556
5557 obey -standalone when generating simd codelets
5558 [empty commit message]
5559
5560 commit f573bbe2aaafabfbb21daf7da62972b8b071167f
5561 Author: Matteo Frigo <athena@fftw.org>
5562 Date: Sat Aug 19 13:33:43 2006 -0400
5563
5564 removed obsolete athfft
5565 [empty commit message]
5566
5567 commit 84e5b7792da92198e101b168d10710f0b81df5e8
5568 Author: stevenj <stevenj@fftw.org>
5569 Date: Thu Aug 17 21:50:50 2006 -0400
5570
5571 updated citation to Proc. IEEE paper
5572 [empty commit message]
5573
5574 commit 5ca3a79e05b95a688c21e7cb37a1ef7fa42a7f04
5575 Author: stevenj <stevenj@fftw.org>
5576 Date: Thu Aug 17 21:47:05 2006 -0400
5577
5578 use darcs changes --summary to make nice changelog; emacs fill-region hack is obsolete
5579 [empty commit message]
5580
5581 commit b80ff1b7affc5ba9c62bde0b06a548c3baf7c615
5582 Author: athena <athena@fftw.org>
5583 Date: Mon Aug 14 17:53:19 2006 -0400
5584
5585 removed timer calibration
5586 Timer calibration seems not to work any longer on recent processors---
5587 too much noise. I have remove it completely.
5588
5589 commit 8986b3fa943f3f424a2f75541f8627a86af31a0a
5590 Author: Matteo Frigo <athena@fftw.org>
5591 Date: Mon Aug 14 10:47:15 2006 -0400
5592
5593 removed k7
5594 Removed obsolete k7 support.
5595
5596 commit 820835bfa680e9a0193435bfbcaf21923df9e7fc
5597 Author: athena <athena@fftw.org>
5598 Date: Sun Aug 13 11:02:11 2006 -0400
5599
5600 Use darcs instead of cvs.
5601 [empty commit message]
5602
5603 commit 818c52da26a5d0781db8d9b45d4026403fb7e922
5604 Author: Matteo Frigo <athena@fftw.org>
5605 Date: Wed Jul 19 08:52:15 2006 -0400
5606
5607 Treat a the string "-" as a nonoption.
5608
5609 commit 4e8a814e90696ee38898bfb5f079ac9bb6b614c2
5610 Author: Steven G. Johnson <stevenj@fftw.org>
5611 Date: Tue Jul 4 17:10:47 2006 -0400
5612
5613 comment out pkginclude dir for now
5614
5615 commit 1bc4dd79b8cc59be7b18676f338c78013da54dab
5616 Author: Steven G. Johnson <stevenj@fftw.org>
5617 Date: Mon Jul 3 20:51:08 2006 -0400
5618
5619 make sure CCAS = CC to avoid libtool confusion
5620
5621 commit ebddd6bce119dec0b9a970a6d6194131321bdc5e
5622 Author: Steven G. Johnson <stevenj@fftw.org>
5623 Date: Fri Jun 23 04:07:31 2006 -0400
5624
5625 install x77.h guru.h guru64.h in pkgincludedir
5626
5627 commit e272fe53d7d822aa7d5ce03277f40c87aa843eef
5628 Author: Steven G. Johnson <stevenj@fftw.org>
5629 Date: Fri Jun 23 04:03:42 2006 -0400
5630
5631 whitespace
5632
5633 commit d6d23fdac18d0d01e363ff60bdba1285be017d0c
5634 Author: Steven G. Johnson <stevenj@fftw.org>
5635 Date: Fri Jun 23 02:33:45 2006 -0400
5636
5637 support cycle counter with xlc on Linux/ppc
5638
5639 commit 677dd906902cf9dd2215c576a8f9d9e6755cc7cd
5640 Author: Matteo Frigo <athena@fftw.org>
5641 Date: Tue Jun 20 08:16:08 2006 -0400
5642
5643 Stylistic change.
5644
5645 commit bb6bed2564fdec63eb8439031bc45caf8436b378
5646 Author: Steven G. Johnson <stevenj@fftw.org>
5647 Date: Tue Jun 20 02:20:34 2006 -0400
5648
5649 bump date
5650
5651 commit 6944a35c403fdcbf6b7b46f1aa9df9288991efca
5652 Author: Steven G. Johnson <stevenj@fftw.org>
5653 Date: Tue Jun 20 02:20:06 2006 -0400
5654
5655 correct bug reported by Andrew Salamon ... --enable-portable-binary was
5656 ignored (or rather, treated unpredictably) due to typo, grrr
5657
5658 commit ad98ebc35798f8713ac299ebe9ce74ca9fefe2f1
5659 Author: Steven G. Johnson <stevenj@fftw.org>
5660 Date: Thu Jun 1 20:30:06 2006 -0400
5661
5662 install 'internal' header files into includedir/fftw3/, includedir/fftw3f/, etcetera....this will make it easier to write external libraries that plug into FFTW internals, e.g. to add new solvers
5663
5664 commit 4ce51f61d823524e8bebc4bc92ad2b17b6e7b53a
5665 Author: Steven G. Johnson <stevenj@fftw.org>
5666 Date: Mon May 29 23:59:19 2006 -0400
5667
5668 bug fix, thanks to James Donald for the bug report (only affects experimental semaphore stuff)
5669
5670 commit ca9e38be107c761af7cd66a3ce9f0cfe93e9c069
5671 Author: Steven G. Johnson <stevenj@fftw.org>
5672 Date: Mon May 29 23:58:16 2006 -0400
5673
5674 comment
5675
5676 commit 7e4b4be5e1bcdd9706a3ded5e2f59010ff751401
5677 Author: Steven G. Johnson <stevenj@fftw.org>
5678 Date: Mon May 29 21:02:50 2006 -0400
5679
5680 whoops
5681
5682 commit 5af69a3ec3b932c0d7e3e2dfdbcbff2aa067c5bf
5683 Author: Steven G. Johnson <stevenj@fftw.org>
5684 Date: Sat May 27 19:36:15 2006 -0400
5685
5686 version bump
5687
5688 commit 27dd43e42fa0b4ccea275b2143a9056f42f8c7f9
5689 Author: Steven G. Johnson <stevenj@fftw.org>
5690 Date: Sat May 27 14:54:47 2006 -0400
5691
5692 only check for xlc_r/cc_r if we are not using gcc
5693
5694 commit c222c025be6649da84164ba5d2334fdcf0b3ac0b
5695 Author: Steven G. Johnson <stevenj@fftw.org>
5696 Date: Fri May 26 15:00:38 2006 -0400
5697
5698 use ptrdiff_t (it's C89 and standard C++, hooray)
5699
5700 commit c3450d7f654ac2adf06bbbe9687f99cf1c6641b5
5701 Author: Steven G. Johnson <stevenj@fftw.org>
5702 Date: Fri May 26 12:59:33 2006 -0400
5703
5704 version bump
5705
5706 commit 0be4f57c071dc97314660a66f4d46eee4ac143e9
5707 Author: Steven G. Johnson <stevenj@fftw.org>
5708 Date: Fri May 26 12:57:32 2006 -0400
5709
5710 noted 64-bit guru API
5711
5712 commit 90455678a81def7a9aa3bc14f17047deb714271b
5713 Author: Steven G. Johnson <stevenj@fftw.org>
5714 Date: Fri May 26 12:53:09 2006 -0400
5715
5716 note that newer versions of VC++ support long long
5717
5718 commit efddf05184fe6977af120842d10faf89399f14e0
5719 Author: Steven G. Johnson <stevenj@fftw.org>
5720 Date: Fri May 26 12:46:09 2006 -0400
5721
5722 try harder to get a portable 64-bit type
5723
5724 commit 1d34caa16af08ff47fd75006c7576242e4643d17
5725 Author: Steven G. Johnson <stevenj@fftw.org>
5726 Date: Thu May 25 22:04:18 2006 -0400
5727
5728 added draft guru64 API
5729
5730 commit f987e828891ddd69efa3c664c68d231c1d3fc460
5731 Author: Steven G. Johnson <stevenj@fftw.org>
5732 Date: Mon May 22 16:41:44 2006 -0400
5733
5734 added FIXME note
5735
5736 commit 245cd07427cd24c953e4f1eea383790c7f557701
5737 Author: Steven G. Johnson <stevenj@fftw.org>
5738 Date: Mon May 22 16:40:30 2006 -0400
5739
5740 check for xlc_r in addition to cc_r; thanks to Guy Moebs for the bug report
5741
5742 commit 8a76c773855a145883608d47ca0aaa369e3ec408
5743 Author: Steven G. Johnson <stevenj@fftw.org>
5744 Date: Fri Apr 21 12:35:25 2006 -0400
5745
5746 added note about gcc 4.0.1 on MacOS/Intel
5747
5748 commit 9bb0ec78947a8597e0642379e7348e6b1c03af0b
5749 Author: Steven G. Johnson <stevenj@fftw.org>
5750 Date: Thu Apr 20 23:08:42 2006 -0400
5751
5752 added code for Core Duo; thanks to Eric Branlund
5753
5754 commit d7a2e4a3ad51c01ec1bffbbadad602bb643da270
5755 Author: Steven G. Johnson <stevenj@fftw.org>
5756 Date: Thu Apr 20 20:21:03 2006 -0400
5757
5758 fixed failure for -fPIC or for gcc-4 on Apple Intel machines; thanks to
5759 Eric Branlund for the bug report
5760
5761 commit 3cb3cea549b4e8e0f9a16a1952eae4b4d8be1189
5762 Author: Matteo Frigo <athena@fftw.org>
5763 Date: Tue Apr 11 20:00:31 2006 -0400
5764
5765 Use -maltivec when checking for altivec.h.
5766
5767 commit e2fb474c726118343e25059e2e1e8d2da6a21f62
5768 Author: Steven G. Johnson <stevenj@fftw.org>
5769 Date: Mon Apr 3 15:52:44 2006 -0400
5770
5771 note planner overwriting input in planner-flags reference
5772
5773 commit 89a78d79d22078ee258d43d581cee6aaa3ba1d80
5774 Author: Matteo Frigo <athena@fftw.org>
5775 Date: Tue Mar 28 09:05:26 2006 -0500
5776
5777 FAQ entry about --enable-k7 in 64-bit mode.
5778
5779 commit bfc115831ce70cd5cbf96fc005710862cf10bef6
5780 Author: Steven G. Johnson <stevenj@fftw.org>
5781 Date: Mon Mar 27 23:41:05 2006 -0500
5782
5783 sprintf -> snprintf, to avoid (harmless) complaints by users/compilers
5784
5785 commit a2e4f6bfa281ed8b11c3a42e4cf32570e6a5c4d9
5786 Author: Steven G. Johnson <stevenj@fftw.org>
5787 Date: Mon Mar 27 23:30:22 2006 -0500
5788
5789 silence compiler warning
5790
5791 commit 2c39d368d18c97bb079456491d60bb9a0c4c4342
5792 Author: Matteo Frigo <athena@fftw.org>
5793 Date: Fri Mar 17 09:20:10 2006 -0500
5794
5795 Remove dft/codelets/inplace, add simd/nonportable to list of
5796 directories to be compiled on non-unix systems.
5797
5798 commit 01fa8ec4e8e6bd7a560437afe4ce4e37c13e0806
5799 Author: Steven G. Johnson <stevenj@fftw.org>
5800 Date: Sat Mar 4 16:17:56 2006 -0500
5801
5802 whoops
5803
5804 commit 6687db156af27c4ba2a4ddab66b6aa0a951b1a35
5805 Author: Steven G. Johnson <stevenj@fftw.org>
5806 Date: Sat Mar 4 16:13:08 2006 -0500
5807
5808 note that we align the stack ourselves if necessary, with gcc and icc
5809
5810 commit eee84dd2a9317a44c05e2f4dc2c05ff42709a973
5811 Author: Steven G. Johnson <stevenj@fftw.org>
5812 Date: Sat Mar 4 16:08:16 2006 -0500
5813
5814 clearer distinction between static and automatic storage in C
5815
5816 commit bc1aba15a1ddb5cd37b8088ea70f81ea6093e8d2
5817 Author: Steven G. Johnson <stevenj@fftw.org>
5818 Date: Sat Feb 25 20:27:01 2006 -0500
5819
5820 rm unused var
5821
5822 commit d93efe4d5783cc4d5791894d58524c93644d5cb2
5823 Author: Matteo Frigo <athena@fftw.org>
5824 Date: Sat Feb 25 17:30:28 2006 -0500
5825
5826 Improved usage of goto (Dijkstra miserere nostri)
5827
5828 commit 36a203c3ada1b6257109162fee8dc563da9c4bc2
5829 Author: Steven G. Johnson <stevenj@fftw.org>
5830 Date: Sat Feb 25 14:19:15 2006 -0500
5831
5832 boilerplate
5833
5834 commit 4041499e9299726d5840a0d119af094517810bda
5835 Author: Steven G. Johnson <stevenj@fftw.org>
5836 Date: Sat Feb 25 14:14:40 2006 -0500
5837
5838 update for upcoming 3.1.1
5839
5840 commit 579c413f3bb5e24ac92d433aa17a063b1f11f8a1
5841 Author: Steven G. Johnson <stevenj@fftw.org>
5842 Date: Sat Feb 25 13:57:34 2006 -0500
5843
5844 replace obsolete IMPATIENT with MEASURE
5845
5846 commit e0e594ba308e101ba93aacdceabdf0a35b4b0221
5847 Author: Steven G. Johnson <stevenj@fftw.org>
5848 Date: Sat Feb 25 13:52:25 2006 -0500
5849
5850 corrected comment
5851
5852 commit 5c1e2c07d1d8e21c219853b35212ba7373b35b45
5853 Author: Matteo Frigo <athena@fftw.org>
5854 Date: Sat Feb 25 10:19:26 2006 -0500
5855
5856 -v does not take an argument.
5857
5858 commit dca8aaed07eadc0d1db6fe19b4a86d00ff7a328b
5859 Author: Matteo Frigo <athena@fftw.org>
5860 Date: Sat Feb 25 10:17:18 2006 -0500
5861
5862 Obey the unix convention that -ab = -a -b
5863
5864 commit 95450e7e4d3ed287b4ff36d6ccd1250023cc06a2
5865 Author: Steven G. Johnson <stevenj@fftw.org>
5866 Date: Fri Feb 24 23:13:49 2006 -0500
5867
5868 minor fixes (return error on unrecognized option)
5869
5870 commit af67fa909fc8ad31f5163b26da1693b1f9a61649
5871 Author: Steven G. Johnson <stevenj@fftw.org>
5872 Date: Fri Feb 24 22:46:12 2006 -0500
5873
5874 ugh
5875
5876 commit fec17358e3fbfb5e049933495db198312f9e10f9
5877 Author: Matteo Frigo <athena@fftw.org>
5878 Date: Fri Feb 24 21:42:56 2006 -0500
5879
5880 require exact match for long options.
5881
5882 commit 5538e310cb61df6e3b5bd880ae604d86ec8f6121
5883 Author: Matteo Frigo <athena@fftw.org>
5884 Date: Fri Feb 24 21:38:02 2006 -0500
5885
5886 better fix
5887
5888 commit 6f17dbe2db5e098604a35c03a7a1514040ea47d6
5889 Author: Matteo Frigo <athena@fftw.org>
5890 Date: Fri Feb 24 21:37:06 2006 -0500
5891
5892 Fix
5893
5894 commit f10cae7e4cf944a6ef5928afbbaead482a4692d3
5895 Author: Matteo Frigo <athena@fftw.org>
5896 Date: Fri Feb 24 21:25:48 2006 -0500
5897
5898 nothing
5899
5900 commit 01a4d4b5c204ef2c6d0afc7402a72481ad4a6c3e
5901 Author: Steven G. Johnson <stevenj@fftw.org>
5902 Date: Mon Feb 20 17:37:21 2006 -0500
5903
5904 rm transpose-indirect-inplace solver, which was buggy
5905
5906 commit baa641d48341281eb3a9d4d9792f4482042836b4
5907 Author: Matteo Frigo <athena@fftw.org>
5908 Date: Wed Feb 15 08:43:05 2006 -0500
5909
5910 Comment fix.
5911
5912 commit 207d1eae51bef5d4d14c7c670d6d16dadd8c8edf
5913 Author: Matteo Frigo <athena@fftw.org>
5914 Date: Wed Feb 15 08:18:41 2006 -0500
5915
5916 Cycle counter for Visual C++ x86-64, courtesy of Dirk Michaelis
5917
5918 commit 0aefc1a066f619ed6f5b54791b00ab0acffe2901
5919 Author: Steven G. Johnson <stevenj@fftw.org>
5920 Date: Tue Feb 14 19:17:30 2006 -0500
5921
5922 rfftwnd.png is in builddir
5923
5924 commit 1799b5fa46fef72b8f116de92605ea4b8118a3db
5925 Author: Steven G. Johnson <stevenj@fftw.org>
5926 Date: Tue Feb 14 19:03:27 2006 -0500
5927
5928 fixed typo: --enable-portable-binary, not --with
5929
5930 commit f75d618a590c61c3bdba28ad0155f327670e231f
5931 Author: Matteo Frigo <athena@fftw.org>
5932 Date: Mon Feb 13 07:59:06 2006 -0500
5933
5934 estimator tweaks.
5935
5936 commit 1c0cc8d7bb3570ce31320d87bbe35eb5b03ef38d
5937 Author: Matteo Frigo <athena@fftw.org>
5938 Date: Sun Feb 12 20:43:39 2006 -0500
5939
5940 sse/sse2 support for t3?v codelets
5941
5942 commit b1116627def6398d97dc443ba0f9bba1e2989f86
5943 Author: Matteo Frigo <athena@fftw.org>
5944 Date: Sun Feb 12 20:39:22 2006 -0500
5945
5946 Use CEXP instead of SIN/COS.
5947
5948 commit dd361f593b5e85eeea97f2a2c048d3a8dce9d7e5
5949 Author: Matteo Frigo <athena@fftw.org>
5950 Date: Sun Feb 12 20:12:10 2006 -0500
5951
5952 bug in randomized cse eliminator.
5953
5954 commit 9d329a9d010b44b728449d0f566eaa9356682a82
5955 Author: Matteo Frigo <athena@fftw.org>
5956 Date: Sun Feb 12 18:34:12 2006 -0500
5957
5958 Added support for t2-style simd codelets. This is altivec only for
5959 now; sse/sse2 don't even compile yet.
5960
5961 commit b187b797d17ccda6efb853eb93b27aa42474a02a
5962 Author: Matteo Frigo <athena@fftw.org>
5963 Date: Sun Feb 12 15:30:27 2006 -0500
5964
5965 Added support for t2-style simd split-complex codelets.
5966
5967 commit 78281302f4fd1a0d42f0a0baf64cb364076aedb3
5968 Author: Steven G. Johnson <stevenj@fftw.org>
5969 Date: Fri Feb 10 18:21:28 2006 -0500
5970
5971 [empty commit message]
5972
5973 commit 948abfe0c2c7db954b7de51ff8da674dab3258ee
5974 Author: Steven G. Johnson <stevenj@fftw.org>
5975 Date: Fri Feb 10 18:19:46 2006 -0500
5976
5977 punctuation
5978
5979 commit e24cb9776a48a5cb0673e4ee8d75d142fcf2b117
5980 Author: Steven G. Johnson <stevenj@fftw.org>
5981 Date: Fri Feb 10 18:00:35 2006 -0500
5982
5983 windows DLL stuff for Fortran interface
5984
5985 commit fd7272f2e39eddd4491666e0bfe1e5c69c1eb04c
5986 Author: Matteo Frigo <athena@fftw.org>
5987 Date: Fri Feb 10 09:48:52 2006 -0500
5988
5989 Bumped version to 3.1.1
5990
5991 commit 81a965e9d51e8e647f2eeaa12a973f7ef5188314
5992 Author: Matteo Frigo <athena@fftw.org>
5993 Date: Fri Feb 10 09:18:39 2006 -0500
5994
5995 Precompute array indices on x86-64. Speeds up Pentium IV and makes no
5996 appreciable difference on AMD.
5997
5998 commit 5dbfa49ad81db0d3dca7e419507654fc0adc63fe
5999 Author: Matteo Frigo <athena@fftw.org>
6000 Date: Tue Feb 7 22:01:36 2006 -0500
6001
6002 Check whether the processor supports CPUID before issuing the
6003 instruction. (Grrr...) Code contributed by Eric J. Korpela.
6004
6005 commit ce017677182a7662b7b1db85f32c6a8f34773703
6006 Author: Matteo Frigo <athena@fftw.org>
6007 Date: Tue Feb 7 21:36:47 2006 -0500
6008
6009 icc supports x86_64 these days.
6010
6011 commit a7f132f06de9d343ee68b436c089bd37e6b7fc17
6012 Author: Matteo Frigo <athena@fftw.org>
6013 Date: Sun Feb 5 18:19:55 2006 -0500
6014
6015 Paranoia.
6016
6017 commit 8645d5236a621db86ff7094b0e1a3e2946abc9fc
6018 Author: Steven G. Johnson <stevenj@fftw.org>
6019 Date: Mon Jan 30 15:27:53 2006 -0500
6020
6021 whoops, fixed assert (y <= x)
6022
6023 commit 13864d94f5c655cee3914be9d8751e184f86b8c9
6024 Author: Steven G. Johnson <stevenj@fftw.org>
6025 Date: Mon Jan 30 15:26:22 2006 -0500
6026
6027 note that safe_mulmod requires {x,y} < p (or at least < 2p), and added
6028 assert
6029
6030 commit 849af348d142662e71fc4f3efe2866907e3bc745
6031 Author: Matteo Frigo <athena@fftw.org>
6032 Date: Mon Jan 30 11:09:32 2006 -0500
6033
6034 fixed aix/xlc lossage
6035
6036 commit 106ee57674a134e1f876b6b6b77accd3a3b7a5f8
6037 Author: Matteo Frigo <athena@fftw.org>
6038 Date: Sun Jan 29 20:42:51 2006 -0500
6039
6040 In the impuse test, normalize the impulse so that the impulse and the
6041 random vectors have roughly the same L2 norm. This change reduces the
6042 number of bits that we lose because of floating-point cancellation, so
6043 that we can focus on the bits that we lose because of bugs.
6044
6045 commit 45098b30a5e91b87bb97474de6ff2c16fd7373e3
6046 Author: Matteo Frigo <athena@fftw.org>
6047 Date: Sun Jan 29 20:37:47 2006 -0500
6048
6049 Compute omega in trigreal precision, as opposed to R.
6050
6051 commit 2c5480453a0fd877bdec040eb421b975eb2c63f4
6052 Author: Steven G. Johnson <stevenj@fftw.org>
6053 Date: Fri Jan 27 19:16:22 2006 -0500
6054
6055 add --with-combined-threads option as workaround to Windows inability to build shared libs with dependencies
6056
6057 commit 68fde0a7351209d643634dfc19367da685c7e455
6058 Author: Steven G. Johnson <stevenj@fftw.org>
6059 Date: Fri Jan 27 17:20:45 2006 -0500
6060
6061 libfftw3_threads should *not* used -no-undefined because, in fact, it is not true -- this library depends on -lfftw3, and is not self-contained
6062
6063 commit ba85fd54aba2401c937c7acbff52a7c557956f68
6064 Author: Steven G. Johnson <stevenj@fftw.org>
6065 Date: Thu Jan 26 22:04:34 2006 -0500
6066
6067 updated
6068
6069 commit 42feb604758692ce9936076f37e10c0f4098d46d
6070 Author: Matteo Frigo <athena@fftw.org>
6071 Date: Thu Jan 26 21:10:50 2006 -0500
6072
6073 Added paranoid stack alignment when awaking plans. While I was at it,
6074 removed obsolete, redundant AWAKE macro.
6075
6076 commit 6b9831ddefcd83bf50aeafd90a6aa1effb44183e
6077 Author: Matteo Frigo <athena@fftw.org>
6078 Date: Thu Jan 26 20:54:39 2006 -0500
6079
6080 Updated for 3.1.
6081
6082 commit 4f2fadf55d8ba8d714bc96fb2236dfa981e3d244
6083 Author: Matteo Frigo <athena@fftw.org>
6084 Date: Thu Jan 26 19:15:12 2006 -0500
6085
6086 ditched one alignment check and noted that we should eliminate the rest as well
6087
6088 commit 7c89983f07d925a997e5c293f8cdd5fbe577e3fb
6089 Author: Matteo Frigo <athena@fftw.org>
6090 Date: Wed Jan 25 23:02:19 2006 -0500
6091
6092 alignment hack
6093
6094 commit 34f414ddf79840e5a7a9122c98e97bb2a09ecbd7
6095 Author: Matteo Frigo <athena@fftw.org>
6096 Date: Wed Jan 25 22:05:11 2006 -0500
6097
6098 detect pentium M
6099
6100 commit 4f5853890a7ad01e763186bd03e44a5b20e5ef4a
6101 Author: Steven G. Johnson <stevenj@fftw.org>
6102 Date: Wed Jan 25 18:42:58 2006 -0500
6103
6104 don't trust host_cpu if it claims we are on i386/i486, and call cpuid anyway (if it fails we use no arch flag). This is needed on FreeBSD
6105
6106 commit 16caea410e6cc85276555146cf41c370534074b6
6107 Author: Steven G. Johnson <stevenj@fftw.org>
6108 Date: Wed Jan 25 18:00:04 2006 -0500
6109
6110 suggest --with-our-malloc16 in error message
6111
6112 commit 7574f2ae7e872c4f05f34b73057069b57fb2df01
6113 Author: Steven G. Johnson <stevenj@fftw.org>
6114 Date: Tue Jan 24 19:53:34 2006 -0500
6115
6116 ditto for -no-gcc
6117
6118 commit 04b5cc720e50ebe4cd2360425e79d6767356288a
6119 Author: Steven G. Johnson <stevenj@fftw.org>
6120 Date: Tue Jan 24 19:51:08 2006 -0500
6121
6122 flags required for successfull compilation should be added even if the
6123 user overrides CFLAGS
6124
6125 commit 623ce195f6fe58d67f3bc8928ecc173f753e55db
6126 Author: Steven G. Johnson <stevenj@fftw.org>
6127 Date: Tue Jan 24 18:43:59 2006 -0500
6128
6129 upcoming gcc OpenMP support uses -fopenmp
6130
6131 commit abec9a1443aa235af2e2cfbd86f636599bcfea5e
6132 Author: Steven G. Johnson <stevenj@fftw.org>
6133 Date: Tue Jan 24 18:26:59 2006 -0500
6134
6135 note that PGI uses -mp as well
6136
6137 commit 883f0f18de0f8528fe77129192f521b1a77bfece
6138 Author: Matteo Frigo <athena@fftw.org>
6139 Date: Mon Jan 23 15:31:24 2006 -0500
6140
6141 my best guess at how to fix the microsoft crap du jour
6142
6143 commit b457e9e371cf5e13bb818868495b38dce7ccdcd6
6144 Author: Steven G. Johnson <stevenj@fftw.org>
6145 Date: Mon Jan 23 14:05:14 2006 -0500
6146
6147 use -Masmkeyword for PGI cycle counter, grr
6148
6149 commit 91a65bac96c2fc134d11c8d551eb410de6d18bc2
6150 Author: Matteo Frigo <athena@fftw.org>
6151 Date: Sun Jan 22 18:09:06 2006 -0500
6152
6153 Bumped version number to 3.1.
6154
6155 commit 1745639a638440b17bfcea324c068679f655df24
6156 Author: Matteo Frigo <athena@fftw.org>
6157 Date: Sat Jan 21 10:03:59 2006 -0500
6158
6159 Report that --enable-k7 is incompatible with --enable-shared.
6160
6161 commit 840da056365df79ea63fc3d5a21b1ab5a13707e9
6162 Author: Matteo Frigo <athena@fftw.org>
6163 Date: Sat Jan 21 09:17:54 2006 -0500
6164
6165 Do not use empty libraries in LIBADD, since otherwise the linker fails
6166 on Solaris.
6167
6168 commit 4228f20154f81216ab4ddae092d7661bb8af1652
6169 Author: Steven G. Johnson <stevenj@fftw.org>
6170 Date: Wed Jan 18 10:47:59 2006 -0500
6171
6172 warn end-users away from this file
6173
6174 commit b6e0f0a6eac2561efe417f2cfc0eb8686196a385
6175 Author: Matteo Frigo <athena@fftw.org>
6176 Date: Tue Jan 17 16:16:42 2006 -0500
6177
6178 Gcc sucks.
6179
6180 commit 8560506aa44b2740ea378c83c403373dfce2a662
6181 Author: Matteo Frigo <athena@fftw.org>
6182 Date: Tue Jan 17 11:48:55 2006 -0500
6183
6184 Disabled checks that may turn out to be too paranoid.
6185
6186 commit 782888694f5690298d87cc67cf9963f97aabc412
6187 Author: Matteo Frigo <athena@fftw.org>
6188 Date: Tue Jan 17 10:35:03 2006 -0500
6189
6190 Some paranoid checks.
6191
6192 commit c93e48fa31d081994b9e3b11cca9f1ab25bdf6a1
6193 Author: Matteo Frigo <athena@fftw.org>
6194 Date: Tue Jan 17 09:31:08 2006 -0500
6195
6196 Flush stdout after printing.
6197
6198 commit 8a84f237ca9d96babf1f4edeecb181c47cd74dbe
6199 Author: Matteo Frigo <athena@fftw.org>
6200 Date: Tue Jan 17 08:28:18 2006 -0500
6201
6202 Run the leak detector in all cases, not just when verbose > 2.
6203
6204 commit 884a08a129046af3f84ce0fc138f385976f5a5a9
6205 Author: Matteo Frigo <athena@fftw.org>
6206 Date: Tue Jan 17 08:11:41 2006 -0500
6207
6208 Eliminate calls to pow(), rint().
6209
6210 commit 370ddffe8e4854e4826b1ff4ea14c617d1eea504
6211 Author: Steven G. Johnson <stevenj@fftw.org>
6212 Date: Tue Jan 17 00:45:06 2006 -0500
6213
6214 put # in first column, for stylistic consistency
6215
6216 commit ede00270785b328279288ada254a11f7314bcd6c
6217 Author: Matteo Frigo <athena@fftw.org>
6218 Date: Tue Jan 17 00:17:27 2006 -0500
6219
6220 Made timeout part of impatience flags, in order to improve the
6221 usability of wisdom. Also, fixed bogus error recovery logic in
6222 planner.c:imprt().
6223
6224 commit 693f01973548254de258d7efa4217cabea005e79
6225 Author: Steven G. Johnson <stevenj@fftw.org>
6226 Date: Mon Jan 16 23:03:34 2006 -0500
6227
6228 make timelimit < 0 .eq. FFTW_NO_TIMELIMIT
6229
6230 commit 5af63c169becdefc68db3b4f2df8e788b9867c98
6231 Author: Matteo Frigo <athena@fftw.org>
6232 Date: Mon Jan 16 21:52:01 2006 -0500
6233
6234 Eliminated the FFTW_TIMELIMIT flag in favor of this simpler logic:
6235 fftw_set_timelimit(0) disables time limit.
6236 fftw_set_timelimit(X), X>0 sets the time limit to X.
6237
6238 commit 8a9d6dd6b442050ad202a6f7154926d145e359b1
6239 Author: Matteo Frigo <athena@fftw.org>
6240 Date: Mon Jan 16 08:38:04 2006 -0500
6241
6242 Force the use of the estimator when wisdom fails because of md5
6243 collisions, otherwise the planner takes forever.
6244
6245 commit 7c6a1a3f7e16df4dca8f78ee994d0488278977fb
6246 Author: Matteo Frigo <athena@fftw.org>
6247 Date: Sun Jan 15 21:30:31 2006 -0500
6248
6249 Ranted about how broken gcc-4 is.
6250
6251 commit 383c1374f7af522dfcfe363c508d7fb630e83746
6252 Author: Steven G. Johnson <stevenj@fftw.org>
6253 Date: Sun Jan 15 19:59:38 2006 -0500
6254
6255 change fftw_timelimit global var to fftw_set_timelimit(double) function, for simpler usage with shared libraries and for consistency with e.g. set_numthreads
6256
6257 commit 584641592c2c273e233b919c8e68e1dbb840d72f
6258 Author: Matteo Frigo <athena@fftw.org>
6259 Date: Sun Jan 15 19:32:27 2006 -0500
6260
6261 Minor tweaks.
6262
6263 commit f8fd8093b44aca863601612ae0b4818e91cca853
6264 Author: Matteo Frigo <athena@fftw.org>
6265 Date: Sun Jan 15 16:32:54 2006 -0500
6266
6267 tweaks to make sure that time_n() is always called from the same stack position.
6268
6269 commit 1a5445769d483d86df5d2de6e41f4c5e9515a4f1
6270 Author: Matteo Frigo <athena@fftw.org>
6271 Date: Sun Jan 15 16:09:53 2006 -0500
6272
6273 Major simplification of the timer calibration logic. Also, use an FFT
6274 as a unit of work instead of the old pointer chasing, because God
6275 knows how pointer chasing interacts with the idiotic cache-hit
6276 speculation on the Pentium IV.
6277
6278 commit 1838fc3c1290495355ce10791c9a9f376dd7522d
6279 Author: Matteo Frigo <athena@fftw.org>
6280 Date: Sun Jan 15 15:12:08 2006 -0500
6281
6282 Fixed broken aligment checks when sizeof(R)==12.
6283
6284 commit 17b67db5fa051c8eef9c962abfb698b51d11f303
6285 Author: Matteo Frigo <athena@fftw.org>
6286 Date: Sun Jan 15 10:36:40 2006 -0500
6287
6288 Manual unrolling of loop.
6289
6290 commit 7465e7b2ab1c48d06a50189a8545af2b0d98fdda
6291 Author: Matteo Frigo <athena@fftw.org>
6292 Date: Sun Jan 15 10:12:55 2006 -0500
6293
6294 Various improvements to timer calibration routines.
6295
6296 commit 049684aa3e3f0411c535a71b0f4adc0ecff7327d
6297 Author: Matteo Frigo <athena@fftw.org>
6298 Date: Sat Jan 14 22:16:09 2006 -0500
6299
6300 cygwin defines __CYGWIN__, not __WIN32__ etc.
6301
6302 commit c418027ffb0304f446af729a93415df506d093f3
6303 Author: Matteo Frigo <athena@fftw.org>
6304 Date: Sat Jan 14 20:40:12 2006 -0500
6305
6306 fixed confusion between libbench and user timers
6307
6308 commit 64c27bbd6553e2d8e2e988456890e3e31266b89e
6309 Author: Steven G. Johnson <stevenj@fftw.org>
6310 Date: Sat Jan 14 12:32:44 2006 -0500
6311
6312 update
6313
6314 commit 1b00d512abfe62699264bc556e84a50e89c9a377
6315 Author: Matteo Frigo <athena@fftw.org>
6316 Date: Sat Jan 14 10:24:11 2006 -0500
6317
6318 Comment.
6319
6320 commit 7fa69534cca1e07e3c1260151ed8dee5e5a645cc
6321 Author: Matteo Frigo <athena@fftw.org>
6322 Date: Sat Jan 14 10:19:28 2006 -0500
6323
6324 Workaround gcc bug.
6325
6326 commit 686f1af1d0f1c63d99f2891a47c5de2b459b92d2
6327 Author: Matteo Frigo <athena@fftw.org>
6328 Date: Fri Jan 13 19:13:18 2006 -0500
6329
6330 Switched to -beta2.
6331
6332 commit 9f370230780a4f3c03643f6c35f4114fada8c1e7
6333 Author: Matteo Frigo <athena@fftw.org>
6334 Date: Thu Jan 12 22:21:57 2006 -0500
6335
6336 Fixed technically correct but highly obfuscated use of the enum tag
6337 R2HC as a null pointer.
6338
6339 commit 38965981e1187e5d0574e129690f3e02b4bc1cae
6340 Author: Steven G. Johnson <stevenj@fftw.org>
6341 Date: Thu Jan 12 19:25:20 2006 -0500
6342
6343 --enable-unsafe-mulmod is obsolete
6344
6345 commit 3f29e7d2e1993de8b7a9759bc879955cb8ae569d
6346 Author: Matteo Frigo <athena@fftw.org>
6347 Date: Thu Jan 12 19:23:18 2006 -0500
6348
6349 More thoughts.
6350
6351 commit 84082b78ddfaf5133e49453cc3a62c3d3dde9c04
6352 Author: Matteo Frigo <athena@fftw.org>
6353 Date: Thu Jan 12 19:17:57 2006 -0500
6354
6355 Removed loop unrolling because it slows things down on at least one
6356 powerpc and it generates clumsy x86 code.
6357
6358 commit 51caa62b55dcdb8e1aeb9da2d10a40874cef875a
6359 Author: Steven G. Johnson <stevenj@fftw.org>
6360 Date: Thu Jan 12 19:17:35 2006 -0500
6361
6362 tweaks
6363
6364 commit e29d0b0a8ceacbe19adba501d8e5799c7647bb87
6365 Author: Steven G. Johnson <stevenj@fftw.org>
6366 Date: Thu Jan 12 15:55:52 2006 -0500
6367
6368 MacOSX x86 ABI specifies that the stack is kept 16-byte aligned
6369
6370 commit 487e03a1ee35bc63877b6ec2c2e410da5f3dd4d5
6371 Author: Matteo Frigo <athena@fftw.org>
6372 Date: Thu Jan 12 12:46:49 2006 -0500
6373
6374 ``ret'' is a reserved word in the evil empire.
6375
6376 commit ef109b1d0703dbf67144c7ef5afe9ee4dd0ef489
6377 Author: Matteo Frigo <athena@fftw.org>
6378 Date: Thu Jan 12 08:31:43 2006 -0500
6379
6380 Changed ret => result because ret ``is a reserved word'' in the evil
6381 empire.
6382
6383 commit 7dfbcb39afd28daaa10eba6e7909e0e8e3dd56bc
6384 Author: Matteo Frigo <athena@fftw.org>
6385 Date: Wed Jan 11 19:30:42 2006 -0500
6386
6387 Workaround Visual c++ lossage.
6388
6389 commit 93876be963fec88768744d04a2c027a4c14f49f0
6390 Author: Matteo Frigo <athena@fftw.org>
6391 Date: Wed Jan 11 19:26:16 2006 -0500
6392
6393 Workaround visual c++ lossage.
6394
6395 commit b2e9544d09112da7db08f07f268e2ed3ad707634
6396 Author: Matteo Frigo <athena@fftw.org>
6397 Date: Wed Jan 11 19:10:52 2006 -0500
6398
6399 isprint() is guaranteed to work for unsigned char + EOF only.
6400
6401 commit 5b926765db935776483660d88b2ce02dca54081e
6402 Author: Steven G. Johnson <stevenj@fftw.org>
6403 Date: Wed Jan 11 13:47:49 2006 -0500
6404
6405 rm obsolete fixme
6406
6407 commit 9237b1a5063d1190e4a8a79d924599a240706756
6408 Author: Steven G. Johnson <stevenj@fftw.org>
6409 Date: Wed Jan 11 13:38:46 2006 -0500
6410
6411 [empty commit message]
6412
6413 commit 72c1af743cd4da543e142aa9d51b600f47811378
6414 Author: Steven G. Johnson <stevenj@fftw.org>
6415 Date: Wed Jan 11 13:32:26 2006 -0500
6416
6417 fix comment
6418
6419 commit 47b608a52f08027e1429325bd1639ee4f176aea2
6420 Author: Matteo Frigo <athena@fftw.org>
6421 Date: Wed Jan 11 12:27:05 2006 -0500
6422
6423 Paranoid use of K(x) for all constants x, to avoid runtime double->float conversions on sufficiently stupid compilers.
6424
6425 commit fd9ac529906a8db6d171aa999e4a848b495a8fde
6426 Author: Matteo Frigo <athena@fftw.org>
6427 Date: Tue Jan 10 20:10:38 2006 -0500
6428
6429 Workaround to gcc nonsense.
6430
6431 commit 90aaf565346f372e580fb899f9212558ff87d0d2
6432 Author: Steven G. Johnson <stevenj@fftw.org>
6433 Date: Tue Jan 10 18:44:28 2006 -0500
6434
6435 bug fix: infinite loop in transpose-cut planning
6436
6437 commit 5cd8a9482a90f25c76df01e4f8ea4b2a3386c449
6438 Author: Steven G. Johnson <stevenj@fftw.org>
6439 Date: Tue Jan 10 18:12:14 2006 -0500
6440
6441 clarified comment
6442
6443 commit 4c5e2af8af80c06734bac116adefdc9e346caa47
6444 Author: Steven G. Johnson <stevenj@fftw.org>
6445 Date: Tue Jan 10 18:10:32 2006 -0500
6446
6447 more Windows decorations
6448
6449 commit c0bb01fdec0e5c0d9636187641f43690cdb771e2
6450 Author: Steven G. Johnson <stevenj@fftw.org>
6451 Date: Tue Jan 10 17:57:45 2006 -0500
6452
6453 added FIXME comment
6454
6455 commit 82eb98885049d8d0b69490915a39614c17d5263c
6456 Author: Steven G. Johnson <stevenj@fftw.org>
6457 Date: Tue Jan 10 17:52:07 2006 -0500
6458
6459 'make clean' should not delete codlist.c since it is included in the dist tarball
6460
6461 commit 7fece302306db2d854caf017c680e29eadf79cb7
6462 Author: Matteo Frigo <athena@fftw.org>
6463 Date: Tue Jan 10 17:50:12 2006 -0500
6464
6465 Change threshold for ``large'' Cooley-Tukey to 256K from 64K, since it
6466 seems to benefit the Pentium IV with sse and the planning cost is not
6467 too horrible.
6468
6469 commit 46c94f013ca0ab45344996479ff3059a6b835241
6470 Author: Steven G. Johnson <stevenj@fftw.org>
6471 Date: Tue Jan 10 17:45:11 2006 -0500
6472
6473 more missing Windows DLL decorations
6474
6475 commit 67d487e555c8d365aa9530173dba788656f2d91b
6476 Author: Steven G. Johnson <stevenj@fftw.org>
6477 Date: Tue Jan 10 17:41:28 2006 -0500
6478
6479 remove unused var
6480
6481 commit 3356ac92a38eea7582b9712a6cef2067dd9ccf28
6482 Author: Steven G. Johnson <stevenj@fftw.org>
6483 Date: Tue Jan 10 14:00:50 2006 -0500
6484
6485 allow compiler threads, if enabled, to take precedence over explicit threads
6486
6487 commit d2c3905718e0dbe3bb6e67befc3a2f4c63badbeb
6488 Author: Steven G. Johnson <stevenj@fftw.org>
6489 Date: Tue Jan 10 12:30:09 2006 -0500
6490
6491 [empty commit message]
6492
6493 commit 755b3ecdb747b9b6f1dbc52036cf1d08f724596d
6494 Author: Steven G. Johnson <stevenj@fftw.org>
6495 Date: Tue Jan 10 12:21:56 2006 -0500
6496
6497 [empty commit message]
6498
6499 commit 22db6a0e68da61729239444ff941e84f8de1b336
6500 Author: Matteo Frigo <athena@fftw.org>
6501 Date: Tue Jan 10 09:13:20 2006 -0500
6502
6503 Fixed comment typo.
6504
6505 commit 219609390fc443e6defd5f4940aa36e059b0e6c6
6506 Author: Matteo Frigo <athena@fftw.org>
6507 Date: Tue Jan 10 08:59:22 2006 -0500
6508
6509 Rearranged timeout checks so as to eliminate one of them.
6510
6511 commit 5d22885da57a28d4ce96128650dba99a3ea76481
6512 Author: Matteo Frigo <athena@fftw.org>
6513 Date: Tue Jan 10 08:56:55 2006 -0500
6514
6515 Converted residual CK() -> A().
6516
6517 commit d82a20e3e3a4d47aebbd2ce4350da4976ba32652
6518 Author: Matteo Frigo <athena@fftw.org>
6519 Date: Tue Jan 10 08:36:13 2006 -0500
6520
6521 Maintain the invariant TIMED_OUT ==> NEED_TIMEOUT_CHECK.
6522
6523 commit 08f674254d16c7770944dc9e7c0eaa3579f333bb
6524 Author: Matteo Frigo <athena@fftw.org>
6525 Date: Tue Jan 10 08:24:41 2006 -0500
6526
6527 silence some 64-bit warnings
6528
6529 commit 37aaadd4f3be4c0a5f03fffae1df96e82e8064c9
6530 Author: Matteo Frigo <athena@fftw.org>
6531 Date: Tue Jan 10 07:58:48 2006 -0500
6532
6533 Assertions.
6534
6535 commit 3ee7cd888752144ff48442480446982dcbf3bba3
6536 Author: Steven G. Johnson <stevenj@fftw.org>
6537 Date: Tue Jan 10 00:14:00 2006 -0500
6538
6539 some condensing
6540
6541 commit 667419d3ac72c2cc43df2d10f704111a40320338
6542 Author: Steven G. Johnson <stevenj@fftw.org>
6543 Date: Tue Jan 10 00:03:32 2006 -0500
6544
6545 eliminate X(seconds) in favor of X(elapsed_since), in paranoia of clock wrap
6546
6547 commit f696d1fe43a496c64fcf0daaa83060ac70c789fb
6548 Author: Steven G. Johnson <stevenj@fftw.org>
6549 Date: Mon Jan 9 23:21:21 2006 -0500
6550
6551 [empty commit message]
6552
6553 commit 95280e070545a42bbd407c52877e6f8b48d778d6
6554 Author: Steven G. Johnson <stevenj@fftw.org>
6555 Date: Mon Jan 9 23:21:06 2006 -0500
6556
6557 hmm, a bit more pessimistic about clock wrapping
6558
6559 commit 47d7479fd14d1baf3102a699e72eb7158fede8bd
6560 Author: Matteo Frigo <athena@fftw.org>
6561 Date: Mon Jan 9 23:20:26 2006 -0500
6562
6563 Revert to md5uint = unsigned int whenever possible, so as to
6564 avoid wasting space for unsigned long on 64-bit machines.
6565
6566 commit 887d8a089ff5b925f88a198bf1b1cc7ddf61392a
6567 Author: Steven G. Johnson <stevenj@fftw.org>
6568 Date: Mon Jan 9 23:12:27 2006 -0500
6569
6570 note why clock() wrap should not be a concern
6571
6572 commit 2991a94ba406fa1f245b62216e463a778f646bbd
6573 Author: Steven G. Johnson <stevenj@fftw.org>
6574 Date: Mon Jan 9 22:57:16 2006 -0500
6575
6576 bugfix in recent timeout changes - check for case where last solver times out
6577
6578 commit 3a0c958aa20c64dab514ec5afe74531e933ac77a
6579 Author: Steven G. Johnson <stevenj@fftw.org>
6580 Date: Mon Jan 9 22:40:26 2006 -0500
6581
6582 started changes list from beta
6583
6584 commit 63922f26968d87550c4fcfd47f41225d056e4977
6585 Author: Matteo Frigo <athena@fftw.org>
6586 Date: Mon Jan 9 22:34:13 2006 -0500
6587
6588 Paranoia.
6589
6590 commit 5bf3d3dd9c6ab2be2e450cd03cabb775bb3db4ca
6591 Author: Matteo Frigo <athena@fftw.org>
6592 Date: Mon Jan 9 22:27:37 2006 -0500
6593
6594 Paranoid assertions.
6595
6596 commit 967f0848ad28ffe357a4758d477c5826075a4bac
6597 Author: Matteo Frigo <athena@fftw.org>
6598 Date: Mon Jan 9 22:13:32 2006 -0500
6599
6600 Added FIXME comment stating the 64-bit uncleaniness of
6601 fftw_tensor_to_bench_tensor().
6602
6603 commit 0a2228df28268ba4855063849942199ed2c86d31
6604 Author: Matteo Frigo <athena@fftw.org>
6605 Date: Mon Jan 9 22:06:05 2006 -0500
6606
6607 Another 64-bit bug.
6608
6609 commit dc20e0d303713ae5664b91eb4762b4a0f5cf0623
6610 Author: Steven G. Johnson <stevenj@fftw.org>
6611 Date: Mon Jan 9 21:54:07 2006 -0500
6612
6613 more Windows DLL nonsense
6614
6615 commit d884e3edc5ca24864e92470966ed04aeaccab8f9
6616 Author: Steven G. Johnson <stevenj@fftw.org>
6617 Date: Mon Jan 9 21:18:25 2006 -0500
6618
6619 some additional dllexport tags required to build the test program, due to internal stuff called by hook.c
6620
6621 commit c0fc6ffb403456e03f5e8dc425182e6607c1cd2a
6622 Author: Steven G. Johnson <stevenj@fftw.org>
6623 Date: Mon Jan 9 20:31:15 2006 -0500
6624
6625 [empty commit message]
6626
6627 commit a85549d03edbe4bee47b0248fac7d76d9cdfeb06
6628 Author: Steven G. Johnson <stevenj@fftw.org>
6629 Date: Mon Jan 9 20:30:19 2006 -0500
6630
6631 comment
6632
6633 commit 1f72b4d52a499bd63cd52ec259ae2585c6df2b66
6634 Author: Steven G. Johnson <stevenj@fftw.org>
6635 Date: Mon Jan 9 20:20:28 2006 -0500
6636
6637 [empty commit message]
6638
6639 commit fb0eb0e86fcfffb4c1b5ba17cc520e27914c4ff4
6640 Author: Steven G. Johnson <stevenj@fftw.org>
6641 Date: Mon Jan 9 20:16:50 2006 -0500
6642
6643 clarification
6644
6645 commit 29de1846aefcd05cb14e0dd286a8374a4a9b18e8
6646 Author: Steven G. Johnson <stevenj@fftw.org>
6647 Date: Mon Jan 9 20:12:23 2006 -0500
6648
6649 define FFTW_DLL if DLL_EXPORT (defined by libtool) is supplied
6650
6651 commit b99426a4b113d6c8017a6feeb22d89b8a32211f7
6652 Author: Steven G. Johnson <stevenj@fftw.org>
6653 Date: Mon Jan 9 20:05:11 2006 -0500
6654
6655 whoops
6656
6657 commit 5bb395fcc8798c697d5158b9242d4d914922d9db
6658 Author: Steven G. Johnson <stevenj@fftw.org>
6659 Date: Mon Jan 9 20:00:47 2006 -0500
6660
6661 another stab at Windows DLL mess
6662
6663 commit 9453c5ed5d0c160deb3aef127870b7d65c26d8d1
6664 Author: Matteo Frigo <athena@fftw.org>
6665 Date: Mon Jan 9 19:23:42 2006 -0500
6666
6667 64-bit clean SIMD header file. I missed those because sparse
6668 does not know vector types. Grrr...
6669
6670 commit a27e044b39f52abb6066e070b1a3492b6be2e155
6671 Author: Steven G. Johnson <stevenj@fftw.org>
6672 Date: Mon Jan 9 19:08:36 2006 -0500
6673
6674 this option is called AC_DISABLE_SHARED in the documentation
6675
6676 commit 25cd95982a2acda3a3d6220728768164d6d9c890
6677 Author: Steven G. Johnson <stevenj@fftw.org>
6678 Date: Mon Jan 9 17:34:13 2006 -0500
6679
6680 fixed --with-gcc-arch to work when cross-compiling
6681
6682 commit c0b9d3122ba267c448b98b0ede12bcf27b9b4e02
6683 Author: Matteo Frigo <athena@fftw.org>
6684 Date: Mon Jan 9 12:04:04 2006 -0500
6685
6686 Moved the timeout check back into the search loop, sicut erat in
6687 principio. This gives us a precise control over the timeout. To
6688 avoid the overhead of X(seconds)(), only call X(seconds)() if some
6689 time measurement was taken since the last call to X(seconds)().
6690
6691 commit 8c4448e2b69fb02b70e85405bf58a77ec4c13de9
6692 Author: Steven G. Johnson <stevenj@fftw.org>
6693 Date: Mon Jan 9 00:07:40 2006 -0500
6694
6695 comments
6696
6697 commit 3cd770cab6fac7657b7cd55d6d98f3f516a20fb3
6698 Author: Steven G. Johnson <stevenj@fftw.org>
6699 Date: Sun Jan 8 23:58:23 2006 -0500
6700
6701 generalized transpose-cut routine to be able to call transpose-gcd recursivly; TOMS follow-the-cycles algorithm now seems to be completely superseded
6702
6703 commit 7ce8a67fabd9ed925a7aee905fa50c658ed2fd20
6704 Author: Steven G. Johnson <stevenj@fftw.org>
6705 Date: Sun Jan 8 20:53:18 2006 -0500
6706
6707 [empty commit message]
6708
6709 commit ee3cbdc7ad5dd5bfcb2f1f3df6b5ace55f121f32
6710 Author: Steven G. Johnson <stevenj@fftw.org>
6711 Date: Sun Jan 8 20:52:16 2006 -0500
6712
6713 ignore errors from setscope -- POSIX standard does not require PTHREAD_SCOPE_SYSTEM to be supported, and PTHREAD_SCOPE_PROCESS is usually okay in that case
6714
6715 commit 0ee88684468fc0dae5fd08cc684b8c174d885dd9
6716 Author: Steven G. Johnson <stevenj@fftw.org>
6717 Date: Sun Jan 8 15:58:40 2006 -0500
6718
6719 added TODO comment
6720
6721 commit 839a6d3192f804e3bc018419b90d18aa82d00292
6722 Author: Steven G. Johnson <stevenj@fftw.org>
6723 Date: Sun Jan 8 15:39:28 2006 -0500
6724
6725 whoops
6726
6727 commit d3fdf3fcd234dbb12aea0ab1029db2f121356f1e
6728 Author: Matteo Frigo <athena@fftw.org>
6729 Date: Sun Jan 8 14:44:23 2006 -0500
6730
6731 Boasted ``much faster altivec performance''.
6732
6733 commit 6d85298a5a4c987cf192ae2df25673a8250d265d
6734 Author: Matteo Frigo <athena@fftw.org>
6735 Date: Sun Jan 8 11:44:52 2006 -0500
6736
6737 Added a new pass to the generator to schedule for the pipeline
6738 latency. (This schedule modifies the ``optimal'' cache-oblivious
6739 schedule and hence it uses more registers.)
6740
6741 This pass is currently:
6742
6743 * disabled for non-fma code, under the assumption that this will
6744 run on a register-starved fma.
6745
6746 * enabled for non-simd fma code, under the assumption that this will
6747 run on a processor with 32 or more FP registers. The latency of 4
6748 is conservative and does not introduce too much register pressure.
6749
6750 * enabled for simd fma code, under the assumption that this will run
6751 on altivec. The latency of 8 seems to produce the best results.
6752
6753 commit 1e7e0cd308f67033c681c0ae52836283f874fe51
6754 Author: Steven G. Johnson <stevenj@fftw.org>
6755 Date: Sun Jan 8 03:13:53 2006 -0500
6756
6757 fixed estimator for vrank3-transpose
6758
6759 commit 13dd2e84c1d331d07eaaef76bb78110dbe941446
6760 Author: Steven G. Johnson <stevenj@fftw.org>
6761 Date: Sun Jan 8 02:02:11 2006 -0500
6762
6763 more detail on VC++ workaround
6764
6765 commit 699008e51d100801bb19d99b2dbe595b1e33c445
6766 Author: Steven G. Johnson <stevenj@fftw.org>
6767 Date: Sun Jan 8 00:19:19 2006 -0500
6768
6769 typo
6770
6771 commit 2f842c52fbd7cac9b7564045378e1d649af6dbbf
6772 Author: Steven G. Johnson <stevenj@fftw.org>
6773 Date: Sun Jan 8 00:16:20 2006 -0500
6774
6775 screw it, just use planner for all sub-transposes in vrank3-transpose (still just use memcpy for contiguous copies, though)
6776
6777 commit e6908d5d37b50dff661acfecd3687d1a9fd3300c
6778 Author: Steven G. Johnson <stevenj@fftw.org>
6779 Date: Sat Jan 7 23:13:45 2006 -0500
6780
6781 add an assert
6782
6783 commit 000c5f8a4f6f83143f85268a03709d12ba1e896e
6784 Author: Steven G. Johnson <stevenj@fftw.org>
6785 Date: Sat Jan 7 21:57:34 2006 -0500
6786
6787 vrank3-transpose now uses planner to decide whether to use cpy2d, cpy2d_tiled, etc.
6788
6789 commit f9db072d1270330e0fde90db33e71576d4a2e141
6790 Author: Steven G. Johnson <stevenj@fftw.org>
6791 Date: Sat Jan 7 20:57:16 2006 -0500
6792
6793 too annoying to have isqrt unexpectedly fail for n==0
6794
6795 commit 9c8847c394cdd9bdd3d02a127a2497e09bab2d28
6796 Author: Steven G. Johnson <stevenj@fftw.org>
6797 Date: Sat Jan 7 17:49:37 2006 -0500
6798
6799 clarifications
6800
6801 commit 9fdeaf83ff81ca6931d74b65f8477f95fcfae323
6802 Author: Steven G. Johnson <stevenj@fftw.org>
6803 Date: Sat Jan 7 16:39:20 2006 -0500
6804
6805 comment fix
6806
6807 commit ad7b11b215b77bad24047e811e8bdaa2ee320edb
6808 Author: Steven G. Johnson <stevenj@fftw.org>
6809 Date: Sat Jan 7 15:16:22 2006 -0500
6810
6811 more faq updates
6812
6813 commit 8bc87da1486f5f1a451cc418a345bb12b95479fc
6814 Author: Steven G. Johnson <stevenj@fftw.org>
6815 Date: Sat Jan 7 15:12:16 2006 -0500
6816
6817 enable fma on hppa, update FAQ entry
6818
6819 commit 479aa905ff4136d48a86ef8ea28e46c06c07ee79
6820 Author: Matteo Frigo <athena@fftw.org>
6821 Date: Sat Jan 7 14:06:31 2006 -0500
6822
6823 Accomodate different semantics of 'const' in C and C++
6824
6825 commit cf0d153fd10cf6e894520f58c2ce1e6259b683c9
6826 Author: Matteo Frigo <athena@fftw.org>
6827 Date: Fri Jan 6 23:40:53 2006 -0500
6828
6829 Altivec is called VMX in IBM land.
6830
6831 commit a46734a158edbc1e170c0e043d64fb3a320c8d80
6832 Author: Matteo Frigo <athena@fftw.org>
6833 Date: Fri Jan 6 23:40:16 2006 -0500
6834
6835 Noted faster altivec support.
6836
6837 commit 4e7329c580102980a2862964df1474c403d59f9d
6838 Author: Steven G. Johnson <stevenj@fftw.org>
6839 Date: Fri Jan 6 21:49:10 2006 -0500
6840
6841 updated icc flag detection
6842
6843 commit 2de66ca6567360268fa4f1653c787903471a2ab7
6844 Author: Matteo Frigo <athena@fftw.org>
6845 Date: Fri Jan 6 10:01:50 2006 -0500
6846
6847 Note ``memoize triggen''.
6848
6849 commit c19609ea4726f8e842db68cbf15f2ee94abdf33d
6850 Author: Matteo Frigo <athena@fftw.org>
6851 Date: Fri Jan 6 09:36:51 2006 -0500
6852
6853 Use --enable-threads to generate dependencies in the threads/ directory.
6854
6855 commit 7538d17a7e277e5f3099b285f85944ee81df6a7c
6856 Author: Matteo Frigo <athena@fftw.org>
6857 Date: Fri Jan 6 09:26:29 2006 -0500
6858
6859 Workaround to icc #defining __GNUC__.
6860
6861 commit 3623ea4c4e5649470d360af6c89410b22da9b9ef
6862 Author: Matteo Frigo <athena@fftw.org>
6863 Date: Fri Jan 6 09:21:19 2006 -0500
6864
6865 Switched name to 3.1-beta1.
6866
6867 commit 5022d2e2f5e385f82c9b298f958a6935de39233c
6868 Author: Matteo Frigo <athena@fftw.org>
6869 Date: Thu Jan 5 23:08:44 2006 -0500
6870
6871 More thoughts.
6872
6873 commit d6262891e97139b27fdb2ca73addf122be568d17
6874 Author: Matteo Frigo <athena@fftw.org>
6875 Date: Thu Jan 5 22:30:51 2006 -0500
6876
6877 Note wish that (block_size % 4) == 0.
6878
6879 commit d6779fe4008a3ff1b5341cc82946e24a6e0cf418
6880 Author: Matteo Frigo <athena@fftw.org>
6881 Date: Thu Jan 5 22:19:09 2006 -0500
6882
6883 Check alignment of mstart, mcount in SIMD codelets.
6884
6885 commit 3d4fc920479d90ecc75a2256c6306c148d2a7bd8
6886 Author: Matteo Frigo <athena@fftw.org>
6887 Date: Thu Jan 5 21:56:19 2006 -0500
6888
6889 Enable threads at bootstrap time, so I get the compiler warnings that
6890 I would otherwise ignore.
6891
6892 commit 90f3ef0fb9b081f29eae1e1923e94ea3bb29d7ba
6893 Author: Matteo Frigo <athena@fftw.org>
6894 Date: Thu Jan 5 18:23:15 2006 -0500
6895
6896 made compilable by c++
6897
6898 commit b68d5ed7c28299cf92764bff3ab8b8f06ec1cf00
6899 Author: Matteo Frigo <athena@fftw.org>
6900 Date: Thu Jan 5 17:39:02 2006 -0500
6901
6902 FIXED: incorrect twiddle_shift()
6903
6904 commit b56739cdd0ea335b6ca48c8dd34103316cc43785
6905 Author: Matteo Frigo <athena@fftw.org>
6906 Date: Thu Jan 5 16:01:51 2006 -0500
6907
6908 Replaced remnants of awake flag with the new enum wakefulness type.
6909
6910 commit 8871d572d270aa76dea86073fc11362c6d516c9a
6911 Author: Matteo Frigo <athena@fftw.org>
6912 Date: Thu Jan 5 11:20:59 2006 -0500
6913
6914 Oops---there is no need to find a free slot.
6915
6916 commit fedf131be6c553e13212c16f7a8f474a0e61fed6
6917 Author: Matteo Frigo <athena@fftw.org>
6918 Date: Thu Jan 5 09:41:58 2006 -0500
6919
6920 Assertions.
6921
6922 commit ff66bb4a211ea2640f833ae48bedb1b34a0b47f2
6923 Author: Matteo Frigo <athena@fftw.org>
6924 Date: Thu Jan 5 09:29:55 2006 -0500
6925
6926 Commented the hash table lookup algorithm.
6927
6928 commit 4bafb30ddfc85ff74bb758a23532ce60bb621d19
6929 Author: Matteo Frigo <athena@fftw.org>
6930 Date: Thu Jan 5 09:12:00 2006 -0500
6931
6932 Fixed infinite loop in hashtable lookup/insert. Grrr...
6933
6934 commit 02a5374038e878b9e0cfe88ee88b0389bf20a255
6935 Author: Steven G. Johnson <stevenj@fftw.org>
6936 Date: Wed Jan 4 22:04:28 2006 -0500
6937
6938 updated copyright years to 2006
6939
6940 commit b2d48f50aa87d2b9e5f57c6c04959b7ce0984732
6941 Author: Steven G. Johnson <stevenj@fftw.org>
6942 Date: Wed Jan 4 21:57:23 2006 -0500
6943
6944 whoops
6945
6946 commit 24baeff279c41dbe00c5fd1b13844175e8f70cfe
6947 Author: Steven G. Johnson <stevenj@fftw.org>
6948 Date: Wed Jan 4 21:52:18 2006 -0500
6949
6950 whoops
6951
6952 commit 490a044a9e2b2f599506ef415c3f87c2b64ba83a
6953 Author: Steven G. Johnson <stevenj@fftw.org>
6954 Date: Wed Jan 4 21:51:40 2006 -0500
6955
6956 more updates for recent pentia/amd
6957
6958 commit 21fc6cf5d45450edd194c6d83d328dd7c27c8142
6959 Author: Matteo Frigo <athena@fftw.org>
6960 Date: Wed Jan 4 20:57:47 2006 -0500
6961
6962 Pruned TODO.
6963
6964 commit 96c862a6929365a5a78a2196cd72c5037082c5d8
6965 Author: Matteo Frigo <athena@fftw.org>
6966 Date: Wed Jan 4 20:43:41 2006 -0500
6967
6968 Prototype of problem_destroy()
6969
6970 commit 700b7dcd5331fe4317b214d64086771a404814ef
6971 Author: Steven G. Johnson <stevenj@fftw.org>
6972 Date: Wed Jan 4 20:43:13 2006 -0500
6973
6974 rm obsoleted TODOs
6975
6976 commit f722e923cd823d4501bc8c3a730fbc09d2c26e06
6977 Author: Matteo Frigo <athena@fftw.org>
6978 Date: Wed Jan 4 20:37:24 2006 -0500
6979
6980 Fallback to 970 if neither -mcpu=power5 nor -mcpu=power4 are supported.
6981
6982 commit b5823feffb1b189d536e5c562959969c247a61c3
6983 Author: Steven G. Johnson <stevenj@fftw.org>
6984 Date: Wed Jan 4 20:29:07 2006 -0500
6985
6986 NEWS updates, clarifications, and reorganization
6987
6988 commit fffa543ce9d6cb43d2c09bf401c029b5f6830356
6989 Author: Steven G. Johnson <stevenj@fftw.org>
6990 Date: Wed Jan 4 19:54:41 2006 -0500
6991
6992 remove some compiler warnings, add an assert check, make estimator work properly for nop plans
6993
6994 commit 3c4889a04995ac9f01ffdb3c4dd0ddc4ef42dc53
6995 Author: Matteo Frigo <athena@fftw.org>
6996 Date: Tue Jan 3 19:34:04 2006 -0500
6997
6998 Two big changes:
6999
7000 1) revised the twiddle generation machinery, to avoid generating
7001 twiddles when measuring, and to use a faster O(sqrt(N)) table
7002 when this entails no loss of precision.
7003
7004 2) implemented new ALLOW_PRUNING estimator hack.
7005
7006 commit 30e3e40e0439f7109a75c063ebb0544bbe68a0c7
7007 Author: Matteo Frigo <athena@fftw.org>
7008 Date: Sat Dec 24 22:08:29 2005 -0500
7009
7010 Estimator tweaks, mostly to favor generic over rader for small n.
7011
7012 commit 2e0e06d43cef1259a6fdda21744c8fa71960ea69
7013 Author: Matteo Frigo <athena@fftw.org>
7014 Date: Sat Dec 24 17:55:47 2005 -0500
7015
7016 Grrr... missing break statement in switch.
7017
7018 commit 12348cb25f94416b730862ea4d0a5e85eb2c98b2
7019 Author: Matteo Frigo <athena@fftw.org>
7020 Date: Sat Dec 24 16:08:50 2005 -0500
7021
7022 Swapped fields TW and OPS in struct ct_desc_s, to make k7 asm
7023 code insensitive to -malign-double. For consistency, changed
7024 struct hc2hc_desc_s in the same way.
7025
7026 commit 33a820de9270d537b4079f08fe258a969c410632
7027 Author: Matteo Frigo <athena@fftw.org>
7028 Date: Sat Dec 24 16:00:42 2005 -0500
7029
7030 Wrong check for infeasible slvndx in imprt().
7031
7032 commit 4b5008a48fbfaf95504f2816b980f971d6678326
7033 Author: Matteo Frigo <athena@fftw.org>
7034 Date: Sat Dec 24 15:56:59 2005 -0500
7035
7036 Removed obsolete function invoke_solver_if_correct_kind().
7037
7038 commit e1959cade352dd407f5c1c87cf37580ef60f6eb3
7039 Author: Matteo Frigo <athena@fftw.org>
7040 Date: Sat Dec 24 14:22:12 2005 -0500
7041
7042 Faster implementation of safe_mulmod(), avoiding divisions altogether.
7043 Works for 0 <= p <= INT_MAX.
7044
7045 commit f827b89e687419b19b7133b64651c3a2f10de064
7046 Author: Matteo Frigo <athena@fftw.org>
7047 Date: Sat Dec 24 12:05:54 2005 -0500
7048
7049 FFTW_ALLOW_LARGE_GENERIC must belong to flags->l, it cannot be
7050 overridden by fftw.
7051
7052 commit 5dbe4dcaa75797cb76e09e4349b526993fb435b2
7053 Author: Steven G. Johnson <stevenj@fftw.org>
7054 Date: Fri Dec 23 20:46:24 2005 -0500
7055
7056 no more need for limits.h, add some explanatory comments
7057
7058 commit 1dba2396d5d50261e6c82014e279b4ac035120f2
7059 Author: Matteo Frigo <athena@fftw.org>
7060 Date: Fri Dec 23 17:50:25 2005 -0500
7061
7062 Paranoia.
7063
7064 commit a09014d7cc40be154096f5b14b0b136985ac39fb
7065 Author: Matteo Frigo <athena@fftw.org>
7066 Date: Fri Dec 23 17:40:41 2005 -0500
7067
7068 Fixed subtle bug involving overflow of the slvndx field in flags_t.
7069
7070 commit 1a5304605e6f104eb147f96a5bc76dad55ad9dbf
7071 Author: Matteo Frigo <athena@fftw.org>
7072 Date: Fri Dec 23 16:33:56 2005 -0500
7073
7074 Note 64-bit clean.
7075
7076 commit 7d6e177477acee44216776a7afff2306b58eb963
7077 Author: Matteo Frigo <athena@fftw.org>
7078 Date: Fri Dec 23 15:34:32 2005 -0500
7079
7080 Threads are now 64-bit clean
7081
7082 commit 208ba330fb9eaaa58a138350dc9f9e965b95bd2c
7083 Author: Matteo Frigo <athena@fftw.org>
7084 Date: Fri Dec 23 13:00:31 2005 -0500
7085
7086 Restored the old numbering TW_NEXT=3 etc, because the k7 code depends
7087 on it.
7088
7089 commit 5a7e2e7cbedf9021d8b278afdd9762f3fe0cc697
7090 Author: Matteo Frigo <athena@fftw.org>
7091 Date: Fri Dec 23 11:58:00 2005 -0500
7092
7093 Portable implementation of MULMOD() and safe_mulmod().
7094 Removed all unnecessary AC_CHECK_SIZEOF() from configure.ac.
7095
7096 commit e515294ed8f991b8efb4dc7a0891c16562783679
7097 Author: Matteo Frigo <athena@fftw.org>
7098 Date: Thu Dec 22 11:12:29 2005 -0500
7099
7100 Inline the loop body in r2r codelets like we do everywhere else.
7101
7102 commit 94210bafc8387499f631cdd6187ab293943261a2
7103 Author: Matteo Frigo <athena@fftw.org>
7104 Date: Thu Dec 22 10:48:53 2005 -0500
7105
7106 Oops.
7107
7108 commit 2dcf5d5b1908062b236d6aa2fba93b28937e9488
7109 Author: Matteo Frigo <athena@fftw.org>
7110 Date: Thu Dec 22 10:25:15 2005 -0500
7111
7112 Renamed X(sin_and_cos)() to X(cexp)().
7113
7114 commit de2f6ff5df500a8d15c1cb36f620d277994ec098
7115 Author: Matteo Frigo <athena@fftw.org>
7116 Date: Wed Dec 21 22:49:58 2005 -0500
7117
7118 Somewhat faster generation of twiddle factors.
7119
7120 commit 2bda3ba8833c53949694b05f2518b57b2cda80a3
7121 Author: Matteo Frigo <athena@fftw.org>
7122 Date: Tue Dec 20 23:50:01 2005 -0500
7123
7124 tweaks
7125
7126 commit 86c8779bcf89bca6fad1812b716a0171b7ab0f91
7127 Author: Matteo Frigo <athena@fftw.org>
7128 Date: Tue Dec 20 22:29:19 2005 -0500
7129
7130 Sped up planner, esp. in estimate mode. The planner now classifies
7131 all solvers into DFT, RDFT, and RDFT2, and it only invokes solvers
7132 appropriate for the problem being planned. Because we have several
7133 hundred solvers, the overhead of calling irrelevant solvers is
7134 significant, and this modification mitigates the issue somewhat.
7135
7136 commit 98ea24afbd44d88617f25cd467def39b934cbed5
7137 Author: Matteo Frigo <athena@fftw.org>
7138 Date: Mon Dec 19 22:04:00 2005 -0500
7139
7140 Eliminated all calls to sprintf() in favor of own routines, so as not
7141 to force users to link stdio and the associated locale/pthreads crap.
7142
7143 commit 112a5e19c813a918315e26a80ed9e1f427aa59c3
7144 Author: Matteo Frigo <athena@fftw.org>
7145 Date: Mon Dec 19 21:27:25 2005 -0500
7146
7147 Implemented routine to print INT, removing the need for c99's
7148 %td format.
7149
7150 commit 5c20f07423e4661b32498afa8071e1f6dacd47c7
7151 Author: Matteo Frigo <athena@fftw.org>
7152 Date: Mon Dec 19 12:06:33 2005 -0500
7153
7154 info->n is size_t
7155
7156 commit 6ae75f3b9b700352da7e3ad728d49d988f80e864
7157 Author: Matteo Frigo <athena@fftw.org>
7158 Date: Sun Dec 18 18:15:04 2005 -0500
7159
7160 Explicit casts in front of pointer difference in printf() context,
7161 just in case INT != ptrdiff_t.
7162
7163 commit 25abe60b6b82d9cab328fbfc8dc17f33ffd6803a
7164 Author: Matteo Frigo <athena@fftw.org>
7165 Date: Sun Dec 18 16:52:38 2005 -0500
7166
7167 Forgot to add %D to print.c
7168
7169 commit 7e07750df2164e8f8c88185b8857c527f145b444
7170 Author: Matteo Frigo <athena@fftw.org>
7171 Date: Sun Dec 18 16:43:26 2005 -0500
7172
7173 Use %D as format character for type INT.
7174
7175 commit 1bf67aff56a4e6b2f0fc41cb8b66e9b09d4b2ea0
7176 Author: Matteo Frigo <athena@fftw.org>
7177 Date: Sun Dec 18 15:14:03 2005 -0500
7178
7179 Changed type of an_int_guaranteed_to_be_zero. Changed name as well.
7180
7181 commit 602b07fee7f1fbb86b429e682fbce4a4f886e0d1
7182 Author: Matteo Frigo <athena@fftw.org>
7183 Date: Sun Dec 18 14:41:31 2005 -0500
7184
7185 converted %o -> INT
7186
7187 commit e99c67870f4d09190598610fc7c1bd5df8e4515e
7188 Author: Matteo Frigo <athena@fftw.org>
7189 Date: Sat Dec 17 20:28:50 2005 -0500
7190
7191 Major 64-bit cleanup.
7192
7193 commit 3cd29a6839b31e093a5c715d6deb2867eafb1b15
7194 Author: Steven G. Johnson <stevenj@fftw.org>
7195 Date: Wed Dec 7 22:39:01 2005 -0500
7196
7197 PGI x86-64 cycle counter, courtesy Cristiano Calonaci
7198
7199 commit 7b830d38cb785513bde604f14a3253e171a75e0c
7200 Author: Matteo Frigo <athena@fftw.org>
7201 Date: Mon Dec 5 21:25:57 2005 -0500
7202
7203 Must insert into hash table when wisdom_state == WISDOM_ONLY,
7204 otherwise wisdom does not work.
7205
7206 commit 9cfa064f6635afd41f01788e5a16a7a56babfca0
7207 Author: Steven G. Johnson <stevenj@fftw.org>
7208 Date: Sat Oct 8 18:08:44 2005 -0400
7209
7210 comment
7211
7212 commit 7fd8f4a4ff768b59317a318d3d83ac0726609868
7213 Author: Matteo Frigo <athena@fftw.org>
7214 Date: Sun Oct 2 11:49:13 2005 -0400
7215
7216 Paranoia: made planner robust against MD5 collisions.
7217
7218 commit 55004ef918346e933b7d46aa529fc76258c0b673
7219 Author: Matteo Frigo <athena@fftw.org>
7220 Date: Tue Sep 27 22:33:18 2005 -0400
7221
7222 Note that --enable-3dnow is unsupported.
7223
7224 commit 317d36cb4265710fe5ccbf3518f15f7f24c076cb
7225 Author: Matteo Frigo <athena@fftw.org>
7226 Date: Tue Sep 27 22:31:04 2005 -0400
7227
7228 * Removed --enable-3dnow support.
7229
7230 * SIMD support for split complex arrays.
7231
7232 commit 2f87ee31a3c1a416b983aee2ad2441b0624f6839
7233 Author: Matteo Frigo <athena@fftw.org>
7234 Date: Tue Sep 27 22:28:41 2005 -0400
7235
7236 Removed --enabled-3dnow, since it is becoming useless as the world
7237 moves to x86-64, and it is a pain to maintain. (We should probably
7238 remove the k7 stuff as well.)
7239
7240 commit e5a5da39405e5960f93478937fea04c98feabf49
7241 Author: Matteo Frigo <athena@fftw.org>
7242 Date: Tue Sep 27 21:59:16 2005 -0400
7243
7244 Missing BEGIN_SIMD(), END_SIMD() statements.
7245
7246 commit 7898dae11c979e9b069616b3d922b09b23b8750f
7247 Author: Matteo Frigo <athena@fftw.org>
7248 Date: Tue Sep 27 12:16:08 2005 -0400
7249
7250 Tweaks
7251
7252 commit 3bc850803f4f000f1c979a3576bdd066c37eaafe
7253 Author: Matteo Frigo <athena@fftw.org>
7254 Date: Tue Sep 27 10:04:32 2005 -0400
7255
7256 Fixed wrong opcount for simd codelets.
7257
7258 commit 2c35b6d0d3217976f3597d04403cfac7a4f7da57
7259 Author: Matteo Frigo <athena@fftw.org>
7260 Date: Tue Sep 27 09:25:50 2005 -0400
7261
7262 Fixed wrong opcount for simd codelets.
7263
7264 commit 27aa07803ba692bbdbc563607e6531222bb56488
7265 Author: Matteo Frigo <athena@fftw.org>
7266 Date: Mon Sep 26 22:58:19 2005 -0400
7267
7268 fixed flop counts
7269
7270 commit 97b8e6bc0d2daddf10da0eb41c94e8e8c4e92bf1
7271 Author: Matteo Frigo <athena@fftw.org>
7272 Date: Mon Sep 26 22:34:40 2005 -0400
7273
7274 Silence warnings
7275
7276 commit 804b1a4d34edaba87c4aa0f6f7fe3f173bb926f8
7277 Author: Matteo Frigo <athena@fftw.org>
7278 Date: Mon Sep 26 20:52:36 2005 -0400
7279
7280 Implemented split-complex SIMD codelets
7281
7282 commit 4c34b9513f4003ec04ebc836dd009d15d4f913f1
7283 Author: Matteo Frigo <athena@fftw.org>
7284 Date: Sun Sep 25 22:25:35 2005 -0400
7285
7286 Generalized the ``store pairs'' trick (now called ``store multiple'').
7287
7288 commit c8eb4f532fe1b280cd93313eab57b1e51cd6d4cf
7289 Author: Matteo Frigo <athena@fftw.org>
7290 Date: Sun Sep 25 18:58:20 2005 -0400
7291
7292 Silence some warnings.
7293
7294 commit 7ecbbeacf952a07cbc1a338fa9bdc9612d99b7bb
7295 Author: Matteo Frigo <athena@fftw.org>
7296 Date: Sat Sep 24 12:37:16 2005 -0400
7297
7298 Removed obsolete cruft
7299
7300 commit 9a8a94ca3fb2d0ee33268ae8527f65260631d958
7301 Author: Matteo Frigo <athena@fftw.org>
7302 Date: Mon Sep 19 22:55:19 2005 -0400
7303
7304 Re-enabled check for <altivec.h> because OSX requires it.
7305
7306 commit 2525a542b0277af07f89f45a3e68c2ac022d4189
7307 Author: Matteo Frigo <athena@fftw.org>
7308 Date: Sun Sep 11 11:03:03 2005 -0400
7309
7310 Check for sizeof(unsigned int) unconditionally, because the
7311 result is used by ifftw.h.
7312
7313 commit 5750c658cabc6d64ab0f9817312b2399d75f4041
7314 Author: Matteo Frigo <athena@fftw.org>
7315 Date: Sun Sep 11 10:59:40 2005 -0400
7316
7317 Higher size limit for t2 codelets.
7318
7319 commit c5134ff6de3bfe5306428398c14cb7dcc9a09afe
7320 Author: Matteo Frigo <athena@fftw.org>
7321 Date: Sun Sep 11 10:50:37 2005 -0400
7322
7323 Heuristic: do not use t2 simd codelets for N>1024.
7324
7325 commit 8c4b74a02763d61fd64c98f01fd2658bf80fbc68
7326 Author: Matteo Frigo <athena@fftw.org>
7327 Date: Mon Sep 5 22:22:50 2005 -0400
7328
7329 Larger tolerance in timer calibration routine.
7330
7331 commit ed07b941c3be22c7f19c569bd29230c683783b47
7332 Author: Matteo Frigo <athena@fftw.org>
7333 Date: Mon Sep 5 16:03:33 2005 -0400
7334
7335 #include <altivec.h> unconditionally. (There is no point in checking.)
7336
7337 commit f03e0aced4c470b2b24d8d5abb94be526833a2b1
7338 Author: Matteo Frigo <athena@fftw.org>
7339 Date: Mon Sep 5 15:23:27 2005 -0400
7340
7341 Removed SSE and SSE2 asm because it was bitrotting. Use the Intel
7342 API instead, which seems to be supported by gcc >= 3.3.
7343 Moved files that require -msse, -msse2 to new directory.
7344
7345 commit a12a85c774d25cb85391f200a8e6d62da2572cce
7346 Author: Matteo Frigo <athena@fftw.org>
7347 Date: Mon Sep 5 12:56:28 2005 -0400
7348
7349 Parse cputypes of the form 7447A,altivecsupported
7350
7351 commit 1d5a7d722689e83fdcccae9edae36ec276b68241
7352 Author: Matteo Frigo <athena@fftw.org>
7353 Date: Mon Sep 5 12:52:30 2005 -0400
7354
7355 Distinguish powerpc 7400 from the 7450, which has a different
7356 pipeline.
7357
7358 commit b363c2bb7fe126fe80afcd974a463349e63a48a6
7359 Author: Matteo Frigo <athena@fftw.org>
7360 Date: Mon Sep 5 12:46:00 2005 -0400
7361
7362 Paranoia: define RIGHT_CPU unconditionally.
7363
7364 commit 558789684b3fa4435a4fab4d86769f2a5ee53b57
7365 Author: Matteo Frigo <athena@fftw.org>
7366 Date: Thu Aug 11 20:56:41 2005 -0400
7367
7368 Removed obsolete name fftw-wisdom2c.
7369
7370 commit d73fb7f9d84bc1acccdf9c8f7f2b71e10b3d7854
7371 Author: Matteo Frigo <athena@fftw.org>
7372 Date: Thu Aug 11 20:55:59 2005 -0400
7373
7374 Avoid creation of temporary files---use cpp magic instead.
7375 This fix solves a security bug and avoids nonportable tempfile
7376 creation hacks.
7377
7378 commit a74941c286a12d9a008c3b89ba558cfab82587af
7379 Author: Matteo Frigo <athena@fftw.org>
7380 Date: Fri Aug 5 10:03:02 2005 -0400
7381
7382 Workaround for with gcc-3.3 altivec bug.
7383
7384 commit 259f7d688fec2615a29b1aeb22321568cdcc4bc4
7385 Author: Steven G. Johnson <stevenj@fftw.org>
7386 Date: Wed Jun 15 21:36:46 2005 -0400
7387
7388 solaris fix: check -pthreads first since gcc does not like -pthread but chokes due to stubbed libc (grr)
7389
7390 commit 261b7c0fcfaa8c8e6a34d06b051c4355bcac60b1
7391 Author: Steven G. Johnson <stevenj@fftw.org>
7392 Date: Fri Jun 3 17:19:56 2005 -0400
7393
7394 note that VC++ bug was fixed in 2005
7395
7396 commit 14832d8b25d4091667d3f0e5c8fd8fa1c14f8ce1
7397 Author: Steven G. Johnson <stevenj@fftw.org>
7398 Date: Mon May 30 16:30:45 2005 -0400
7399
7400 generalized ax_cc_vendor to ax_compiler_vendor
7401
7402 commit b13949fd1df86e14fcd73495557bea7532b49b8c
7403 Author: Steven G. Johnson <stevenj@fftw.org>
7404 Date: Mon May 30 15:55:07 2005 -0400
7405
7406 updated message
7407
7408 commit ead701adfc138233d26e86258f0daa8041a41d37
7409 Author: Steven G. Johnson <stevenj@fftw.org>
7410 Date: Mon May 30 15:45:14 2005 -0400
7411
7412 update for new AC archive format
7413
7414 commit 56c34ca4db1ff26982040ff00e1cb549653ab720
7415 Author: Steven G. Johnson <stevenj@fftw.org>
7416 Date: Mon May 23 23:12:22 2005 -0400
7417
7418 [empty commit message]
7419
7420 commit c04871b2f43fe56cd9e921b4864a26ad354cf3f5
7421 Author: Steven G. Johnson <stevenj@fftw.org>
7422 Date: Mon May 23 18:17:38 2005 -0400
7423
7424 [empty commit message]
7425
7426 commit c4afbfd4ef5235b1b88715bac592b8f091d76d13
7427 Author: Steven G. Johnson <stevenj@fftw.org>
7428 Date: Mon May 23 18:13:08 2005 -0400
7429
7430 more notes
7431
7432 commit 1cf10c2f758f89da2c0f8bd68f0a8c974e93f33c
7433 Author: Steven G. Johnson <stevenj@fftw.org>
7434 Date: Sun May 22 23:37:08 2005 -0400
7435
7436 whoops
7437
7438 commit 568dac7da89c3fe5dbab61ff28e2aa6dc52ca71f
7439 Author: Steven G. Johnson <stevenj@fftw.org>
7440 Date: Sun May 22 22:37:50 2005 -0400
7441
7442 note icc 8.x annoyance
7443
7444 commit 1b1f5c242db3f55c2dfadb248a9fb292981c5e6b
7445 Author: Steven G. Johnson <stevenj@fftw.org>
7446 Date: Sun May 22 22:36:04 2005 -0400
7447
7448 [empty commit message]
7449
7450 commit f66bc7b513029ac91ec983bb3279f3c0dec3468c
7451 Author: Steven G. Johnson <stevenj@fftw.org>
7452 Date: Sun May 22 22:35:34 2005 -0400
7453
7454 note gcc 3.4.[0123] bug, which is fixed in gcc 3.4.4
7455
7456 commit 0f2a7eb61a2bcf44583bd41245ad55c7e78eb70f
7457 Author: Steven G. Johnson <stevenj@fftw.org>
7458 Date: Sun May 22 22:21:26 2005 -0400
7459
7460 added automatic detection of icc architecture flag
7461
7462 commit 7b90a23bc9ceeeb03131b4774aa0ff5d04e91c63
7463 Author: Steven G. Johnson <stevenj@fftw.org>
7464 Date: Sun May 22 21:47:19 2005 -0400
7465
7466 add -no-gcc to icc flags...even if it is Intel's fault, I'm sick of dealing with bug reports about this
7467
7468 commit ff0439a0bc1dc149d302630cb96062fc7fb053f1
7469 Author: Steven G. Johnson <stevenj@fftw.org>
7470 Date: Sun May 22 21:40:59 2005 -0400
7471
7472 added @cindex portability
7473
7474 commit e18637fa933a8a75ef831024c4c966d6a2dff76b
7475 Author: Steven G. Johnson <stevenj@fftw.org>
7476 Date: Sun May 22 21:34:10 2005 -0400
7477
7478 note --without-gcc-arch
7479
7480 commit 7131ee53a750ff084f05b97c67e34a39e1a7011c
7481 Author: Steven G. Johnson <stevenj@fftw.org>
7482 Date: Sun May 22 20:54:54 2005 -0400
7483
7484 bsd ppc detection; some odd 603 types
7485
7486 commit 7f439b2ab6289af0e08134c659480f9589b13387
7487 Author: Steven G. Johnson <stevenj@fftw.org>
7488 Date: Sun May 22 11:53:20 2005 -0400
7489
7490 [empty commit message]
7491
7492 commit 32419ec5a48e285cbcbee2f0a4c49e628fcf6ccb
7493 Author: Steven G. Johnson <stevenj@fftw.org>
7494 Date: Sat May 21 20:34:52 2005 -0400
7495
7496 ensure no spaces in cputype
7497
7498 commit 7a6288d8a7617720cb8c46fc9152a31c7dab793a
7499 Author: Steven G. Johnson <stevenj@fftw.org>
7500 Date: Sat May 21 20:31:41 2005 -0400
7501
7502 nevermind
7503
7504 commit b9bac647b7039e381615e0faac27fc3a8de06eb4
7505 Author: Steven G. Johnson <stevenj@fftw.org>
7506 Date: Sat May 21 20:30:08 2005 -0400
7507
7508 more bsd stuff
7509
7510 commit f1c985e46f8c17122e47ece0e9696258638be1f1
7511 Author: Steven G. Johnson <stevenj@fftw.org>
7512 Date: Sat May 21 20:28:40 2005 -0400
7513
7514 added BSD cpu detection for SPARC and better super/hypersparc detection
7515
7516 commit e35c028649be9cc1568401e9e39eb2e19d1cda3b
7517 Author: Steven G. Johnson <stevenj@fftw.org>
7518 Date: Sat May 21 20:22:11 2005 -0400
7519
7520 comment
7521
7522 commit a0582b1056c2562cd639c18f2827fc124dd79fa6
7523 Author: Steven G. Johnson <stevenj@fftw.org>
7524 Date: Fri May 20 19:40:09 2005 -0400
7525
7526 "alternate" == "alternative" is US-centric
7527
7528 commit 333d9eb5086ed1afa77719e9f24142a8bd5dada9
7529 Author: Steven G. Johnson <stevenj@fftw.org>
7530 Date: Fri May 20 19:36:26 2005 -0400
7531
7532 typo
7533
7534 commit e2d0b93f5de6abb830a0d28324399d4689850b09
7535 Author: Steven G. Johnson <stevenj@fftw.org>
7536 Date: Fri May 20 01:28:34 2005 -0400
7537
7538 clarification
7539
7540 commit f8a4a4af8c47ae8e572e5f169c0eeb0720eb7473
7541 Author: Steven G. Johnson <stevenj@fftw.org>
7542 Date: Tue May 17 18:56:46 2005 -0400
7543
7544 print out estimate-planner time from can_do in verbose>2 mode
7545
7546 commit e1bbc2ce6ff2b094ad3549a5140d6acd0218b7d8
7547 Author: Steven G. Johnson <stevenj@fftw.org>
7548 Date: Mon May 9 00:47:19 2005 -0400
7549
7550 comment
7551
7552 commit 2e2b68117557549932c89d24586be1852a189462
7553 Author: Steven G. Johnson <stevenj@fftw.org>
7554 Date: Thu May 5 23:47:55 2005 -0400
7555
7556 fixes for building Windows DLLs with Cygwin; thanks in part to Stephane Fillod
7557
7558 commit bb8fc9fb4dda639b9f0b1f13ef448e39d71a4b39
7559 Author: Steven G. Johnson <stevenj@fftw.org>
7560 Date: Fri Apr 22 19:47:43 2005 -0400
7561
7562 -ffast-math seems to produce code that is either about the same speed or slightly faster (gcc 3.3 and 4.0, x86)
7563
7564 commit 2f7b1f2707810c171bb85b330c99a94196a257d0
7565 Author: Steven G. Johnson <stevenj@fftw.org>
7566 Date: Fri Apr 22 19:18:23 2005 -0400
7567
7568 power5 fallback to power4 sched for older gcc's
7569
7570 commit 169cba437dfb6f553bb1a8e2a404ca2bf74a5b56
7571 Author: Steven G. Johnson <stevenj@fftw.org>
7572 Date: Fri Apr 22 19:14:53 2005 -0400
7573
7574 check for power5
7575
7576 commit 1978d7cd087b7e6e93133c7b4aa2c612f664203d
7577 Author: Matteo Frigo <athena@fftw.org>
7578 Date: Tue Apr 19 21:55:13 2005 -0400
7579
7580 Removed clause #3
7581
7582 commit 3c385073178a321cc4108d4b88f121276b5d0020
7583 Author: Steven G. Johnson <stevenj@fftw.org>
7584 Date: Tue Apr 19 21:44:57 2005 -0400
7585
7586 license clarification
7587
7588 commit ab865d9025afbb6c923e94956c3e7ebdd64ef75d
7589 Author: Matteo Frigo <athena@fftw.org>
7590 Date: Tue Apr 19 21:42:51 2005 -0400
7591
7592 Changed license of fftw3.h to X11.
7593
7594 commit d851f36c4ff5e1febbc2ed47cb08eba3f8dbaf19
7595 Author: Steven G. Johnson <stevenj@fftw.org>
7596 Date: Mon Apr 11 13:15:12 2005 -0400
7597
7598 delete fixed-input code
7599
7600 commit cc673385bfc98894c37272241fcb6135756d2c14
7601 Author: Matteo Frigo <athena@fftw.org>
7602 Date: Sun Apr 10 16:33:24 2005 -0400
7603
7604 joned L-U-planner branch
7605
7606 commit d4b2b38d4a6b40919a6229bb574ecd49884ad58f
7607 Author: Steven G. Johnson <stevenj@fftw.org>
7608 Date: Thu Apr 7 23:15:02 2005 -0400
7609
7610 ref
7611
7612 commit 8895af84fb9e4970420b21451977fde49072c2b9
7613 Author: Steven G. Johnson <stevenj@fftw.org>
7614 Date: Thu Apr 7 00:11:13 2005 -0400
7615
7616 whoops
7617
7618 commit 6dbfe38e27a7f4a5090917f8b53a03e334a40881
7619 Author: Steven G. Johnson <stevenj@fftw.org>
7620 Date: Wed Apr 6 22:06:21 2005 -0400
7621
7622 added (optional) new split-radix algorithm, enabled with -newsplit; also new -standalone option to omit desc; also -unitary, -normalization, and -normsqr options to generate r2r codelets with various normalization (to match lit. in DCT-II, use: -unitary -normsqr 2)
7623
7624 commit 5e1deadac7dbe4d60d493b86f66b37474388b11e
7625 Author: Matteo Frigo <athena@fftw.org>
7626 Date: Fri Mar 25 08:59:43 2005 -0500
7627
7628 Moved timeout check outside the search loop, because X(seconds) is
7629 expensive.
7630
7631 commit 094cbe955f1ad43c143f7781eb524ede71d164bc
7632 Author: Matteo Frigo <athena@fftw.org>
7633 Date: Sun Mar 20 18:35:53 2005 -0500
7634
7635 Enable vector recursion for in-place problems, otherwise
7636 dftw-genericbuf works only in PATIENT mode.
7637
7638 commit 14a9b596a784705637abb9cd5a47595ed2a4bcbd
7639 Author: Matteo Frigo <athena@fftw.org>
7640 Date: Sun Mar 20 17:53:58 2005 -0500
7641
7642 oops
7643
7644 commit 7ea889cca28101323df5287b988ee6bd96c531a0
7645 Author: Matteo Frigo <athena@fftw.org>
7646 Date: Sun Mar 20 17:49:13 2005 -0500
7647
7648 make solver UGLY for small N
7649
7650 commit a4abcfa708787e3e18b32fc37506992215578c4b
7651 Author: Matteo Frigo <athena@fftw.org>
7652 Date: Sun Mar 20 17:16:37 2005 -0500
7653
7654 new dftw-genericbuf solver
7655
7656 commit 70997fbe34952f59b14245e68e5fd4614d13c3ac
7657 Author: Matteo Frigo <athena@fftw.org>
7658 Date: Sun Mar 20 16:12:44 2005 -0500
7659
7660 new dftw-genericbuf solver
7661
7662 commit 3d40d10cca6f0fb8ed0e327ae23d569829a43768
7663 Author: Matteo Frigo <athena@fftw.org>
7664 Date: Thu Mar 17 21:48:19 2005 -0500
7665
7666 Hmm... what was I thinking?
7667
7668 commit b27eff441bd1e24148569ed9ee02c05c08b46ea4
7669 Author: Matteo Frigo <athena@fftw.org>
7670 Date: Thu Mar 17 19:20:54 2005 -0500
7671
7672 Workaround for a MSVC bug.
7673
7674 commit 433960d78aef7dc12c5611baa3213b4db99f99cc
7675 Author: Matteo Frigo <athena@fftw.org>
7676 Date: Thu Mar 17 08:18:39 2005 -0500
7677
7678 Workaround for a MSVC bug that was reported by Eddie Yee.
7679
7680 commit 0c4f3dfe86c936003eed705208a100c11a5bcce6
7681 Author: Matteo Frigo <athena@fftw.org>
7682 Date: Tue Mar 15 13:25:53 2005 -0500
7683
7684 try both contiguous input and contiguous output when in doubt
7685
7686 commit 155f07c46c6589d374f886a8ed86f985a64642e3
7687 Author: Matteo Frigo <athena@fftw.org>
7688 Date: Tue Mar 15 08:44:41 2005 -0500
7689
7690 Added genfft flag -precompute-twiddles which moves the computation of
7691 the twiddle factors before the main schedule. This flag produces
7692 smaller code everywhere, and slightly faster code on powerpc.
7693 I observe no speed difference on x86.
7694
7695 commit 5cc6165f9756f2faeab137eed5f8c25ebac08773
7696 Author: Steven G. Johnson <stevenj@fftw.org>
7697 Date: Mon Mar 14 21:43:53 2005 -0500
7698
7699 sp
7700
7701 commit 255c6db9915f31c3b323cee61a7900999c7b4cfe
7702 Author: Steven G. Johnson <stevenj@fftw.org>
7703 Date: Mon Mar 14 21:43:05 2005 -0500
7704
7705 whoops, spelling error (thanks to Steve Eddins for bug report)
7706
7707 commit 556965536b7671795bc6e4ef86edfffe75b2ffd9
7708 Author: Matteo Frigo <athena@fftw.org>
7709 Date: Sat Mar 12 15:03:47 2005 -0500
7710
7711 Do not approximate pcost = vl * child->pcost unless child is guaranteed
7712 not to be a simple codelet.
7713
7714 commit a5282a50ce6211585a443fa099e2fa6e47450ceb
7715 Author: Matteo Frigo <athena@fftw.org>
7716 Date: Wed Mar 9 20:00:02 2005 -0500
7717
7718 Relaxed applicability conditions.
7719
7720 commit 2496640b61c0ac594325d4fa68e3729873c004bd
7721 Author: Matteo Frigo <athena@fftw.org>
7722 Date: Wed Mar 9 00:05:47 2005 -0500
7723
7724 Minor optimization
7725
7726 commit 81c49148f9fb58b0c541b2636b37bd8422a458b1
7727 Author: Matteo Frigo <athena@fftw.org>
7728 Date: Tue Mar 8 22:14:02 2005 -0500
7729
7730 Interpret <N>K to mean <N>*1024. Similarly for <N>M.
7731
7732 commit b94f2eb04282f6c3c511944e3767a8895a19ef77
7733 Author: Matteo Frigo <athena@fftw.org>
7734 Date: Tue Mar 8 20:44:25 2005 -0500
7735
7736 Hmm... somehow some previous commit got lost.
7737
7738 commit 55b8abdbbc3a2bbb26f005735bd9d121634c4055
7739 Author: Matteo Frigo <athena@fftw.org>
7740 Date: Tue Mar 8 20:30:42 2005 -0500
7741
7742 Paranoia
7743
7744 commit 752db4c71fd1a447d9ed1699ed0382e042d4f89c
7745 Author: Steven G. Johnson <stevenj@fftw.org>
7746 Date: Mon Mar 7 14:30:01 2005 -0500
7747
7748 whoops
7749
7750 commit 6c18ecea25e2a9f685131b49c7365fc35b8c4c7c
7751 Author: Steven G. Johnson <stevenj@fftw.org>
7752 Date: Mon Mar 7 14:29:43 2005 -0500
7753
7754 move fftw-specific HP/UX tweak into configure.ac
7755
7756 commit 3916e3b25257834172ce4eb126a2d745b8943123
7757 Author: Steven G. Johnson <stevenj@fftw.org>
7758 Date: Mon Mar 7 14:19:24 2005 -0500
7759
7760 ax_cc_family -> ax_cc_vendor (vendor names are easier to remember), add checks for many new compilers, use in ax_cc_maxopt
7761
7762 commit a0ad3ef6add8118e82611c08b4c252ec8346efea
7763 Author: Matteo Frigo <athena@fftw.org>
7764 Date: Sun Mar 6 21:36:05 2005 -0500
7765
7766 Count FMA as one flop in estimator when HAVE_FMA
7767
7768 commit 10a57b3a5a428bab777ec22f4eb83203498a743a
7769 Author: Matteo Frigo <athena@fftw.org>
7770 Date: Sun Mar 6 19:16:06 2005 -0500
7771
7772 Do not try radix-2 generic.
7773
7774 commit e38ef2e30e6f41fb2301acf208ff7f9b775de0ac
7775 Author: Matteo Frigo <athena@fftw.org>
7776 Date: Sun Mar 6 13:04:23 2005 -0500
7777
7778 Use -O3 for xlc now that we use -O for CODELET_OPTIM
7779
7780 commit be3c47c96bcc1ef146a296202b53db7a457b3230
7781 Author: Matteo Frigo <athena@fftw.org>
7782 Date: Sun Mar 6 13:02:41 2005 -0500
7783
7784 New AX_CC_FAMILY macro, that detects the compiler based on symbols
7785 that it defines (as opposed to the name of the compiler).
7786 We need to start use this strategy everywhere else.
7787
7788 commit 562882d5c889b0bce256013a056ce07f55c27dfb
7789 Author: Matteo Frigo <athena@fftw.org>
7790 Date: Sun Mar 6 11:33:15 2005 -0500
7791
7792 Runtime checks to guarantee small strides.
7793
7794 commit 1fcf24126783752b3ab8f35f480a0e5d0fa90aab
7795 Author: Matteo Frigo <athena@fftw.org>
7796 Date: Sat Mar 5 20:09:25 2005 -0500
7797
7798 Reduced the search space for rank-0 transforms
7799
7800 commit 77cbffe7c30bbac4d294cd2c7321163054732418
7801 Author: Steven G. Johnson <stevenj@fftw.org>
7802 Date: Fri Mar 4 17:50:29 2005 -0500
7803
7804 little assert
7805
7806 commit 495b9d7617c0167346817c4d5620fe80ee2d1194
7807 Author: Matteo Frigo <athena@fftw.org>
7808 Date: Tue Mar 1 09:19:16 2005 -0500
7809
7810 Implemented directbuf, enabled for now.
7811
7812 commit 1869b027f29cef23f101026dee512744fba87eaa
7813 Author: Matteo Frigo <athena@fftw.org>
7814 Date: Mon Feb 28 22:21:14 2005 -0500
7815
7816 Unified dftw-direct, dftw-directbuf in an attempt to tame code
7817 growth
7818
7819 commit 82fce69cd912d2a58b86a5699c04d2eea3b9a536
7820 Author: Steven G. Johnson <stevenj@fftw.org>
7821 Date: Sun Feb 27 13:51:24 2005 -0500
7822
7823 fixed copyright
7824
7825 commit 7d1a5530230d76d105f3ed4aeebdf4f708ed0e8a
7826 Author: Matteo Frigo <athena@fftw.org>
7827 Date: Sat Feb 26 22:21:03 2005 -0500
7828
7829 silence warnings
7830
7831 commit 753ab3b636f099eedb841e643898aed3e8c5c817
7832 Author: Matteo Frigo <athena@fftw.org>
7833 Date: Sat Feb 26 22:19:16 2005 -0500
7834
7835 oops
7836
7837 commit a64fecb2ccd2670c6b37d40d70558d553e4cb17d
7838 Author: Matteo Frigo <athena@fftw.org>
7839 Date: Sat Feb 26 21:28:39 2005 -0500
7840
7841 Tweaking while thinking about a higher-rank transposer (bitreverser)
7842
7843 commit 9c7a7d3c45be7ca132fdece876ebea7eb053fad7
7844 Author: Matteo Frigo <athena@fftw.org>
7845 Date: Sat Feb 26 20:06:49 2005 -0500
7846
7847 Transposed the buffer, and skewed it. This allows for contiguous
7848 copy operations, and the codelet should not incur associativity
7849 conflicts if the buffer is large.
7850
7851 commit 521fa92ebcf99b32b35cb4c26b304f42a2812e22
7852 Author: Steven G. Johnson <stevenj@fftw.org>
7853 Date: Sat Feb 26 18:14:11 2005 -0500
7854
7855 make tensor_max_index more reasonable (take maximum of input and output
7856 max indices, computed separately)
7857
7858 commit c6c2bcbb2b8c8f3b1da7d5465e4bee93905c8d32
7859 Author: Matteo Frigo <athena@fftw.org>
7860 Date: Sat Feb 26 10:04:30 2005 -0500
7861
7862 Use cpy2d instead of cpy2d_tiled, because vl may be too large.
7863
7864 commit 269e71f3db6c3d1bcf8dc77e25983dcc9989d5f7
7865 Author: Matteo Frigo <athena@fftw.org>
7866 Date: Sat Feb 26 00:31:52 2005 -0500
7867
7868 Fixed old bug that was introduced with yesterday's changes.
7869
7870 commit e769a1735dd71165677025498471db8a41271198
7871 Author: Matteo Frigo <athena@fftw.org>
7872 Date: Fri Feb 25 21:54:23 2005 -0500
7873
7874 ``Interesting'' switch statement.
7875
7876 commit 7e729390b41355c7abf6c2a3901dec6cb40c4c23
7877 Author: Matteo Frigo <athena@fftw.org>
7878 Date: Fri Feb 25 12:29:54 2005 -0500
7879
7880 Disabled -reorder-loads -reorder-stores, since they seem to do
7881 nothing.
7882
7883 commit 4350026ea3252e1dbc25b1539941ee79b3cb6124
7884 Author: Steven G. Johnson <stevenj@fftw.org>
7885 Date: Fri Feb 25 12:19:10 2005 -0500
7886
7887 Because of the recent changes to kernel/pickdim.c, splitrnk=0 is no
7888 longer equivalent to splitrnk=1 for rnk < 4, where the latter is the
7889 FFTW2 behavior. For small rnk, however, I observe the planner to pretty
7890 consistently choose the FFTW2 behavior (splitrnk=1), despite its not
7891 being asymptotically optimal in the cache oblivious sense. So, make
7892 splitrnk=1 instead of splitrnk=0 the default in FFTW_MEASURE and
7893 FFTW_ESTIMATE modes (rnk > 3 is pretty rare in practice anyway).
7894
7895 commit 3bfeb642d11098a707ca70b7332077b6472917d6
7896 Author: Steven G. Johnson <stevenj@fftw.org>
7897 Date: Fri Feb 25 00:33:27 2005 -0500
7898
7899 tweak
7900
7901 commit 24560b26faac0a352c23e15c892c38a762bbb453
7902 Author: Steven G. Johnson <stevenj@fftw.org>
7903 Date: Fri Feb 25 00:29:09 2005 -0500
7904
7905 slight relaxation
7906
7907 commit cadf7b9d5561d14d8042ad3b051f7f95a010cb1f
7908 Author: Steven G. Johnson <stevenj@fftw.org>
7909 Date: Fri Feb 25 00:21:00 2005 -0500
7910
7911 cruft
7912
7913 commit 42d46a1c8af18b951c978ee2cf1cc57ca106929f
7914 Author: Steven G. Johnson <stevenj@fftw.org>
7915 Date: Fri Feb 25 00:03:14 2005 -0500
7916
7917 added experimental indirect-transpose solver: when transforming the columns of the matrix, allow us to do a transpose to make the DFTs contiguous
7918
7919 commit eec7f69ff78e1b95f1bdd09a2f96b3be5cf1b407
7920 Author: Steven G. Johnson <stevenj@fftw.org>
7921 Date: Thu Feb 24 23:04:58 2005 -0500
7922
7923 check for abort()
7924
7925 commit e1d0f900a4e4444b4ef0fa230de11da87a48a192
7926 Author: Steven G. Johnson <stevenj@fftw.org>
7927 Date: Thu Feb 24 23:04:43 2005 -0500
7928
7929 call abort() on failed assertion
7930
7931 commit 4d8aee345fa2da4b2383722a482d245d38288dad
7932 Author: Matteo Frigo <athena@fftw.org>
7933 Date: Thu Feb 24 21:17:23 2005 -0500
7934
7935 Forgot to change X(isqrt) -> isqrt_maybe
7936
7937 commit 47e79fca2a795dcd96ecf59852cdc53bc883f9d1
7938 Author: Steven G. Johnson <stevenj@fftw.org>
7939 Date: Thu Feb 24 20:18:59 2005 -0500
7940
7941 require finite_rnk
7942
7943 commit 7e29047649fc202d7061c007ce3ba8a3962ed38c
7944 Author: Steven G. Johnson <stevenj@fftw.org>
7945 Date: Thu Feb 24 20:07:38 2005 -0500
7946
7947 #ifdef HAVE_STRING_H must come after rdft.h so that we get config.h
7948
7949 commit d0b93533d99e69f85e2aaf759989f652311206ac
7950 Author: Matteo Frigo <athena@fftw.org>
7951 Date: Thu Feb 24 18:59:40 2005 -0500
7952
7953 Implemented reordering of loads and stores so that the real and
7954 imaginary part are loaded/stored together. This should improve
7955 out-of-cache performance in the presence of associativity conflicts,
7956 and maybe worsen in-cache performance because of worse scheduling.
7957 Enabled for now, for experimental purposes.
7958
7959 commit 827ad1c139031037135765c5600dcf05b58030e4
7960 Author: Steven G. Johnson <stevenj@fftw.org>
7961 Date: Thu Feb 24 18:10:49 2005 -0500
7962
7963 fix comment
7964
7965 commit 35e5d61fd3b5f769ea631e357ac6f55002f74f96
7966 Author: Steven G. Johnson <stevenj@fftw.org>
7967 Date: Thu Feb 24 18:10:23 2005 -0500
7968
7969 better message
7970
7971 commit d2c6d9c9d37a6ea058c48c7445fbaca7089a6489
7972 Author: Steven G. Johnson <stevenj@fftw.org>
7973 Date: Thu Feb 24 18:08:36 2005 -0500
7974
7975 use gcc version > 3.0 as fallback in check for alignment bug
7976
7977 commit 9efbf189a95137e78b39f48e223e66df384eb89c
7978 Author: Steven G. Johnson <stevenj@fftw.org>
7979 Date: Thu Feb 24 18:02:31 2005 -0500
7980
7981 don't use -malign-double unconditionally (it is only available on x86)
7982
7983 commit 858b560880b60856698a28728dd44964d456b7cf
7984 Author: Matteo Frigo <athena@fftw.org>
7985 Date: Thu Feb 24 12:03:30 2005 -0500
7986
7987 Subtler selection of tilesz.
7988
7989 commit c44a6cff160e0ecd38f2a4f56bff4e34ddda2b59
7990 Author: Matteo Frigo <athena@fftw.org>
7991 Date: Thu Feb 24 11:52:25 2005 -0500
7992
7993 Call cpy2d_tiledbuf, not cpy2d_tiled.
7994
7995 commit 826a2387489dd9efde0ed09afc92e91e50a6d578
7996 Author: Matteo Frigo <athena@fftw.org>
7997 Date: Thu Feb 24 11:29:28 2005 -0500
7998
7999 buffer sizes were wrong :-(
8000
8001 commit fdabdfc4ef5010ed7965168b1ab583c296db3637
8002 Author: Matteo Frigo <athena@fftw.org>
8003 Date: Thu Feb 24 11:19:01 2005 -0500
8004
8005 Single function for computing tile size. Eliminate spurious assertions.
8006
8007 commit add19c2d3c32f843ff951cc227dc4ce1221fafb6
8008 Author: Matteo Frigo <athena@fftw.org>
8009 Date: Thu Feb 24 10:00:02 2005 -0500
8010
8011 Do tiling recursively.
8012
8013 commit 203fc5647fea6fe99f2d23cc43a24eeea47aee49
8014 Author: Matteo Frigo <athena@fftw.org>
8015 Date: Thu Feb 24 09:40:30 2005 -0500
8016
8017 Reworked tiled transposes; provide tiling with and without buffering.
8018 I can't believe that one has to waste his life with this @#$%.
8019
8020 commit c92a1fc69c9315d97f71a3070003d37923ac02b8
8021 Author: Matteo Frigo <athena@fftw.org>
8022 Date: Wed Feb 23 22:21:19 2005 -0500
8023
8024 Clarified logic. I am not sure why the code was so confusing to begin
8025 with. The computation of *dp in the which_dim == 0 case was also
8026 wrong, returning e.g. *dp == -1 if sz->rnk == 1.
8027
8028 commit 44692fa46d7313f08a624ec68bd421e282fa139f
8029 Author: Matteo Frigo <athena@fftw.org>
8030 Date: Wed Feb 23 22:00:15 2005 -0500
8031
8032 Enable aggressive inlining in codelets only, to avoid code bloat.
8033
8034 commit e94240f1731b33ff9ad18ffe4c14a08a7d66d65a
8035 Author: Matteo Frigo <athena@fftw.org>
8036 Date: Wed Feb 23 21:51:50 2005 -0500
8037
8038 Removed cache-oblivious copy/transpose algorithms in favor of
8039 explicitly blocked algorithms. The cache-oblivious algorithms fail if
8040 there are associativity conflicts, in which case buffering is
8041 necessary, as per Carter and Gatlin. Once you set the buffer size,
8042 there is no point whatsoever to do the algorithm recursively, and you
8043 may as well use blocking.
8044
8045 commit 77aeedee308c8b7bce0ff4c36986f715ced6748c
8046 Author: Steven G. Johnson <stevenj@fftw.org>
8047 Date: Wed Feb 23 18:46:12 2005 -0500
8048
8049 --disable-fortran now differs from --enable-fortran that fails
8050
8051 commit 3cb3e167e76d53336c1307cecb6b1eb975bdda61
8052 Author: Steven G. Johnson <stevenj@fftw.org>
8053 Date: Wed Feb 23 18:42:21 2005 -0500
8054
8055 comment tweak
8056
8057 commit e0f881c48bd199f098eaa764fb17982cf1435475
8058 Author: Steven G. Johnson <stevenj@fftw.org>
8059 Date: Wed Feb 23 18:41:14 2005 -0500
8060
8061 If a Fortran compiler was not detected, just make our best guess at
8062 what wrappers to use...I'm sick of dealing with user complaints from
8063 cases where wrapper detection fails for whatever reason.
8064
8065 commit aa2c11cd3b47c6352d13b8f869f858082bb7a52a
8066 Author: Steven G. Johnson <stevenj@fftw.org>
8067 Date: Wed Feb 23 18:10:40 2005 -0500
8068
8069 fflush(stdout) after print_plan, in case F77 doesn't
8070
8071 commit 76bdaf349e332587c7b5b4ae1fe55f4d3c0cc92d
8072 Author: Matteo Frigo <athena@fftw.org>
8073 Date: Tue Feb 22 22:54:42 2005 -0500
8074
8075 --enable-sse is necessary after all, to generate all dependencies
8076 correctly.
8077
8078 commit 5844ac653fc5e937e4f2939d8a73dcc282657fd2
8079 Author: Matteo Frigo <athena@fftw.org>
8080 Date: Tue Feb 22 22:32:06 2005 -0500
8081
8082 Put cpy2d_pair into its own file, so that I can experiment with
8083 buffering of nontwiddle codelets.
8084
8085 commit e7d485c4f71be2a762c91d4d7e96a321afdfe858
8086 Author: Matteo Frigo <athena@fftw.org>
8087 Date: Tue Feb 22 20:07:11 2005 -0500
8088
8089 Copy rfftwnd.png from ${srcdir}, not $PWD
8090
8091 commit 0c56019ec6dc8f3c778b628a8a0b6094cd8a31d0
8092 Author: Matteo Frigo <athena@fftw.org>
8093 Date: Tue Feb 22 17:08:48 2005 -0500
8094
8095 Do not bother memcpy-ing complex numbers.
8096
8097 commit 6accb53a30744a5793b451670a70afb371cceeff
8098 Author: Matteo Frigo <athena@fftw.org>
8099 Date: Tue Feb 22 16:20:46 2005 -0500
8100
8101 Tighther layout of buffers. I am not sure it matters, but just in case...
8102
8103 commit 0f5938fa6bcc89ad947656aa949a89feb73b7c77
8104 Author: Matteo Frigo <athena@fftw.org>
8105 Date: Tue Feb 22 10:13:02 2005 -0500
8106
8107 Usec cpy1d for rank-0 copies
8108
8109 commit 24a0b716253a1914882d738969bc8b101b70380f
8110 Author: Matteo Frigo <athena@fftw.org>
8111 Date: Tue Feb 22 10:06:13 2005 -0500
8112
8113 Implemented in-place transposes with buffering. Moved
8114 copy/transposition routines into own files, so that we can reuse them
8115 from multiple places. TODO: merge vrank3-transpose.c with rank0.c, or
8116 rename vrank3-transpose.c to rank0-fancy.c or something like that;
8117 decide whether square in-place transposes should be in rank0.c or
8118 vrank3-transpose.c; apply FIXME's in vrank3-transpose.c.
8119
8120 commit 52f669f4280a8ad0834f201919290dc382898a4c
8121 Author: Matteo Frigo <athena@fftw.org>
8122 Date: Mon Feb 21 23:29:52 2005 -0500
8123
8124 Indentation should be printed after newline, not at the beginning
8125 of print()
8126
8127 commit decdf03722050f50fba24b8152927c2327109e16
8128 Author: Matteo Frigo <athena@fftw.org>
8129 Date: Mon Feb 21 10:07:24 2005 -0500
8130
8131 generalized in anticipation of more complicated solvers.
8132
8133 commit 2a7b91a46dd814576f0dbfa54f17d38380bd35f0
8134 Author: Matteo Frigo <athena@fftw.org>
8135 Date: Sun Feb 20 22:18:59 2005 -0500
8136
8137 Implemented buffered recursive transpose
8138
8139 commit 4ce9d94def9d52633bb76b107aba65caa8c4fcf4
8140 Author: Matteo Frigo <athena@fftw.org>
8141 Date: Sun Feb 20 18:27:29 2005 -0500
8142
8143 Fixed comment
8144
8145 commit ac7a99027ee51e48f6be6dadcf00eb593d6017d9
8146 Author: Matteo Frigo <athena@fftw.org>
8147 Date: Sun Feb 20 18:22:15 2005 -0500
8148
8149 grand unification of rank0 solvers
8150
8151 commit 20af4f6724d7080f17a83aae996a6fd00e08ae7b
8152 Author: Matteo Frigo <athena@fftw.org>
8153 Date: Sun Feb 20 15:35:24 2005 -0500
8154
8155 manual tail-recursion optimization
8156
8157 commit e834b974175d946c82b66c99c7bf18593f85cd8c
8158 Author: Matteo Frigo <athena@fftw.org>
8159 Date: Sat Feb 19 17:57:44 2005 -0500
8160
8161 implemented check for transpositions
8162
8163 commit 6f6c5d224ae74b757b7013102ab25c018d7f9a30
8164 Author: Matteo Frigo <athena@fftw.org>
8165 Date: Sat Feb 19 17:28:43 2005 -0500
8166
8167 Previous fix was wrong for rdft2 problems.
8168
8169 commit 6bd660a504ef0345ea0f55db133690f9de7218ec
8170 Author: Matteo Frigo <athena@fftw.org>
8171 Date: Sat Feb 19 17:23:36 2005 -0500
8172
8173 vecsz->rnk must be finite for this solver to apply.
8174
8175 commit 05d2a86385b2655cca135d882688ff493eccaa22
8176 Author: Matteo Frigo <athena@fftw.org>
8177 Date: Sat Feb 19 17:15:19 2005 -0500
8178
8179 unified the various simple'' transposers
8180
8181 commit e67ffc01608a1ebeedd99bb1390ff0ad58e33c0c
8182 Author: Matteo Frigo <athena@fftw.org>
8183 Date: Sat Feb 19 16:55:29 2005 -0500
8184
8185 Fixed stupid bug in rec_transpose_swap. Fixed stupid verifier that did not catch the bug.
8186
8187 commit 49f3542f8f1ee7aa2bc7ddb12ded96d4b330b452
8188 Author: Matteo Frigo <athena@fftw.org>
8189 Date: Sat Feb 19 15:24:03 2005 -0500
8190
8191 Minor cleanup of transposition routines.
8192
8193 commit 770952578791d8ac1394ba8e19890fce2779ad67
8194 Author: Matteo Frigo <athena@fftw.org>
8195 Date: Sat Feb 19 09:31:14 2005 -0500
8196
8197 Make the batch size B=Theta(r) instead of B=Theta(1) in buffered
8198 twiddle solvers. Theory: for cache line size L, we want B = Omega(L)
8199 to utilize the cache line fully. We also want B*r =O(Z), where Z is
8200 the size of the cache. It is safe to assume that Z = Theta(L^2):
8201 cache designers will tend to make L as large as they can get away
8202 with, because they don't have to program the machines that they build,
8203 and Z < Theta(L^2) will screw up the little matrix transposition
8204 benchmarks that they use to design the cache. Hence, B=Theta(r) is
8205 the right number.
8206
8207 commit 0fc1650f8f411bc3fd1b6019b33d8e67d54b43a3
8208 Author: Steven G. Johnson <stevenj@fftw.org>
8209 Date: Fri Feb 18 23:47:22 2005 -0500
8210
8211 for --enable-portable-binary, only try -mcpu=$arch and -m$arch on x86,
8212 since these generate non-portable code on every other target (and
8213 some other targets, like Alpha, don't support -mtune=$arch).
8214
8215 commit 77be37a9825edf45432db688f9b6e307fc779320
8216 Author: Matteo Frigo <athena@fftw.org>
8217 Date: Thu Feb 17 21:15:42 2005 -0500
8218
8219 gcc/aix defines _POWER, not __powerpc__ like the rest of the world
8220 does.
8221
8222 commit da4852a84de13f2ed74462052a1081a8517fac9c
8223 Author: Matteo Frigo <athena@fftw.org>
8224 Date: Wed Feb 16 22:30:27 2005 -0500
8225
8226 enable fma for ia64, since it seems to help with the hpux compiler.
8227
8228 commit e9b2b83177aabb8ff8d42f4b239e9eda1fbd10bf
8229 Author: Matteo Frigo <athena@fftw.org>
8230 Date: Wed Feb 16 21:47:48 2005 -0500
8231
8232 [empty commit message]
8233
8234 commit 9f01f364832d025554f5912bd4f71c3c0b972d5c
8235 Author: Matteo Frigo <athena@fftw.org>
8236 Date: Wed Feb 16 15:27:18 2005 -0500
8237
8238 Fixes for darwin
8239
8240 commit ff3f2d0d66afc832a1ec7f70d14e6d1520e40858
8241 Author: Matteo Frigo <athena@fftw.org>
8242 Date: Wed Feb 16 14:27:42 2005 -0500
8243
8244 Made the correctness of the code more obvious.
8245
8246 commit 0eaea796c7d8dfc833c38cc2485c68004bcb9d4c
8247 Author: Steven G. Johnson <stevenj@fftw.org>
8248 Date: Wed Feb 16 12:30:29 2005 -0500
8249
8250 s/with-portable-binary/enable-portable-binary/ to be GNUlly correct; I'm sticking with --with-gcc-arch=arch, however, as --enable-gcc-arch=arch has the wrong connotations for me
8251
8252 commit 1f54539fae28f217a239c3dbc5c66a31784dbcd9
8253 Author: Steven G. Johnson <stevenj@fftw.org>
8254 Date: Wed Feb 16 11:44:48 2005 -0500
8255
8256 whoops
8257
8258 commit 743d6f8aa35cf29485b805e657e72afb83e401cf
8259 Author: Steven G. Johnson <stevenj@fftw.org>
8260 Date: Wed Feb 16 11:23:38 2005 -0500
8261
8262 bless wisdom with patience used to create it
8263
8264 commit 741a55c0cb7529ae5ce8b1b3a01375a3f176a5e0
8265 Author: Steven G. Johnson <stevenj@fftw.org>
8266 Date: Wed Feb 16 11:18:56 2005 -0500
8267
8268 whoops
8269
8270 commit ab2c1f6788b6309abe08b585fa21ac7254e02f07
8271 Author: Steven G. Johnson <stevenj@fftw.org>
8272 Date: Wed Feb 16 10:50:28 2005 -0500
8273
8274 whoops
8275
8276 commit aa37add40de415143b25c5c3fa09d3d212af9ec2
8277 Author: Steven G. Johnson <stevenj@fftw.org>
8278 Date: Tue Feb 15 23:53:53 2005 -0500
8279
8280 added 'timed' planner option
8281
8282 commit 79f70936e6e19cb09dafb45f8ead8d9fff715111
8283 Author: Matteo Frigo <athena@fftw.org>
8284 Date: Tue Feb 15 23:08:29 2005 -0500
8285
8286 Do not use SIMD_CFLAGS. The theory is that if taint.c is unsafe
8287 with SIMD_CFLAGS, then all files in this directory are as well.
8288 Conversely, if these files require SIMD_CFLAGS because they include
8289 "simd.h", then taint.c requires SIMD_CFLAGS as well, and thus we need
8290 some other hack.
8291
8292 commit f9e6da507bcacf5aa503ce42e7cd73c0c501cbe2
8293 Author: Matteo Frigo <athena@fftw.org>
8294 Date: Tue Feb 15 22:49:05 2005 -0500
8295
8296 Do not override CFLAGS in Makefile.am.
8297
8298 commit 932e8f656a8a592700a3ca153c416e3e1504d278
8299 Author: Matteo Frigo <athena@fftw.org>
8300 Date: Tue Feb 15 10:30:12 2005 -0500
8301
8302 Allow users to build long double version even if sizeof(long double)
8303 == sizeof(double)
8304
8305 commit b35d88cdc10b06342c2c39a8d2012a71875aecf6
8306 Author: Matteo Frigo <athena@fftw.org>
8307 Date: Mon Feb 14 19:55:38 2005 -0500
8308
8309 Updated for 3.1
8310
8311 commit 3c20661d7ca87a19ec855d94791bd24a3202e30d
8312 Author: Matteo Frigo <athena@fftw.org>
8313 Date: Mon Feb 14 19:07:14 2005 -0500
8314
8315 Oops, version.h is no longer used
8316
8317 commit 485e6dbbea69f8e6438ec11fdb265cbe3b786464
8318 Author: Matteo Frigo <athena@fftw.org>
8319 Date: Mon Feb 14 18:51:05 2005 -0500
8320
8321 unified fma and non-fma versions
8322
8323 commit 800ea93e6f610aa9a7c15f1e9e7ed779dedefcfa
8324 Author: Matteo Frigo <athena@fftw.org>
8325 Date: Mon Feb 14 14:12:09 2005 -0500
8326
8327 forgot to remove inplace/Makefile from configure.ac
8328
8329 commit 48bfe71f273d592eb0010911c4df16e12df1b9b4
8330 Author: Matteo Frigo <athena@fftw.org>
8331 Date: Mon Feb 14 12:08:52 2005 -0500
8332
8333 Merged dft/codelets/inplace with the main dft/codelets/standard
8334 directory. This step makes dft codelets consistent with the rest
8335 of the naming conventions, and will simplify the eventual merge
8336 of fma and non-fma codelets.
8337
8338 commit 1f70ee8f508d17b3cb0b694d838c71d4b411d740
8339 Author: Matteo Frigo <athena@fftw.org>
8340 Date: Mon Feb 14 11:16:15 2005 -0500
8341
8342 inline altivec constants, since gcc seems to generate better code this way.
8343
8344 commit 454930e2baceefbda8523cfbc103db0061604799
8345 Author: Matteo Frigo <athena@fftw.org>
8346 Date: Sun Feb 13 18:17:32 2005 -0500
8347
8348 group altivec constants into a single array, for faster access
8349
8350 commit 6cfc3df81b5b843ac0641d7aff61b76d29f82a63
8351 Author: Matteo Frigo <athena@fftw.org>
8352 Date: Sun Feb 13 18:15:37 2005 -0500
8353
8354 code cleanup
8355
8356 commit e8d683e0260b327eeedec8e25249bfd8c81cdda9
8357 Author: Matteo Frigo <athena@fftw.org>
8358 Date: Sun Feb 13 10:29:32 2005 -0500
8359
8360 removed some unused stuff
8361
8362 commit d495f6e14d219a63d1ed2a3e77e2c526e185a82c
8363 Author: Matteo Frigo <athena@fftw.org>
8364 Date: Sat Feb 12 22:04:40 2005 -0500
8365
8366 New twiddle scheme for altivec, 3dnow
8367
8368 commit 510cdba23c47b1838f8a027da5680ad9ff21dcf3
8369 Author: Matteo Frigo <athena@fftw.org>
8370 Date: Sat Feb 12 20:17:35 2005 -0500
8371
8372 Implemented new twiddle scheme for sse2
8373
8374 commit fd74e1eb06f6460dc3f0d8b6c5504fc005f98806
8375 Author: Matteo Frigo <athena@fftw.org>
8376 Date: Sat Feb 12 19:57:46 2005 -0500
8377
8378 Implemented experimental t2* codelets, which store twiddle factors
8379 in a more convenient format, at the expense of twice the storage.
8380 Currently only SSE works; I have to port SSE2, altivec, etc. to the
8381 new scheme. After this, we will decide whether these codelets
8382 are worth the price.
8383
8384 commit 9ba2ad18ff0a5c9a683120d7737cc6d343b83246
8385 Author: Matteo Frigo <athena@fftw.org>
8386 Date: Fri Feb 11 08:07:12 2005 -0500
8387
8388 Forgot to define SIMD_STRIDE_OKPAIR
8389
8390 commit 24aa1c39dc04c158a5275310b779bec639962a38
8391 Author: Matteo Frigo <athena@fftw.org>
8392 Date: Thu Feb 10 22:20:00 2005 -0500
8393
8394 fixed sse2, 3dnow, and altivec, as promised
8395
8396 commit fa8ee16c80d02c0a0a19391f9aa5897b37ac004b
8397 Author: Matteo Frigo <athena@fftw.org>
8398 Date: Thu Feb 10 21:47:40 2005 -0500
8399
8400 Generate n2?v_* codelets in such a way that we may or may not
8401 pair stores, depending on which mode happens to work best on
8402 a particular SIMD implementation. sse2, 3dnow, and altivec
8403 are currently broken---will fix soon.
8404
8405 commit 8a141e0f8570683466ef4cf2aa4e8027d7ea698e
8406 Author: Matteo Frigo <athena@fftw.org>
8407 Date: Thu Feb 10 08:53:22 2005 -0500
8408
8409 instantiate altivec constants only once
8410
8411 commit b23eef5ad62b650caafba583fae089d173718eac
8412 Author: Matteo Frigo <athena@fftw.org>
8413 Date: Thu Feb 10 06:37:56 2005 -0500
8414
8415 Fixed alignment checks for new SIMD scheme
8416
8417 commit bf8b613b6a4299e8fcc3b36c1c0ec6c61ae944d6
8418 Author: Matteo Frigo <athena@fftw.org>
8419 Date: Wed Feb 9 21:35:01 2005 -0500
8420
8421 Change n2?v_* codelets to store pairs of vectors, with implicit
8422 2x2 transposition. Works for 2-way SIMD as well. Tested with sse
8423 and sse2. I haven't tried altivec yet, but I observed a huge
8424 speedup when I transformed one codelet by hand.
8425
8426 commit b45f5e7af8fe63c291238eded48cff440ad1f4b9
8427 Author: Matteo Frigo <athena@fftw.org>
8428 Date: Tue Feb 8 21:28:38 2005 -0500
8429
8430 Resurrected old DIF codelets for experimental purposes. They
8431 are disabled for now, but I am keeping the setup around for
8432 future reference.
8433
8434 commit 2b2271e7df0c994e8ed02a49304a2ef279c084d2
8435 Author: Steven G. Johnson <stevenj@fftw.org>
8436 Date: Tue Feb 8 20:10:19 2005 -0500
8437
8438 [empty commit message]
8439
8440 commit c06695785e699d90aab66ce15e718ccab31f42bc
8441 Author: Steven G. Johnson <stevenj@fftw.org>
8442 Date: Tue Feb 8 19:37:09 2005 -0500
8443
8444 clarifications, document --with-portable-binary and --with-gcc-arch
8445
8446 commit 4658829ef2505ec43aab6986fdc4778314c3e0bf
8447 Author: Steven G. Johnson <stevenj@fftw.org>
8448 Date: Tue Feb 8 19:23:41 2005 -0500
8449
8450 [empty commit message]
8451
8452 commit 44be70997db3875b83dfe5dee436014717bdf235
8453 Author: Steven G. Johnson <stevenj@fftw.org>
8454 Date: Tue Feb 8 01:36:22 2005 -0500
8455
8456 more change comments
8457
8458 commit b7802bbb738b279d8d061756f90f03caecd0767a
8459 Author: Steven G. Johnson <stevenj@fftw.org>
8460 Date: Tue Feb 8 00:41:38 2005 -0500
8461
8462 fma is definitely beneficial on Itanium with the HP/UX compiler
8463
8464 commit 95f76ca2081a043388616e815c0364bc6ffde166
8465 Author: Matteo Frigo <athena@fftw.org>
8466 Date: Mon Feb 7 22:58:47 2005 -0500
8467
8468 Silence warnings.
8469
8470 commit fe63ebfa96d081c7d45183e96a8d904d3dcfd226
8471 Author: Steven G. Johnson <stevenj@fftw.org>
8472 Date: Mon Feb 7 22:55:49 2005 -0500
8473
8474 when we compile our own getopt, change symbol names to avoid conflicts (e.g. avoid build failure on MacOS X with --enable-shared)
8475
8476 commit 151717343ac9ebd9197dfa0065de4176fa9d0894
8477 Author: Steven G. Johnson <stevenj@fftw.org>
8478 Date: Mon Feb 7 22:36:42 2005 -0500
8479
8480 grr, more bugfixes for in-place case
8481
8482 commit ca853db7099972e3b3840be7d1d3ee1abff00d04
8483 Author: Matteo Frigo <athena@fftw.org>
8484 Date: Mon Feb 7 22:29:35 2005 -0500
8485
8486 removed relics of FRANZ mode
8487
8488 commit b5015c430276d969565a9b6fe816a55556f8d6f7
8489 Author: Matteo Frigo <athena@fftw.org>
8490 Date: Mon Feb 7 18:48:36 2005 -0500
8491
8492 Somehow xlc does not like ``vector int dummy;''
8493
8494 commit e8ba7b5c1885c85755dd33973ec8d2c5305f41e9
8495 Author: Matteo Frigo <athena@fftw.org>
8496 Date: Mon Feb 7 13:59:47 2005 -0500
8497
8498 There is no need to enable sse to make the distribution. This might
8499 have been true in the past but not anymore.
8500
8501 commit fea3ce788e0bd8cfd350e05d05c418e90b27ec63
8502 Author: Matteo Frigo <athena@fftw.org>
8503 Date: Mon Feb 7 13:55:17 2005 -0500
8504
8505 Oops---included fortran file in C sources
8506
8507 commit 2f4c935bb52c2e34940f4ad58ea6fd26ba30740f
8508 Author: Matteo Frigo <athena@fftw.org>
8509 Date: Mon Feb 7 13:42:45 2005 -0500
8510
8511 Set version string at ``make dist'' time, not at ``configure'' time,
8512 so we know whether a user is using the fma version or not.
8513
8514 commit fcd17cfa8271300c8a41d87c9abd4968502ebaca
8515 Author: Matteo Frigo <athena@fftw.org>
8516 Date: Sun Feb 6 17:00:33 2005 -0500
8517
8518 Removed useless files
8519
8520 commit 2707963bd735e791f7f5b8200c8c9d4f155bc4f8
8521 Author: Matteo Frigo <athena@fftw.org>
8522 Date: Sun Feb 6 16:59:39 2005 -0500
8523
8524 Different (simpler?) way to prevent the compiler from optimizing loop
8525 inductive variables. We now explicitly corrupt stride variables by
8526 xor-ing them with another variable that happens to be zero (but the
8527 compiler does not know it). In this way, the compiler does not
8528 attempt to extract a zillion loop indices from codelets, which would
8529 overflow the register set. Set the -fno-loop-optimize flag to further
8530 help the process.
8531
8532 Consequences: removed m* codelets. Smaller library size. Slightly
8533 faster code with gcc/powerpc (including altivec). Much faster code
8534 with xlc/powerpc. No changes for gcc/pentium. Maybe slightly faster
8535 with icc/pentium.
8536
8537 commit 1e222893c8c84f35b16a63384ad1239e471ce684
8538 Author: Steven G. Johnson <stevenj@fftw.org>
8539 Date: Sat Feb 5 18:51:08 2005 -0500
8540
8541 paranoia about in-place rodft00 plans
8542
8543 commit 1d442744933c7161e86dd825d65aeb3d0c640e53
8544 Author: Steven G. Johnson <stevenj@fftw.org>
8545 Date: Sat Feb 5 18:39:55 2005 -0500
8546
8547 don't believe pcost when using the estimator...there is no point, and
8548 it screws up estimator hacks to prefer in-codelet loops to vecloops
8549
8550 commit 9ad39d1cad4ef56e0c29fc64a12a76e2e6195c52
8551 Author: Matteo Frigo <athena@fftw.org>
8552 Date: Sat Feb 5 18:34:25 2005 -0500
8553
8554 Reduced optimization level from -O3 to -O for xlc, since -O generates
8555 faster code.
8556
8557 commit 91fa9ff722538be49b29c22a3174cef3fdce9c25
8558 Author: Steven G. Johnson <stevenj@fftw.org>
8559 Date: Sat Feb 5 16:26:58 2005 -0500
8560
8561 whoops, only applicable to redft00/rodft00 plans
8562
8563 commit 6591b1e69eec3c3d11199ec3f84c341aa8e754db
8564 Author: Steven G. Johnson <stevenj@fftw.org>
8565 Date: Sat Feb 5 16:22:39 2005 -0500
8566
8567 fixed in-place operation, and don't create size-0 sub-plans
8568
8569 commit f01834e572803db476083af9b0a0906b951ac9d0
8570 Author: Matteo Frigo <athena@fftw.org>
8571 Date: Fri Feb 4 11:30:30 2005 -0500
8572
8573 Autodetect altivec on linux. This code works with gcc-3.4 and
8574 -maltivec, with or without -mabi=altivec. The code *should* work with
8575 gcc-3.3 without -mabi=altivec. However, disabling -mabi=altivec on
8576 gcc-3.4 produces much worse code (I don't know why).
8577
8578 commit 2ac42677bbf31c868ad589a378f93887163910c1
8579 Author: Steven G. Johnson <stevenj@fftw.org>
8580 Date: Fri Jan 28 00:04:58 2005 -0500
8581
8582 update reference
8583
8584 commit 2f3db335dab469a165ed2d9a4f19435371ef9590
8585 Author: Steven G. Johnson <stevenj@fftw.org>
8586 Date: Thu Jan 27 15:48:28 2005 -0500
8587
8588 note that DCT-II/III are often called the'' DCT/DCT
8589
8590 commit a2480b0a7742cb4792f0a17ef54fcfa47bf9299f
8591 Author: Steven G. Johnson <stevenj@fftw.org>
8592 Date: Fri Jan 21 14:42:04 2005 -0500
8593
8594 added MSVC++ for ia64 (based on information at http://www.intel.com/cd/ids/developer/asmo-na/eng/19949.htm?prn=Y)
8595
8596 commit fa86c1be03f8a3ac77ad8f17a4a0db76b8a08d04
8597 Author: Steven G. Johnson <stevenj@fftw.org>
8598 Date: Fri Jan 21 14:22:50 2005 -0500
8599
8600 vc++ defines _M_AMD64 on x86-64, apparently
8601
8602 commit 905e261576a2333fdc356609f6f6533740716663
8603 Author: Steven G. Johnson <stevenj@fftw.org>
8604 Date: Tue Jan 18 22:30:27 2005 -0500
8605
8606 avoid gratuitous breakage with -Werror, requested by Simon Perreault
8607
8608 commit 6fb09d4fad8df9be7c5cadda330234fbcf6bdecd
8609 Author: Steven G. Johnson <stevenj@fftw.org>
8610 Date: Mon Jan 17 18:54:55 2005 -0500
8611
8612 comment typo
8613
8614 commit 2f9aac9cff6654101febb130659eab9345b58783
8615 Author: Steven G. Johnson <stevenj@fftw.org>
8616 Date: Sat Jan 15 16:56:23 2005 -0500
8617
8618 bumped shared-lib revision#
8619
8620 commit c793a51d3eafa054b132ebbc6095810261ac56b6
8621 Author: Steven G. Johnson <stevenj@fftw.org>
8622 Date: Sat Jan 15 16:35:42 2005 -0500
8623
8624 add X(estimate_cost) to get estimator cost, and print from bench, to aid in tweaking estimator
8625
8626 commit ef81def3aef05a8e513d2c28f9eba162af22020b
8627 Author: Steven G. Johnson <stevenj@fftw.org>
8628 Date: Sat Jan 15 14:57:56 2005 -0500
8629
8630 [empty commit message]
8631
8632 commit 1b90ee6f155399994c4234601dfdce43c854555e
8633 Author: Steven G. Johnson <stevenj@fftw.org>
8634 Date: Sat Jan 15 12:57:07 2005 -0500
8635
8636 formatting fix
8637
8638 commit 2abab58ebcf1286120285091b31ff706fa81cf81
8639 Author: Steven G. Johnson <stevenj@fftw.org>
8640 Date: Sat Jan 15 12:31:28 2005 -0500
8641
8642 tweaks
8643
8644 commit 044466122b66a254d87c396cbf0b17039543fd13
8645 Author: Steven G. Johnson <stevenj@fftw.org>
8646 Date: Sat Jan 15 12:03:24 2005 -0500
8647
8648 use less buffer space
8649
8650 commit 3e78c0361397476b699825b883be3d32331e8439
8651 Author: Steven G. Johnson <stevenj@fftw.org>
8652 Date: Sat Jan 15 01:41:58 2005 -0500
8653
8654 added split-radix-based dct/dst I for odd n
8655
8656 commit d994d2ded5077bfb54d19ee5c062e607b73ce73a
8657 Author: Steven G. Johnson <stevenj@fftw.org>
8658 Date: Fri Jan 14 21:50:08 2005 -0500
8659
8660 [empty commit message]
8661
8662 commit cf8ef77af5eddfdda0d6c952ae0ae1955890bca4
8663 Author: Steven G. Johnson <stevenj@fftw.org>
8664 Date: Fri Jan 14 21:49:55 2005 -0500
8665
8666 warn silly users who confuse CVS id with FFTW version
8667
8668 commit e7ab0f25025fb3be5f73408419e51a2fcf54f031
8669 Author: Steven G. Johnson <stevenj@fftw.org>
8670 Date: Fri Jan 14 16:57:36 2005 -0500
8671
8672 get sparc cpu type on solaris as well as with linux
8673
8674 commit e82ef68d349c8df79cb772c944164b79b7f2c77a
8675 Author: Steven G. Johnson <stevenj@fftw.org>
8676 Date: Thu Jan 13 19:21:58 2005 -0500
8677
8678 detect prescott mobile (f37)
8679
8680 commit 3622c28434b7292df2153c577f8262a2974fd6ce
8681 Author: Steven G. Johnson <stevenj@fftw.org>
8682 Date: Thu Jan 13 18:09:52 2005 -0500
8683
8684 use cpuid for x86_64 as well as i[56]86
8685
8686 commit ba6d8352bbd435da164d15a693e824711bcd86ce
8687 Author: Steven G. Johnson <stevenj@fftw.org>
8688 Date: Thu Jan 13 17:59:55 2005 -0500
8689
8690 update with x86info 1.7 and other sources (identify k8, nocona, etc), handle nonzero leading bytes in eax
8691
8692 commit 92d9e4b244a2689bc7fb64105d20c874d09f9cca
8693 Author: Steven G. Johnson <stevenj@fftw.org>
8694 Date: Thu Jan 13 16:30:33 2005 -0500
8695
8696 compactified check for JOINABLE; use AC_DEFINE_UNQUOTED instead of AC_DEFINE for PTHREAD_CREATE_JOINABLE (thanks to Oliver Niekrenz for the bug report)
8697
8698 commit 5440f786f094cdfb2b624e1e9050ba74a06ad780
8699 Author: Matteo Frigo <athena@fftw.org>
8700 Date: Wed Jan 12 12:22:13 2005 -0500
8701
8702 The scheduler hack was incorrect because it swapped instructions
8703 of the form A = *B and *B = C. Fixed.
8704
8705 commit 124a19a9d293ffa06f8b50519fc1e53ced2ca1ab
8706 Author: Matteo Frigo <athena@fftw.org>
8707 Date: Tue Jan 11 22:13:24 2005 -0500
8708
8709 Quote expressions such as ``if test $FOO = yes'' when $FOO may be
8710 empty. Also, $GCC is set to either ``yes'' or empty, never to ``no''.
8711
8712 commit d52e4f122a2b71ab9272261bfec25931b8d9cd5b
8713 Author: Matteo Frigo <athena@fftw.org>
8714 Date: Tue Jan 11 19:30:47 2005 -0500
8715
8716 Hmm---somehow the previous commit did not work.
8717
8718 commit ca5f6331f2b2432591707b129dc343705209e482
8719 Author: Matteo Frigo <athena@fftw.org>
8720 Date: Tue Jan 11 16:54:45 2005 -0500
8721
8722 Fixed various gcc-related problems on powerpc:
8723 - gcc-3.4 becomes totally confused by expressions like
8724 vec_add(a, vec_add(b, vec_add(c, ...)))
8725 The compiler uses gigabytes of memory and then crashes, presumably
8726 because of the exponential-time search problem involved in typing the
8727 above expression (since vec_add can take either ints or floats).
8728 I changed VADD and similar macros to be inline functions, thus
8729 constraining the type system.
8730
8731 - New flags
8732 --param inline-unit-growth=1000 --param large-function-growth=1000
8733 to work around limitations of the gcc-3.4 inliner.
8734
8735 commit 43a34b10c3383ccf1277216826b8201c3a0f3276
8736 Author: Matteo Frigo <athena@fftw.org>
8737 Date: Mon Jan 10 21:27:24 2005 -0500
8738
8739 Check for HAVE_ALTIVEC_H
8740
8741 commit 558d64554efbc303c104513b4f6243d2178335a8
8742 Author: Matteo Frigo <athena@fftw.org>
8743 Date: Mon Jan 10 21:09:30 2005 -0500
8744
8745 Remove support for altivec using gcc builtins, since these keep
8746 changing across gcc versions. These changes work on gcc-3.4/linux; I
8747 haven't tried MacOS X yet. (The altivec ``spec'' differs between
8748 Motorola/Apple and gcc, grrr...)
8749
8750 commit d9289c88276c6c878bd61c454049052d420013fa
8751 Author: Matteo Frigo <athena@fftw.org>
8752 Date: Mon Jan 10 18:57:30 2005 -0500
8753
8754 Stylistic changes
8755
8756 commit 34b131fad38155ebb215614d02fba749c35c10ed
8757 Author: Matteo Frigo <athena@fftw.org>
8758 Date: Mon Jan 10 17:34:41 2005 -0500
8759
8760 Changed incorrect ugliness condition.
8761
8762 commit 79acbd2e7f6820db37155925cdb1411a808b5bb4
8763 Author: Steven G. Johnson <stevenj@fftw.org>
8764 Date: Mon Jan 10 16:09:43 2005 -0500
8765
8766 note x86info version number that was used, to make it easier to update
8767 the cpuid for changes in later versions
8768
8769 commit 114d644618ae24c93784d908c47981dfbd32719e
8770 Author: Matteo Frigo <athena@fftw.org>
8771 Date: Mon Jan 10 15:00:51 2005 -0500
8772
8773 Make dft-r2hc non-UGLY for rank-0 problems
8774
8775 commit 1a81406a03ef105ec8c188ee2f77dd605c25d422
8776 Author: Matteo Frigo <athena@fftw.org>
8777 Date: Mon Jan 10 14:50:23 2005 -0500
8778
8779 Do not use -mcpu=970 on power4 processors, because power4 does
8780 not have altivec.
8781
8782 commit 393ce48d0f58f8f7788198d59fa203e19f36db69
8783 Author: Matteo Frigo <athena@fftw.org>
8784 Date: Mon Jan 10 14:48:47 2005 -0500
8785
8786 Note gcc-3.4 problem with inlining.
8787
8788 commit c25eb53aa1676a746b9243a7463a62e3d753fb0f
8789 Author: Matteo Frigo <athena@fftw.org>
8790 Date: Mon Jan 10 13:51:08 2005 -0500
8791
8792 Oops, forgot to remove ``static'' from the declaration of noninlinable
8793 functions.
8794
8795 commit 1447d501267177b4d3f4b5160a7e3b4fc16e7aba
8796 Author: Matteo Frigo <athena@fftw.org>
8797 Date: Mon Jan 10 12:31:26 2005 -0500
8798
8799 Recognize power4. Use ``head -n COUNT'' instead of obsolete ``head
8800 -COUNT'' (which fails on gentoo).
8801
8802 commit 3de5bb754f1b9eb2514402c3b542a3735009f223
8803 Author: Matteo Frigo <athena@fftw.org>
8804 Date: Sun Jan 9 22:12:16 2005 -0500
8805
8806 Remind to add FAQ entry concerning gcc-3.4.[1-3] crashes.
8807
8808 commit 669ca8a3c4968477bf695ebc2961279779e0ec37
8809 Author: Steven G. Johnson <stevenj@fftw.org>
8810 Date: Sun Jan 9 21:53:08 2005 -0500
8811
8812 whoops
8813
8814 commit dcaa702e5c8d172b42b79a0c8ae14a1c8525f0a3
8815 Author: Steven G. Johnson <stevenj@fftw.org>
8816 Date: Sun Jan 9 21:48:02 2005 -0500
8817
8818 support checking for major.minor.patchlevel
8819
8820 commit 584fa85e1d7ca47d71b72c14f7dab1ac448048ec
8821 Author: Matteo Frigo <athena@fftw.org>
8822 Date: Sun Jan 9 21:40:18 2005 -0500
8823
8824 Revert CODELET_OPTIM to -O on IA32, which is faster than -O2.
8825
8826 commit ec5ec6cbc0d0325a26eda54206f7f17253b39bae
8827 Author: Matteo Frigo <athena@fftw.org>
8828 Date: Sun Jan 9 20:30:12 2005 -0500
8829
8830 /bin/sh allows no spaces in assignments.
8831
8832 commit 2b5a7ef73ab8bd55c32f63badf3120d1c4a62a28
8833 Author: Matteo Frigo <athena@fftw.org>
8834 Date: Sun Jan 9 20:05:55 2005 -0500
8835
8836 Make non-inlinable functions external, so that gcc becomes confused
8837 and does not try to inline them.
8838
8839 commit 321304bb50c85a0d5353f7bed5116d33b865dc4b
8840 Author: Matteo Frigo <athena@fftw.org>
8841 Date: Sun Jan 9 13:44:25 2005 -0500
8842
8843 Add -fno-web to CFLAGS, because -fweb destroys FMAs.
8844
8845 commit 2f4f3044ed140d5b0edf1cf7415e0c0035392b40
8846 Author: Matteo Frigo <athena@fftw.org>
8847 Date: Sun Jan 9 10:31:47 2005 -0500
8848
8849 Allow -mcpu=970 besides -mcpu=G5
8850
8851 commit e00f75f258a1b31526633b408804ed3c231cef68
8852 Author: Matteo Frigo <athena@fftw.org>
8853 Date: Sun Jan 9 10:26:20 2005 -0500
8854
8855 configure was not using -fno-schedule-insns :-(
8856
8857 commit e86fb1669da7d88ee98278e686d078ed205237c3
8858 Author: Matteo Frigo <athena@fftw.org>
8859 Date: Sun Jan 9 08:52:40 2005 -0500
8860
8861 In mkplan() and elsewhere, use solver index instead of solver
8862 *pointer*, which looks marginally clearer.
8863
8864 commit 446a3894d345237cabc59f659d5a2186c1f26554
8865 Author: Matteo Frigo <athena@fftw.org>
8866 Date: Sun Jan 9 08:15:36 2005 -0500
8867
8868 Split planner hash table into two tables, for blessed and unblessed
8869 solutions respectively. Now an unblessed solution never overwrites a
8870 blessed solution, thus avoiding wisdom leakage by construction.
8871 Further, forget() is now a O(1) operation, which speeds up the
8872 estimator when the wisdom table is large.
8873
8874 commit ee5380a2af1b55803ff5d64557ff5b9a2005b54b
8875 Author: Matteo Frigo <athena@fftw.org>
8876 Date: Sat Jan 8 21:19:45 2005 -0500
8877
8878 New TODO idea.
8879
8880 commit 8bf4164bfd1d6aef62dac0e09eb5c5ef712ed8f4
8881 Author: Matteo Frigo <athena@fftw.org>
8882 Date: Thu Jan 6 11:02:29 2005 -0500
8883
8884 Split search() into two routines to make the UGLY/NO_UGLY logic
8885 obvious.
8886
8887 commit 1f170904d9848a43935bbd9a7c95d0249fa39138
8888 Author: Steven G. Johnson <stevenj@fftw.org>
8889 Date: Fri Dec 17 16:08:54 2004 -0500
8890
8891 push/pop 64-bit registers on ia64; thanks to Orion Poplawski for the fix
8892
8893 commit c53a0b8fa44ee6e63d41cdf2e4eb12589981f43d
8894 Author: Steven G. Johnson <stevenj@fftw.org>
8895 Date: Thu Dec 9 21:41:09 2004 -0500
8896
8897 patch from FreeBSD ports - FreeBSD does not have memalign, but its
8898 malloc is 16-byte aligned
8899
8900 commit 31b763b9455632deddfb6425b630c4ce458b444e
8901 Author: Steven G. Johnson <stevenj@fftw.org>
8902 Date: Tue Nov 23 17:06:47 2004 -0500
8903
8904 don't compile taint.c with SIMD_CFLAGS (fixed Debian bug #259612)
8905
8906 commit 5f505f2c11b292e769afc7de1e1fbb9bb75d1495
8907 Author: Steven G. Johnson <stevenj@fftw.org>
8908 Date: Thu Nov 18 11:37:32 2004 -0500
8909
8910 revert incorrect change -- codlist.c should be rebuilt, but it is built in the build directory and not in the source directory
8911
8912 commit 247e871cccf86dee2fa5543473c76373e5c46b34
8913 Author: Steven G. Johnson <stevenj@fftw.org>
8914 Date: Wed Nov 17 22:53:53 2004 -0500
8915
8916 $(CODLIST) should be rebuilt only if Makefile.am changes, or
8917 alternatively only in maintainer mode, to prevent stomping in the
8918 source directory during user builds. (Thanks to Grant Cook for the
8919 bug report.)
8920
8921 commit 7b6e452ba1709033b19a1056184ef5e7865773c3
8922 Author: Steven G. Johnson <stevenj@fftw.org>
8923 Date: Sat Nov 13 13:43:01 2004 -0500
8924
8925 corrected #ifdef for icc/ia64, thanks to Matt Boman
8926
8927 commit 80176573959dd2f034b41ab5d38c541281a5987a
8928 Author: Steven G. Johnson <stevenj@fftw.org>
8929 Date: Sat Nov 13 13:34:55 2004 -0500
8930
8931 spelling correction (Larsen, not Larson)
8932
8933 commit 4e72b0ba4a2ee4245a1c996aabcea979753ded6e
8934 Author: Steven G. Johnson <stevenj@fftw.org>
8935 Date: Mon Nov 8 22:12:39 2004 -0500
8936
8937 use standard withval
8938
8939 commit 38a050f2474601bd6fc7f1e9faca33e8656f0a63
8940 Author: Steven G. Johnson <stevenj@fftw.org>
8941 Date: Mon Nov 8 22:09:16 2004 -0500
8942
8943 match doc
8944
8945 commit 8d34c77d933aba00013d63875fb0a8cfdb5c5058
8946 Author: Steven G. Johnson <stevenj@fftw.org>
8947 Date: Mon Nov 8 22:00:34 2004 -0500
8948
8949 formatting
8950
8951 commit f354a059a0559c7816da1f1bfcbf30fef2965584
8952 Author: Steven G. Johnson <stevenj@fftw.org>
8953 Date: Mon Nov 8 21:59:33 2004 -0500
8954
8955 make sure OPENMP_CFLAGS environment variable is used correctly
8956
8957 commit caffdb38e0d057c260d21dcd45fee9d04ba48520
8958 Author: Steven G. Johnson <stevenj@fftw.org>
8959 Date: Mon Nov 8 21:46:50 2004 -0500
8960
8961 replace ax_check_cc_flags with more generic ax_check_compiler_flags
8962
8963 commit bc44b190250c3a55ddc841fdb85623efef8a1d04
8964 Author: Steven G. Johnson <stevenj@fftw.org>
8965 Date: Mon Nov 8 17:49:42 2004 -0500
8966
8967 separate macro for OpenMP test
8968
8969 commit 7bdd20309c710d7f29cb11cd2a130a2a453252ca
8970 Author: Steven G. Johnson <stevenj@fftw.org>
8971 Date: Fri Nov 5 16:24:22 2004 -0500
8972
8973 typo
8974
8975 commit ba62ab6d94914626b1bb5c4fa59d239a92f5789a
8976 Author: Steven G. Johnson <stevenj@fftw.org>
8977 Date: Fri Oct 29 00:48:13 2004 -0400
8978
8979 [empty commit message]
8980
8981 commit bbe80b4b34e5e86fb09b40b44a0f686b07bbd17b
8982 Author: Steven G. Johnson <stevenj@fftw.org>
8983 Date: Thu Oct 28 00:09:38 2004 -0400
8984
8985 better guessing of sparc type on Linux
8986
8987 commit 93d85f0ab3a391bf35f1eb8c51e0d693736fa416
8988 Author: Steven G. Johnson <stevenj@fftw.org>
8989 Date: Wed Oct 27 13:44:08 2004 -0400
8990
8991 note default
8992
8993 commit 78065724b3f4e1170788d4d75cc1c1e318663b06
8994 Author: Steven G. Johnson <stevenj@fftw.org>
8995 Date: Wed Oct 27 13:41:57 2004 -0400
8996
8997 tweak
8998
8999 commit e43858fa862ad22519805870bef8be66593db88c
9000 Author: Steven G. Johnson <stevenj@fftw.org>
9001 Date: Wed Oct 27 13:34:25 2004 -0400
9002
9003 comment
9004
9005 commit af53c27b20c589cc956cc567f7a85d05e5f9996d
9006 Author: Steven G. Johnson <stevenj@fftw.org>
9007 Date: Wed Oct 27 13:31:10 2004 -0400
9008
9009 whoops, m4 is EXTRA_DIST, not SUBDIR, since it doesn't have a Makefile
9010
9011 commit fc7444822d899746b1c4e68cb06847ce95ff12b7
9012 Author: Steven G. Johnson <stevenj@fftw.org>
9013 Date: Wed Oct 27 13:16:57 2004 -0400
9014
9015 silence warnings
9016
9017 commit be281108e1c825de4313ece30b12fd918273b1a9
9018 Author: Steven G. Johnson <stevenj@fftw.org>
9019 Date: Wed Oct 27 13:14:22 2004 -0400
9020
9021 clean up m4 macros; try to detect correct gcc -march flag on x86; new --with-portable-binary, --with-gcc-arch=<arch> flags; use -O2 for codelets with gcc 3.4 to work around bug
9022
9023 commit 9403174ddea85728f959287755950e43901c2d39
9024 Author: Steven G. Johnson <stevenj@fftw.org>
9025 Date: Tue Oct 26 16:46:14 2004 -0400
9026
9027 rename cexp -> mcexp to avoid conflict with C99 builtin
9028
9029 commit d581a67939f4d7c95a0b07b3a4952d35e44bb17c
9030 Author: Steven G. Johnson <stevenj@fftw.org>
9031 Date: Mon Oct 25 16:58:23 2004 -0400
9032
9033 use basename , w/o args, for compiler-name comparisons; also detect Compaq ccc on alpha-linus
9034
9035 commit a1d9fccd5bdda57ae410ba0ce15367e987d64f73
9036 Author: Steven G. Johnson <stevenj@fftw.org>
9037 Date: Sun Oct 24 22:05:10 2004 -0400
9038
9039 note recent icc problems
9040
9041 commit dfddc484065adab609af43ba17821394c23dc5cd
9042 Author: Steven G. Johnson <stevenj@fftw.org>
9043 Date: Sun Oct 24 02:10:12 2004 -0400
9044
9045 whoops, disable semaphores again (for now)
9046
9047 commit a2dad5feeb7e13cc8d93adb55bb59ed0431341be
9048 Author: Steven G. Johnson <stevenj@fftw.org>
9049 Date: Sun Oct 24 02:04:58 2004 -0400
9050
9051 POSIX semaphores are *not* the same as SYSV semaphores
9052
9053 commit 64a5d0fd73897b1f811382dc5238209dfe9672be
9054 Author: Steven G. Johnson <stevenj@fftw.org>
9055 Date: Sun Oct 24 01:18:14 2004 -0400
9056
9057 re-implement threaded stuff; dftw now takes parameters to indicate a portion of m loop
9058
9059 commit 99fecf91b80dfe5aabdd4b3d69cc71639de2c483
9060 Author: Steven G. Johnson <stevenj@fftw.org>
9061 Date: Thu Oct 21 20:44:51 2004 -0400
9062
9063 more C++ notes
9064
9065 commit 77e885e9ca5d60b2b34f126b21cce95382cafc59
9066 Author: Steven G. Johnson <stevenj@fftw.org>
9067 Date: Thu Oct 14 09:50:38 2004 -0400
9068
9069 note bug report for VC++ 6.0 from Dale Dickerhoof
9070
9071 commit e5523dbd23cd0d4beff0d5b53ca76a275b7e5b1f
9072 Author: Steven G. Johnson <stevenj@fftw.org>
9073 Date: Fri Oct 1 16:06:59 2004 -0400
9074
9075 fmt
9076
9077 commit 8e9f882720c1fc5f2c7c3b168a8f48608af95057
9078 Author: Steven G. Johnson <stevenj@fftw.org>
9079 Date: Fri Oct 1 15:59:17 2004 -0400
9080
9081 comment typo
9082
9083 commit 689ac491bc35a2728b1ae0ccc6e1698f84a04f4f
9084 Author: Steven G. Johnson <stevenj@fftw.org>
9085 Date: Fri Oct 1 15:48:09 2004 -0400
9086
9087 bug fix -- ishift/oshift only apply to execution of child plan
9088
9089 commit 6438e86b96980ae10958e4483acf04e80573c1dd
9090 Author: Matteo Frigo <athena@fftw.org>
9091 Date: Thu Sep 30 21:12:47 2004 -0400
9092
9093 New planner that tries never to lose wisdom.
9094
9095 commit 28f9e28b2b6d2c7d5969c93cdf3c460f6fd895a2
9096 Author: Matteo Frigo <athena@fftw.org>
9097 Date: Thu Sep 30 13:36:43 2004 -0400
9098
9099 Nested comment was triggering a warning.
9100
9101 commit 7f1f6a5fe5723ce3079588306a98c43289f6df32
9102 Author: Steven G. Johnson <stevenj@fftw.org>
9103 Date: Fri Sep 10 15:20:07 2004 -0400
9104
9105 system "root" under dgjpp is /dev/env/DJDIR, not /dev/env/DJGPP,
9106 according to djgpp's libc.info; patch confirmed with J. M. Guerrero
9107
9108 commit 354611ae36fd7494d3f90789fa33d6b26febeec2
9109 Author: Steven G. Johnson <stevenj@fftw.org>
9110 Date: Wed Sep 8 18:50:03 2004 -0400
9111
9112 some minor portability fixes for djgpp; thanks to Juan Manuel Guerrero for the patch
9113
9114 commit 133be56f2adeb3f4ab3c394a03da4254f758eacf
9115 Author: Steven G. Johnson <stevenj@fftw.org>
9116 Date: Thu Aug 19 12:41:23 2004 -0400
9117
9118 pointer to tutorial for quick start
9119
9120 commit 6a23ed45415cae1a9825953e80dc99ceee5d185a
9121 Author: Steven G. Johnson <stevenj@fftw.org>
9122 Date: Thu Aug 19 12:39:50 2004 -0400
9123
9124 point users to manual
9125
9126 commit b759a1ca992dee63a97a67ba2beddde782dba6c7
9127 Author: Steven G. Johnson <stevenj@fftw.org>
9128 Date: Sat Aug 7 13:42:22 2004 -0400
9129
9130 minor typo
9131
9132 commit 693ed3bc9f47a262b3502ad06b42be41f68ee47f
9133 Author: Steven G. Johnson <stevenj@fftw.org>
9134 Date: Sun Jul 18 18:54:18 2004 -0400
9135
9136 use __DECCXX for Compaq cxx, not Linux-specific symbol
9137
9138 commit df4ddeeaad67144bd7d6f855f690cf06907f1d56
9139 Author: Steven G. Johnson <stevenj@fftw.org>
9140 Date: Fri Jul 16 13:55:25 2004 -0400
9141
9142 patch by John Bowman to make cycle counter work with DEC cxx under Linux
9143
9144 commit fd9cd11e5b8806245d6b5522fdef29b1626eda0f
9145 Author: Steven G. Johnson <stevenj@fftw.org>
9146 Date: Wed Jun 30 00:45:10 2004 -0400
9147
9148 updated pruned FFT discussion, with link to further details on www.fftw.org/pruned.html
9149
9150 commit 243e4dafca54e62e83d796c176d4af2ce00690b1
9151 Author: Steven G. Johnson <stevenj@fftw.org>
9152 Date: Mon Jun 14 20:08:27 2004 -0400
9153
9154 darwin is based on freebsd
9155
9156 commit fa86af755d34199fa6ddf2a1e40dbedb9898f5bb
9157 Author: Steven G. Johnson <stevenj@fftw.org>
9158 Date: Thu Jun 3 14:23:41 2004 -0400
9159
9160 in --with-windows-f77-mangling, add lowercase + single underscore for Intel compilers, etc. (thanks to David Gomez for the bug report)
9161
9162 commit 3f13a0eb176fe03d5937ef282b9defa42c258876
9163 Author: Steven G. Johnson <stevenj@fftw.org>
9164 Date: Wed Apr 7 00:46:07 2004 -0400
9165
9166 whoops, extra alignment check
9167
9168 commit f0e8345ba78e99831a1589192d6fc3b2e1e41e38
9169 Author: Steven G. Johnson <stevenj@fftw.org>
9170 Date: Wed Apr 7 00:16:49 2004 -0400
9171
9172 disable most 2-float-as-double copying, add alignment check in one remaining place
9173
9174 commit a12d8b846381396d54acbc1748e53cbc0c09baac
9175 Author: Steven G. Johnson <stevenj@fftw.org>
9176 Date: Tue Apr 6 13:49:13 2004 -0400
9177
9178 make sure it is clear that real-even/odd refers to symmetry, not size
9179
9180 commit 920197fd649070eadef659b39572b155a8b0c36c
9181 Author: Steven G. Johnson <stevenj@fftw.org>
9182 Date: Mon Apr 5 20:18:29 2004 -0400
9183
9184 optimization
9185
9186 commit c0d199f22910faaf1f4850900185c161a585f96b
9187 Author: Steven G. Johnson <stevenj@fftw.org>
9188 Date: Fri Apr 2 21:31:00 2004 -0500
9189
9190 separate cutoff for ugliness...these cutoffs are still not ideal
9191
9192 commit e1920963de856b058811b84764d848947cab454f
9193 Author: Steven G. Johnson <stevenj@fftw.org>
9194 Date: Fri Apr 2 21:30:17 2004 -0500
9195
9196 transpose.c is gone
9197
9198 commit a115ba2703fa6d7cfb8e1453904bf94cd9c25b7d
9199 Author: Steven G. Johnson <stevenj@fftw.org>
9200 Date: Fri Apr 2 21:18:27 2004 -0500
9201
9202 move all rank0 transforms to rdft
9203
9204 commit 444b8f48586e952b107d4ee2ad58c56e357e5fbd
9205 Author: Steven G. Johnson <stevenj@fftw.org>
9206 Date: Fri Apr 2 20:35:35 2004 -0500
9207
9208 enable fp-moves/us comparison of rank-0 transforms
9209
9210 commit 2cc4d9f4818fb41d6aa0c1be4224eb25a94b3ac7
9211 Author: Steven G. Johnson <stevenj@fftw.org>
9212 Date: Thu Apr 1 16:13:22 2004 -0500
9213
9214 whoops
9215
9216 commit b0ee7083fd7d7ff73366c8011fbf43d675380d8c
9217 Author: Steven G. Johnson <stevenj@fftw.org>
9218 Date: Thu Apr 1 15:25:30 2004 -0500
9219
9220 whoops
9221
9222 commit 50854b83979e79e4a0a2f6e90404ca553d0a3d33
9223 Author: Steven G. Johnson <stevenj@fftw.org>
9224 Date: Wed Mar 31 18:11:02 2004 -0500
9225
9226 sort tensor dims by stride absolute values, not strides
9227
9228 commit 39cd8178427b5a70d5fa503a14c663c6a4f96edf
9229 Author: Steven G. Johnson <stevenj@fftw.org>
9230 Date: Tue Mar 30 20:22:50 2004 -0500
9231
9232 [empty commit message]
9233
9234 commit 9b5e15aa7f7e515b9faa505be708a14d568ceb1b
9235 Author: Steven G. Johnson <stevenj@fftw.org>
9236 Date: Tue Mar 30 19:44:54 2004 -0500
9237
9238 added improved transpose algorithm for N x M where |N-M| is small
9239
9240 commit 2db4ea7db1f587486546e244ea42930e51275806
9241 Author: Steven G. Johnson <stevenj@fftw.org>
9242 Date: Tue Mar 30 19:41:14 2004 -0500
9243
9244 check to make sure SIMD matches precision, and make sure user doesn't select both SSE and SSE2
9245
9246 commit 8995d09da3bc5d0fd7daf6f6ad295fccd9e94893
9247 Author: Matteo Frigo <athena@fftw.org>
9248 Date: Sun Mar 28 09:26:38 2004 -0500
9249
9250 Implemented hc2hc-generic hc2r.
9251
9252 commit 581a83475a46b89a73b8a7fb3f2dccb140f72629
9253 Author: Matteo Frigo <athena@fftw.org>
9254 Date: Thu Mar 25 11:19:25 2004 -0500
9255
9256 Inverted loop for stride-1 access.
9257
9258 commit b0d68fa533d26d6bebf433c43c4dfee7b99a3701
9259 Author: Matteo Frigo <athena@fftw.org>
9260 Date: Thu Mar 25 11:18:49 2004 -0500
9261
9262 Swapped j <-> k for consistency
9263
9264 commit dc715359aa2bb496a60ae650612b42f0cdf998dc
9265 Author: Matteo Frigo <athena@fftw.org>
9266 Date: Tue Mar 23 12:08:07 2004 -0500
9267
9268 Require that R be odd
9269
9270 commit 36e2199cf602f511e50a4bbc56e472d79c935e8f
9271 Author: Matteo Frigo <athena@fftw.org>
9272 Date: Tue Mar 23 11:49:01 2004 -0500
9273
9274 Implemented hc2hc-generic (DIT only for now).
9275
9276 commit bc377e92e0d11be803dc1a3deb60f05a82799f85
9277 Author: Matteo Frigo <athena@fftw.org>
9278 Date: Mon Mar 22 14:43:16 2004 -0500
9279
9280 Relax equality of twiddle description, since the `i' field
9281 is not used by TW_FULL or TW_HALF.
9282
9283 commit ede9d975b188649b84cca9bf24c5f7feab3653c4
9284 Author: Matteo Frigo <athena@fftw.org>
9285 Date: Mon Mar 22 13:22:44 2004 -0500
9286
9287 Do not allocate tw_instr's on the stack. Thus, the ``consistency check''
9288 in twiddle.c becomes wrong.
9289
9290 commit 19b8fbca72260c622266cd93466267c9dfb57cc3
9291 Author: Matteo Frigo <athena@fftw.org>
9292 Date: Mon Mar 22 13:21:28 2004 -0500
9293
9294 Fixed incorrect malloc()/free() logic.
9295
9296 commit 050be8cad10f411ab6ca025f59e5cffc3f7bf42d
9297 Author: Matteo Frigo <athena@fftw.org>
9298 Date: Mon Mar 22 09:04:37 2004 -0500
9299
9300 Silence warnings
9301
9302 commit ae20d94938c08cb65f257fec653a9e3b1961a77b
9303 Author: Matteo Frigo <athena@fftw.org>
9304 Date: Mon Mar 22 09:02:55 2004 -0500
9305
9306 Separate file for hc2hc common routines
9307
9308 commit e35b856a11108d5bdf61855976cddd7e8e7a84e9
9309 Author: Matteo Frigo <athena@fftw.org>
9310 Date: Mon Mar 22 08:23:56 2004 -0500
9311
9312 (re)Implemented buffered hc2hc. Slight simplification of
9313 twiddle-factors management.
9314
9315 commit de8ff3b06710f0dda76007150592239d4aa7565c
9316 Author: Matteo Frigo <athena@fftw.org>
9317 Date: Sun Mar 21 19:53:05 2004 -0500
9318
9319 Incremented libtool revision number before we forget.
9320
9321 commit 5004b2e13de1b9b8635441bba800e8f6b850900a
9322 Author: Matteo Frigo <athena@fftw.org>
9323 Date: Sun Mar 21 19:25:56 2004 -0500
9324
9325 Fixed opcnt
9326
9327 commit af360d8473ebdda79f57a3fa6bd3bbb2b7b041a2
9328 Author: Matteo Frigo <athena@fftw.org>
9329 Date: Sun Mar 21 17:56:15 2004 -0500
9330
9331 Renamed files. These solvers are not really cooley-tukey.
9332
9333 commit c6c735fb857127becb133e21c37544052b985806
9334 Author: Matteo Frigo <athena@fftw.org>
9335 Date: Sun Mar 21 12:38:45 2004 -0500
9336
9337 Started moving rdft/ to the new cooley-tukey ontology
9338
9339 commit 5df5843950df1fb50697f28d983ff0a9b8d5c5b9
9340 Author: Matteo Frigo <athena@fftw.org>
9341 Date: Sun Mar 21 10:59:42 2004 -0500
9342
9343 Plans in ct-*.c are subtypes of plan_dftw, not plan_dft
9344
9345 commit 5a4eb1dc842c864c311f175e9f97dde3f42dba2f
9346 Author: Matteo Frigo <athena@fftw.org>
9347 Date: Sun Mar 21 10:38:18 2004 -0500
9348
9349 Slight simplification
9350
9351 commit 23b338208a4b752b307a0c6ff8d03f4e3f3c077f
9352 Author: Matteo Frigo <athena@fftw.org>
9353 Date: Sun Mar 21 10:20:06 2004 -0500
9354
9355 Minor simplification
9356
9357 commit 71c684955ce3dfb91065a561e806edc213b2a1ae
9358 Author: Matteo Frigo <athena@fftw.org>
9359 Date: Sat Mar 20 08:43:57 2004 -0500
9360
9361 Workarounds for icc-8.0 nonsense.
9362
9363 commit 446cbae42c628ae2ba7e6f63f4771355a10b5e0f
9364 Author: Matteo Frigo <athena@fftw.org>
9365 Date: Sun Mar 7 07:56:08 2004 -0500
9366
9367 FFTW_FORWARD is not technically an ``option''.
9368
9369 commit 150af2bf6e6d380dc31ebffdcb79961e64d47f97
9370 Author: Steven G. Johnson <stevenj@fftw.org>
9371 Date: Tue Feb 24 12:17:06 2004 -0500
9372
9373 Alejandro requested that his name be removed from @author
9374
9375 commit 6948af91f0140722c52246a2b09faaeb7e664d99
9376 Author: Steven G. Johnson <stevenj@fftw.org>
9377 Date: Mon Feb 23 17:42:56 2004 -0500
9378
9379 GNU Pth emulation library check
9380
9381 commit b28089821d98c117e9688fdb7c65b4bfc0645345
9382 Author: Steven G. Johnson <stevenj@fftw.org>
9383 Date: Sat Feb 21 17:51:13 2004 -0500
9384
9385 calling can-do calls the estimating-planner, which creates wisdom that we don't want ...we should be able to do all of the documented problems, anyway
9386
9387 commit 262bd966d1d8394d17b2dc1ae7b76446b9300323
9388 Author: Steven G. Johnson <stevenj@fftw.org>
9389 Date: Sat Feb 21 17:46:06 2004 -0500
9390
9391 don't forget_wisdom because of side effects
9392
9393 commit b5c61a6821de885155d1b960a1d8b50a5464bc3d
9394 Author: Steven G. Johnson <stevenj@fftw.org>
9395 Date: Sat Feb 21 17:42:47 2004 -0500
9396
9397 forget wisdom from can_do
9398
9399 commit 51442d30f17617100834e2fb27cbe7df79b3d61b
9400 Author: Steven G. Johnson <stevenj@fftw.org>
9401 Date: Thu Feb 19 14:11:14 2004 -0500
9402
9403 parenthesization
9404
9405 commit 63bf06148e526cb5c90550fbd7b53a40fc73f2d4
9406 Author: Matteo Frigo <athena@fftw.org>
9407 Date: Fri Feb 13 07:20:31 2004 -0500
9408
9409 Split malloc into kernel_malloc and API malloc
9410
9411 commit 26fb1d12ecc37fda0f9760386b1f59a87e193e01
9412 Author: Steven G. Johnson <stevenj@fftw.org>
9413 Date: Thu Feb 12 15:42:20 2004 -0500
9414
9415 X(malloc) must be extern "C"
9416
9417 commit bb95c42e188e35ab4f22703978e5da7ba796eaff
9418 Author: Steven G. Johnson <stevenj@fftw.org>
9419 Date: Thu Feb 12 15:41:44 2004 -0500
9420
9421 satsify C++ compiler
9422
9423 commit 5560fa42b5df5500dfd63303262c412f308ceb76
9424 Author: Steven G. Johnson <stevenj@fftw.org>
9425 Date: Thu Feb 5 20:39:14 2004 -0500
9426
9427 with the new flags, fma is definitely beneficial on PA-RISC with HP/UX cc
9428
9429 commit 795e5b6919fec5bbdf1fb9cff3be1db5f63ddeee
9430 Author: Steven G. Johnson <stevenj@fftw.org>
9431 Date: Thu Feb 5 19:52:17 2004 -0500
9432
9433 grr, Ofaster etcetera are not supported under older versions of the compiler. Note that +Ofltacc *disables* fp-reordering optimizations (which are enabled by +Oall). +Optrs_ansi is the older version of the aliasing stuff
9434
9435 commit db287e0973e7d6ef19261b5a96979dff3b339b9a
9436 Author: Steven G. Johnson <stevenj@fftw.org>
9437 Date: Thu Feb 5 19:26:01 2004 -0500
9438
9439 +Otype_safety=ansi on hpux
9440
9441 commit c98916ab1aa18fd95e8e43584e6eb618015de573
9442 Author: Steven G. Johnson <stevenj@fftw.org>
9443 Date: Thu Feb 5 19:22:34 2004 -0500
9444
9445 just use +Ofaster on hpux (+O3 +Onolimit +Olibcalls +Ofltacc=relaxed -Wl,+mergeseg)
9446
9447 commit 4e3bf163dca0615df17146ee2e18481d0a20a9e6
9448 Author: Steven G. Johnson <stevenj@fftw.org>
9449 Date: Fri Jan 30 14:17:15 2004 -0500
9450
9451 check for win32 threads for mingw32; thanks to Alessio Massaro
9452
9453 commit 86652c99050dcc4f52d17974597bdbf56a5998de
9454 Author: Steven G. Johnson <stevenj@fftw.org>
9455 Date: Thu Jan 29 15:23:33 2004 -0500
9456
9457 added missing 'static', thanks to Alessio Massaro
9458
9459 commit 96566e4ddd0a9d00b23ad7c8ad04240cce7bfac1
9460 Author: Steven G. Johnson <stevenj@fftw.org>
9461 Date: Fri Jan 9 16:36:48 2004 -0500
9462
9463 print more like bluestein
9464
9465 commit 9ce57c8bf150fdf7d8177b0252abd7721d82d28b
9466 Author: Steven G. Johnson <stevenj@fftw.org>
9467 Date: Fri Jan 9 15:45:22 2004 -0500
9468
9469 fixed op count for R2HC_ONLY_CONV
9470
9471 commit 1d28fc43969f2824c21efd2d1f2ce5a365dc0a07
9472 Author: Steven G. Johnson <stevenj@fftw.org>
9473 Date: Fri Jan 9 15:41:50 2004 -0500
9474
9475 include DESTROY_INPUT in buffered flags for in-place...otherwise in-place hc2r uses rdft-dhtcvs diff
9476
9477 commit bf6f542cb4702cf9d2c9346254cf09f0bce0e032
9478 Author: Steven G. Johnson <stevenj@fftw.org>
9479 Date: Fri Jan 9 15:41:09 2004 -0500
9480
9481 resurrected R2HC_ONLY_CONV option to share plans and save on planning time
9482
9483 commit 04d01b659718c6e66f9b14ad925fc5c630c7c1e8
9484 Author: Steven G. Johnson <stevenj@fftw.org>
9485 Date: Fri Jan 9 14:47:00 2004 -0500
9486
9487 precompute folding for cyclic convolution
9488
9489 commit 41947ea5b1fd5203da848d5afe3ecfed87f90d91
9490 Author: Steven G. Johnson <stevenj@fftw.org>
9491 Date: Wed Jan 7 16:48:39 2004 -0500
9492
9493 minor
9494
9495 commit 766e29f31c88457b71f94bc7607e81a39b445fdd
9496 Author: Steven G. Johnson <stevenj@fftw.org>
9497 Date: Wed Jan 7 16:48:25 2004 -0500
9498
9499 note reports of successful compilation on Windows
9500
9501 commit a3b6ef73f675682810957a7770b13c5ede3c75a3
9502 Author: Steven G. Johnson <stevenj@fftw.org>
9503 Date: Wed Jan 7 14:16:16 2004 -0500
9504
9505 citation year
9506
9507 commit c6ff6592cd7196994610014cb3da0caafa4354df
9508 Author: Steven G. Johnson <stevenj@fftw.org>
9509 Date: Tue Jan 6 01:07:36 2004 -0500
9510
9511 comment
9512
9513 commit 326cb17c5ee1b2d61f66a81bf90c012128148add
9514 Author: Steven G. Johnson <stevenj@fftw.org>
9515 Date: Tue Jan 6 01:07:08 2004 -0500
9516
9517 comment fix
9518
9519 commit 16c7ff8cc5de0d74ad68a628e80e9ac8ede5e918
9520 Author: Steven G. Johnson <stevenj@fftw.org>
9521 Date: Tue Jan 6 01:06:57 2004 -0500
9522
9523 fixed naming cruft
9524
9525 commit 3c33d645c75a685c1b95f12be64b272dd01fb621
9526 Author: Steven G. Johnson <stevenj@fftw.org>
9527 Date: Tue Jan 6 00:56:16 2004 -0500
9528
9529 space
9530
9531 commit daf2625a4becbd9aac13358827eef8bbf2ef115e
9532 Author: Steven G. Johnson <stevenj@fftw.org>
9533 Date: Tue Jan 6 00:55:53 2004 -0500
9534
9535 comment
9536
9537 commit 8bc4eaa51d81346cd07706771fc58bb8767bd428
9538 Author: Steven G. Johnson <stevenj@fftw.org>
9539 Date: Tue Jan 6 00:54:07 2004 -0500
9540
9541 moved assert
9542
9543 commit 679d41c77182afe28023a32c667fb6771f7df10d
9544 Author: Steven G. Johnson <stevenj@fftw.org>
9545 Date: Tue Jan 6 00:49:16 2004 -0500
9546
9547 comment
9548
9549 commit 0ead6d3532ee317a8e8e99391655c0ef3b13bfd3
9550 Author: Steven G. Johnson <stevenj@fftw.org>
9551 Date: Tue Jan 6 00:41:06 2004 -0500
9552
9553 delete old R2HC_ONLY_CONV hack, now defunct
9554
9555 commit 4f45958b21e10e4b0ad128e4a36b3b1c456e7a22
9556 Author: Steven G. Johnson <stevenj@fftw.org>
9557 Date: Tue Jan 6 00:32:58 2004 -0500
9558
9559 added padded real rader
9560
9561 commit 2743f45c6e17d1cc72cce590faa7475c03e8ea74
9562 Author: Steven G. Johnson <stevenj@fftw.org>
9563 Date: Mon Jan 5 22:56:58 2004 -0500
9564
9565 removed unused var
9566
9567 commit 57cf035f36b08fae46144c4e03a52b3fb7a65f51
9568 Author: Steven G. Johnson <stevenj@fftw.org>
9569 Date: Mon Jan 5 21:20:29 2004 -0500
9570
9571 handle both FFT_SIGN values
9572
9573 commit 0f0e531863a2392a747c6b540a966b48b77debaa
9574 Author: Matteo Frigo <athena@fftw.org>
9575 Date: Fri Jan 2 06:07:51 2004 -0500
9576
9577 Oops: d->ros ==> d->ios
9578
9579 commit 6ce67e298050d47829243bf692910eeef126601f
9580 Author: Matteo Frigo <athena@fftw.org>
9581 Date: Fri Jan 2 06:05:10 2004 -0500
9582
9583 Oops: d->ris should have been d->iis
9584
9585 commit 3ddc923840694e141348bb8f48eb6bc9272b607b
9586 Author: Matteo Frigo <athena@fftw.org>
9587 Date: Thu Jan 1 16:00:07 2004 -0500
9588
9589 Removed rdft rader cooley-tukey, to be superseded by a generic
9590 reduction of rdft twiddle problems to dft + pre/post processing
9591
9592 commit 3f82980635418e49dad204ff327021a8adf4bcfb
9593 Author: Matteo Frigo <athena@fftw.org>
9594 Date: Thu Jan 1 15:44:09 2004 -0500
9595
9596 In anticipation of the upcoming revision of rdft, removed rdft generic
9597 dit/dif cooley-tukey, in favor of generic rh2c and hc2r solvers.
9598 Cleaned up stuff that became unused after this change, such as
9599 TW_GENERIC.
9600
9601 commit f7546dadff20223e87c698a9c3e8bcdb8496547e
9602 Author: Matteo Frigo <athena@fftw.org>
9603 Date: Thu Jan 1 12:59:30 2004 -0500
9604
9605 Removed useless file
9606
9607 commit 822bd0498b7fe0a45a001af73cd4b317f33b0230
9608 Author: Steven G. Johnson <stevenj@fftw.org>
9609 Date: Fri Dec 26 13:54:00 2003 -0500
9610
9611 whoops, don't call AC_F77_DUMMY_MAIN if no Fortran compiler is found; thanks to Charles Radley for the bug report.
9612
9613 commit 6d8fa3754568aeb1979cbd6d1f6b91c90f524989
9614 Author: Steven G. Johnson <stevenj@fftw.org>
9615 Date: Fri Dec 19 13:58:05 2003 -0500
9616
9617 guess good flags for Solaris/intel, suggested by J. Gregory Wright
9618
9619 commit e393cf5533fdff4834a269b4d163641553f9532f
9620 Author: Steven G. Johnson <stevenj@fftw.org>
9621 Date: Fri Dec 5 19:55:13 2003 -0500
9622
9623 blah
9624
9625 commit bcb1ecc806de458e9744b90452468221ab65d36d
9626 Author: Matteo Frigo <athena@fftw.org>
9627 Date: Sun Nov 30 06:59:41 2003 -0500
9628
9629 DIF generic solver was destroying the input.
9630
9631 commit 1580db9c3c75c57928058fc81faa981295c7b6ca
9632 Author: Matteo Frigo <athena@fftw.org>
9633 Date: Sat Nov 29 19:28:39 2003 -0500
9634
9635 Fixed bug that caused HC2R transforms to destroy the input in
9636 certain cases, even if the user specified FFTW_PRESERVE_INPUT.
9637
9638 commit 24f8af52f2a239ba51cd03e37e4c1c74befdc2f2
9639 Author: Matteo Frigo <athena@fftw.org>
9640 Date: Sat Nov 29 16:49:01 2003 -0500
9641
9642 Implemented swap_io hack for r2r verifier.
9643
9644 commit e15bf89a0e15d64e294ea23deb4f3de422e467b6
9645 Author: Steven G. Johnson <stevenj@fftw.org>
9646 Date: Thu Nov 20 22:00:53 2003 -0500
9647
9648 citation
9649
9650 commit f8afd813d4a9af4549ccca07ea7604c12c081761
9651 Author: Matteo Frigo <athena@fftw.org>
9652 Date: Fri Nov 14 20:57:55 2003 -0500
9653
9654 Trying to get ``make paranoid-check'' to work. (Still broken.)
9655
9656 commit 74399102001e6b633c21ca16f1b4369f63facab1
9657 Author: Steven G. Johnson <stevenj@fftw.org>
9658 Date: Fri Nov 14 20:05:54 2003 -0500
9659
9660 fixes for input-preservation tests
9661
9662 commit 29fc95192096b664dc7f23bfc6d3530f5880c66f
9663 Author: Matteo Frigo <athena@fftw.org>
9664 Date: Fri Nov 14 19:19:31 2003 -0500
9665
9666 Assume FFTW_PRESERVE_INPUT unless either the `d' flag is given in the
9667 problem, or the problem is multidimensional c2r (which fftw3 cannot
9668 without destroying the input). With this change, we can at least test
9669 that FFTW_PRESERVE_INPUT works in the c2r 1d case.
9670
9671 commit 5a2907cf7121cc9e824150f654d83c9ff984aa92
9672 Author: Steven G. Johnson <stevenj@fftw.org>
9673 Date: Fri Nov 14 19:14:40 2003 -0500
9674
9675 apply should copy back input for input-preservation check
9676
9677 commit e5b287efdbd1a909467ac69e49f09c708462ea6d
9678 Author: Matteo Frigo <athena@fftw.org>
9679 Date: Fri Nov 14 19:01:36 2003 -0500
9680
9681 Undone previous bogus changes
9682
9683 commit 55075f65e5f23bb045b5a076bd559d508e15fab8
9684 Author: Matteo Frigo <athena@fftw.org>
9685 Date: Fri Nov 14 18:27:12 2003 -0500
9686
9687 Check dr[fb] in addition to r[fb]
9688
9689 commit 74d5a2653d744d48adc748e8ebfaafdad0198cb7
9690 Author: Matteo Frigo <athena@fftw.org>
9691 Date: Fri Nov 14 17:33:44 2003 -0500
9692
9693 Fixed conditions under which the rank-geq2-rdft2 solver is applicable.
9694
9695 The old solver was not applicable for out-of-place problems
9696 unless DESTROY_INPUT. This is bogus. As long as the subsolvers
9697 honor !DESTROY_INPUT, the solver is always applicable.
9698
9699 Changed semantics of test program, so that PRESERVE_INPUT is always
9700 true unless the problem specifies destroy_input explicitly. Without
9701 this change, there is no way to test the new solver.
9702
9703 commit edcc72abc5fafc3147bfb8b802cea42d249c711b
9704 Author: Steven G. Johnson <stevenj@fftw.org>
9705 Date: Thu Oct 30 15:10:42 2003 -0500
9706
9707 added AIX OpenMP (-qsmp=omp) support; thanks to Greg Bauer
9708
9709 commit 8dffe5112def767dc95ffe8c722d009bd2d3a5aa
9710 Author: Matteo Frigo <athena@fftw.org>
9711 Date: Thu Oct 30 10:11:39 2003 -0500
9712
9713 G5 CFLAGS
9714
9715 commit 3cdf00d461370ae110601bf4612b31601a9b7100
9716 Author: Steven G. Johnson <stevenj@fftw.org>
9717 Date: Fri Oct 24 04:17:39 2003 -0400
9718
9719 western FAQ
9720
9721 commit 8ae00fe74ec955caecad22123ab716b908fb595a
9722 Author: Matteo Frigo <athena@fftw.org>
9723 Date: Thu Oct 23 11:34:11 2003 -0400
9724
9725 Oops.
9726
9727 commit f7b3b4aae8910a377ab2c391da7855bad4c6875a
9728 Author: Matteo Frigo <athena@fftw.org>
9729 Date: Thu Oct 23 11:28:28 2003 -0400
9730
9731 Autodetect altivec
9732
9733 commit 7458c1cb849f028a73209b18da00a2b63da0d861
9734 Author: Steven G. Johnson <stevenj@fftw.org>
9735 Date: Wed Oct 22 01:14:10 2003 -0400
9736
9737 MinGW gets confused by a single /
9738
9739 commit 3b8090b60a50893cb21b3e7442c5d8eec86c756e
9740 Author: Matteo Frigo <athena@fftw.org>
9741 Date: Fri Oct 17 10:46:41 2003 -0400
9742
9743 Paranoid portability fix
9744
9745 commit 82175d1a4b25bd246759a5a9499a50037b51bc94
9746 Author: Matteo Frigo <athena@fftw.org>
9747 Date: Thu Oct 16 11:07:46 2003 -0400
9748
9749 size -> length, which should make clear that we are not talking
9750 about arbitrary precision.
9751
9752 commit b5f6b9f86f41b0429dd03c64101bc2cbd4a0b261
9753 Author: Steven G. Johnson <stevenj@fftw.org>
9754 Date: Wed Oct 15 15:01:40 2003 -0400
9755
9756 pruned transforms are a FAQ
9757
9758 commit 736d76c64078a558714dc87e31bc158117a274d7
9759 Author: Steven G. Johnson <stevenj@fftw.org>
9760 Date: Wed Oct 8 23:54:17 2003 -0400
9761
9762 NO_SEARCH has already been mapped to FFTW_WISDOM_ONLY
9763
9764 commit 02a8d7f029570cfb78c03215109a391d74f22ebd
9765 Author: Steven G. Johnson <stevenj@fftw.org>
9766 Date: Wed Oct 8 23:53:19 2003 -0400
9767
9768 newline
9769
9770 commit 4177857895703cbd233c7b10e80cb95b8e8c25c5
9771 Author: Steven G. Johnson <stevenj@fftw.org>
9772 Date: Sat Sep 27 20:27:32 2003 -0400
9773
9774 fix
9775
9776 commit 694836051975049f0d2981df1372a23be9d9bc1b
9777 Author: Steven G. Johnson <stevenj@fftw.org>
9778 Date: Sat Sep 27 20:24:39 2003 -0400
9779
9780 clarification
9781
9782 commit 0b20096c7a3afe66a13dc3efd84ba9e535748248
9783 Author: Steven G. Johnson <stevenj@fftw.org>
9784 Date: Sat Sep 27 17:43:57 2003 -0400
9785
9786 minor fix
9787
9788 commit 39ef965f44a5ba2245f12c7e1b182032746d6dda
9789 Author: Steven G. Johnson <stevenj@fftw.org>
9790 Date: Sat Sep 27 17:42:30 2003 -0400
9791
9792 grammar
9793
9794 commit f7d34b13ca2adef07ab32520d97f05c403d34bd4
9795 Author: Steven G. Johnson <stevenj@fftw.org>
9796 Date: Sat Sep 27 17:29:04 2003 -0400
9797
9798 html output fix
9799
9800 commit 4b0c92ff25547e2f4fef16bf2089b6525407fc9e
9801 Author: Steven G. Johnson <stevenj@fftw.org>
9802 Date: Sat Sep 27 17:22:48 2003 -0400
9803
9804 mentioned sqrt(2) factors for DCT/DST
9805
9806 commit 512c0e8650df0efa89bc8fea862a005f6f58f2cc
9807 Author: Steven G. Johnson <stevenj@fftw.org>
9808 Date: Sat Sep 27 17:07:18 2003 -0400
9809
9810 FFTW_WISDOM_ONLY flag (undocumented for now), suggested by Phil Dumont
9811
9812 commit 54b4afc9f006bc10ce0423f09625b91af30d9dc3
9813 Author: Steven G. Johnson <stevenj@fftw.org>
9814 Date: Tue Sep 23 23:36:19 2003 -0400
9815
9816 removed UpTime code
9817
9818 commit 26c7e51b101004fe0cc9c2a5f90c732fd7bcf2b2
9819 Author: Steven G. Johnson <stevenj@fftw.org>
9820 Date: Tue Sep 23 23:27:29 2003 -0400
9821
9822 updated documentation for mach_absolute_time
9823
9824 commit 12a80b367661367374d32deeb29e01fd75e311e3
9825 Author: Steven G. Johnson <stevenj@fftw.org>
9826 Date: Tue Sep 23 23:25:52 2003 -0400
9827
9828 use mach_absolute_time on MacOS/Darwin, as a fallback; don't bother checking for UpTime since it requires extra libs
9829
9830 commit fa1787b57c9fb3539af76bd43c35ce224da7dace
9831 Author: Steven G. Johnson <stevenj@fftw.org>
9832 Date: Tue Sep 23 22:59:29 2003 -0400
9833
9834 support Apple UpTime function for asm-less xlc, grrr...
9835
9836 commit 13e7c9ab7273a625f9b21015a75eff8ef163d468
9837 Author: Steven G. Johnson <stevenj@fftw.org>
9838 Date: Tue Sep 23 15:42:29 2003 -0400
9839
9840 additional paranoia for xlc etc.
9841
9842 commit 2da4a3de8376303c716cd7ee5b3b47b8f759983b
9843 Author: Steven G. Johnson <stevenj@fftw.org>
9844 Date: Mon Sep 22 15:28:56 2003 -0400
9845
9846 work around _Complex_I weirdness in xlc, reported by Greg Allen
9847
9848 commit 3533775b3de13e397feb15794631f1d2fedd1e98
9849 Author: Steven G. Johnson <stevenj@fftw.org>
9850 Date: Fri Sep 5 18:03:11 2003 -0400
9851
9852 typo
9853
9854 commit ef0a55daee823f7ae55367f4304e32abf20c0d40
9855 Author: Matteo Frigo <athena@fftw.org>
9856 Date: Fri Sep 5 13:11:40 2003 -0400
9857
9858 New script that produces commercial version.
9859
9860 commit 4c4873b3aface20d5444216fcb5ea79221e5a289
9861 Author: Matteo Frigo <athena@fftw.org>
9862 Date: Fri Sep 5 07:27:06 2003 -0400
9863
9864 Noted that VC++ is buggy. Noted that we know nothing about Windows.
9865 Noted that the sky is blue as well.
9866
9867 commit a3d172eb32ea6f17849604998b55db355d60cc26
9868 Author: Matteo Frigo <athena@fftw.org>
9869 Date: Tue Sep 2 09:04:19 2003 -0400
9870
9871 Noted that certain arrays are no longer used after the planner has
9872 completed.
9873
9874 commit c68f62d97627bb869061a9433c4f4605f4dc8fd4
9875 Author: Matteo Frigo <athena@fftw.org>
9876 Date: Tue Aug 26 08:22:38 2003 -0400
9877
9878 Typo
9879
9880 commit b95fbd832374dacc4e8c9fb21b8c4085b33b3460
9881 Author: Matteo Frigo <athena@fftw.org>
9882 Date: Mon Aug 25 21:27:43 2003 -0400
9883
9884 New item
9885
9886 commit b2a02ef7112f03f73e25ccb67227265306b69b6c
9887 Author: Steven G. Johnson <stevenj@fftw.org>
9888 Date: Thu Aug 21 17:36:08 2003 -0400
9889
9890 try creating output file before planning (thanks to Phil Dumont for the suggestion)
9891
9892 commit 766c3757fc99565ef8a14a9f3d5729740b1e7182
9893 Author: Matteo Frigo <athena@fftw.org>
9894 Date: Tue Aug 19 10:08:07 2003 -0400
9895
9896 Clarified fftw_cleanup()
9897
9898 commit 8eecb544f6ac10687ec258d3162a5c7508c6156d
9899 Author: Steven G. Johnson <stevenj@fftw.org>
9900 Date: Sat Aug 16 03:13:41 2003 -0400
9901
9902 typo
9903
9904 commit 443c1d796f44813179c18d5b34c2836bd441a1e2
9905 Author: Steven G. Johnson <stevenj@fftw.org>
9906 Date: Mon Jul 28 18:01:13 2003 -0400
9907
9908 use time() instead of clock() (FIXME: what to do for non-POSIX systems?) ...thanks to JP Sugarbroad and James A. Treacy for the bug report
9909
9910 commit 9de40445c11cba14fa6eb7ae8e06d2792ebb2262
9911 Author: Matteo Frigo <athena@fftw.org>
9912 Date: Thu Jul 24 18:58:10 2003 -0400
9913
9914 Need __volatile__ in sparc cycle counter. This is why the debian
9915 port hangs.
9916
9917 commit 3da4cd5a3334e2b8415224657c5f5d9ce17eef12
9918 Author: Steven G. Johnson <stevenj@fftw.org>
9919 Date: Sun Jul 20 16:02:43 2003 -0400
9920
9921 merged 3.0.1 notes
9922
9923 commit cb6949db0271a00b15369efbd59d5c74af6d8c0c
9924 Author: Steven G. Johnson <stevenj@fftw.org>
9925 Date: Sun Jul 13 20:57:34 2003 -0400
9926
9927 whoops
9928
9929 commit 906832308c9b7ba4ce3e55a3efa502ab55e6a676
9930 Author: Matteo Frigo <athena@fftw.org>
9931 Date: Thu Jul 10 11:48:50 2003 -0400
9932
9933 Dealing with constants in a way that seems to confuse gcc less.
9934
9935 commit e823de6c6b1433905ed2851aadcd1e11bf9b81b9
9936 Author: Matteo Frigo <athena@fftw.org>
9937 Date: Wed Jul 9 17:39:23 2003 -0400
9938
9939 Enabled scheduler hack for FMA, where it seems to help.
9940
9941 commit cff00fb9b000446f13c060876536184a03873ca5
9942 Author: Matteo Frigo <athena@fftw.org>
9943 Date: Wed Jul 9 12:57:38 2003 -0400
9944
9945 Hmm---the new scheduler seems make things worse for gcc/x86, better
9946 for gcc/ppc, and about the same for icc/x86. Disabled for now.
9947
9948 commit ca5556ba3956352649cd6d7342d16ffa660db23f
9949 Author: Matteo Frigo <athena@fftw.org>
9950 Date: Wed Jul 9 08:09:53 2003 -0400
9951
9952 New scheduling pass that keeps ``x = a + b'' and ``y = a - b'' close
9953 together. This property was no longer automatic for the dags
9954 generated in SIMD mode.
9955
9956 I cannot measure any speed difference due to this change. However,
9957 the change is justified by a minimal-screwup argument. Moreover, the
9958 sse2 fftw library is now 1% smaller than it was before.
9959
9960 commit 82ab8c034224f1364c148e9f725c90e6e16f721d
9961 Author: Matteo Frigo <athena@fftw.org>
9962 Date: Tue Jul 8 20:42:22 2003 -0400
9963
9964 -(FNMS()) => FMS()
9965
9966 commit 471cc543a0805c19f676664861e5dc9d1fb5f1d7
9967 Author: Steven G. Johnson <stevenj@fftw.org>
9968 Date: Sun Jul 6 13:53:23 2003 -0400
9969
9970 added more convenient target name
9971
9972 commit 18303fef32c580b6c7dc03c4e8bfe30ca2a92724
9973 Author: Steven G. Johnson <stevenj@fftw.org>
9974 Date: Sat Jul 5 13:30:10 2003 -0400
9975
9976 typo
9977
9978 commit c30db69dc73fc965683cd147c948c3dba1f6aad7
9979 Author: Matteo Frigo <athena@fftw.org>
9980 Date: Sat Jul 5 13:19:36 2003 -0400
9981
9982 Consistent naming
9983
9984 commit da3b10c5645b3bb482b26cb42d0821dda213b994
9985 Author: Matteo Frigo <athena@fftw.org>
9986 Date: Sat Jul 5 13:05:51 2003 -0400
9987
9988 Got rid of problemw.
9989
9990 commit 21c3f87f755cadd9ef25945fe33448eeea7cb511
9991 Author: Matteo Frigo <athena@fftw.org>
9992 Date: Fri Jul 4 06:56:26 2003 -0400
9993
9994 Increase TIME_MIN on intel only
9995
9996 commit c749315d331fac4826ab1754a84f2a66e00197df
9997 Author: Matteo Frigo <athena@fftw.org>
9998 Date: Fri Jul 4 06:36:02 2003 -0400
9999
10000 A little hack to get more consistent scheduling.
10001
10002 commit 1af463bd5b8ae6bd696ecb6a86d8b1952aaf6fd0
10003 Author: Matteo Frigo <athena@fftw.org>
10004 Date: Thu Jul 3 16:47:42 2003 -0400
10005
10006 New experimental scheduler (currently disabled).
10007
10008 The old scheduler is ``optimal'' in the sense that it minimizes
10009 register pressure. The only way to reduce register pressure is to
10010 schedule dependent instructions as closely as possible, so as to
10011 minimize the life time of registers. This strategy maximizes the
10012 number of pipeline stalls, however. With enough registers and short
10013 enough pipelines, this tradeoff is fine. This is no longer the case
10014 for the devilish pipeline of the Pentium IV or (probably) the PowerPC
10015 970.
10016
10017 The new scheduler switches to a ``list scheduler'' for dags smaller
10018 than a specified size. The list scheduler executes a butterfly left
10019 to right one column at the time. This amounts to the best possible
10020 pipeline utilization, and the worst possible register pressure.
10021
10022 The ``specified size'' defaults to 0, i.e., no change from fftw2 and
10023 fftw-3.0. It seems like a value of 7--10 produces the best results
10024 for Pentium IV (probably screwing the G3/G4 powerpcs and sparc, but I
10025 haven't tried.) As time goes by, we may want to increase this number
10026 to favor newer processors over older processors.
10027
10028 commit b4dc4ef39f37d036b9120f6e273549fd7bbaaa2a
10029 Author: Steven G. Johnson <stevenj@fftw.org>
10030 Date: Wed Jun 25 17:43:59 2003 -0400
10031
10032 remove non-portable use of tempfile; thanks to Nicolas Decoster for the patch
10033
10034 commit 9630b97551ac80d0b1a8ecc26722ab98149a2be6
10035 Author: Steven G. Johnson <stevenj@fftw.org>
10036 Date: Wed Jun 25 17:14:03 2003 -0400
10037
10038 increase stupid HP preprocessor limits
10039
10040 commit a31916f0f41eb0a1398f38341da28991919123f0
10041 Author: Matteo Frigo <athena@fftw.org>
10042 Date: Thu Jun 19 15:21:52 2003 -0400
10043
10044 Distribute gen_mdct.ml
10045
10046 commit 367373d615cb66b335d9586544ead2f9d424effc
10047 Author: Matteo Frigo <athena@fftw.org>
10048 Date: Wed Jun 11 06:55:21 2003 -0400
10049
10050 Cleared int/ptrdiff_t confusions
10051
10052 commit f1e0319906231b0e8d5675cc4ab24db00e560dc0
10053 Author: Matteo Frigo <athena@fftw.org>
10054 Date: Tue Jun 10 22:15:42 2003 -0400
10055
10056 Cleared int/ptrdiff_t confusion
10057
10058 commit 48d9ab9a8d3ddcb8fc21d4c8e90adfcbf7e4e200
10059 Author: Matteo Frigo <athena@fftw.org>
10060 Date: Sun Jun 8 09:52:57 2003 -0400
10061
10062 Increased TIME_MIN. This seems to produce more reliable plans
10063 on Pentium IV.
10064
10065 commit 3ba082c0f617d0c03cde783d3d7eba4392d13397
10066 Author: Matteo Frigo <athena@fftw.org>
10067 Date: Sat Jun 7 21:43:00 2003 -0400
10068
10069 Removed relic -trivial-stores, which dates back to Franz's early
10070 experiments. Speed improved on SSE2, both with gcc and icc.
10071
10072 commit 25a3b0e594d1b7fbe6b87c322ae34470bfdcccba
10073 Author: Steven G. Johnson <stevenj@fftw.org>
10074 Date: Thu Jun 5 22:29:52 2003 -0400
10075
10076 fix direntry
10077
10078 commit 4ceff26934f86ada8712eabca96511462e7e8eaf
10079 Author: Steven G. Johnson <stevenj@fftw.org>
10080 Date: Thu Jun 5 13:41:34 2003 -0400
10081
10082 added imdct
10083
10084 commit 1f23163e190c844ee3b2caf4564245cfbddd1c5b
10085 Author: Matteo Frigo <athena@fftw.org>
10086 Date: Wed Jun 4 19:54:38 2003 -0400
10087
10088 Collect pattern (a * b) +- (c * d) in generic-arith, because this
10089 operation can usually be computed with one rounding in fixed-point
10090 (and it possibly exposes a FMA instruction)
10091
10092 commit 10d5f543e3ab8e1f2acb3f0bdeef0b196f22d6e0
10093 Author: Matteo Frigo <athena@fftw.org>
10094 Date: Wed Jun 4 15:11:29 2003 -0400
10095
10096 Generic-arithmetic unparser
10097
10098 commit d705a296a095ba4947adbd5e745b1a5ccf39f04a
10099 Author: Matteo Frigo <athena@fftw.org>
10100 Date: Sun Jun 1 09:05:30 2003 -0400
10101
10102 Oops---randomized CSE was using the same random numbers
10103 over and over
10104
10105 commit fed2aa57dc95873ed83371338d16b9667c84c6f1
10106 Author: Matteo Frigo <athena@fftw.org>
10107 Date: Sun Jun 1 07:01:17 2003 -0400
10108
10109 Paranoia.
10110
10111 commit 4905e1d1498f044f37a6efd2b168c9bfac54a3de
10112 Author: Matteo Frigo <athena@fftw.org>
10113 Date: Sun Jun 1 07:00:54 2003 -0400
10114
10115 Use relative error instead of absolute error, to avoid problems
10116 when normalization factors are used.
10117
10118 commit 967eecb8b745332dff25a3610a617bd73897abd6
10119 Author: Steven G. Johnson <stevenj@fftw.org>
10120 Date: Sat May 31 22:11:28 2003 -0400
10121
10122 slight opt
10123
10124 commit 6186c7e4fbaec8d816ce12a74c211890ad8c7fe9
10125 Author: Steven G. Johnson <stevenj@fftw.org>
10126 Date: Sat May 31 22:10:45 2003 -0400
10127
10128 slight optimization
10129
10130 commit f547dd3851ad0f88d4b79ac5b32af9ecbe727e4e
10131 Author: Steven G. Johnson <stevenj@fftw.org>
10132 Date: Sat May 31 20:43:31 2003 -0400
10133
10134 *W is const
10135
10136 commit 9d9e1ec4a2623c32dd10304f84d3d3854b17b938
10137 Author: Steven G. Johnson <stevenj@fftw.org>
10138 Date: Sat May 31 20:41:15 2003 -0400
10139
10140 comment
10141
10142 commit 4269fae3e68941b115c0f8855ad3bb58e18c6f89
10143 Author: Steven G. Johnson <stevenj@fftw.org>
10144 Date: Thu May 29 21:31:31 2003 -0400
10145
10146 added experimental MDCT
10147
10148 commit 3028a550c6acc0fb367dbe26af192714715a09e2
10149 Author: Steven G. Johnson <stevenj@fftw.org>
10150 Date: Wed May 28 22:01:37 2003 -0400
10151
10152 altivec (fma) needs simd codlist.c too
10153
10154 commit 083e7c5e6bf88cffc3938cb6225551ec5af0f869
10155 Author: Steven G. Johnson <stevenj@fftw.org>
10156 Date: Wed May 28 22:00:49 2003 -0400
10157
10158 make sure we include SIMD codlist.c for non-Unix folks
10159
10160 commit 08028f9b0217ea164f25bcbf01824df23bb7245e
10161 Author: Steven G. Johnson <stevenj@fftw.org>
10162 Date: Tue May 27 20:31:25 2003 -0400
10163
10164 noted howmany_rank == 0 is a single transform
10165
10166 commit 46b08adb7f478a6f5d51e1fefa6ab99891d3391d
10167 Author: Steven G. Johnson <stevenj@fftw.org>
10168 Date: Tue May 27 20:02:31 2003 -0400
10169
10170 further stride clarification
10171
10172 commit 1264855f26ebf31705c1a6cf6067c3e996c71114
10173 Author: Matteo Frigo <athena@fftw.org>
10174 Date: Mon May 26 10:21:22 2003 -0400
10175
10176 Removed transposed dftw problems.
10177
10178 I now consider transposed dftw a Bad Idea, since it does not
10179 apply to the case that it was originally meant for (speed up four-step)
10180 and it complicates the implementation of the other thing I want to try
10181 (dftw m-slices).
10182
10183 commit c198c3ed318d9864a22877795f7bac4f3eaf4d8b
10184 Author: Matteo Frigo <athena@fftw.org>
10185 Date: Mon May 26 07:22:59 2003 -0400
10186
10187 Obsolete comment
10188
10189 commit bb96207501d8ca498bde638f46932c2bdd4bec66
10190 Author: Matteo Frigo <athena@fftw.org>
10191 Date: Sat May 24 15:00:53 2003 -0400
10192
10193 comment
10194
10195 commit a3733f2596b8d6d3972edfd942ce61296f2051d1
10196 Author: Matteo Frigo <athena@fftw.org>
10197 Date: Sat May 24 07:20:35 2003 -0400
10198
10199 Oops---wrong test NO_UGLYP instead of !NO_UGLYP
10200
10201 commit d8575658ab032ccf0b6553c4a84af8510d0cae55
10202 Author: Matteo Frigo <athena@fftw.org>
10203 Date: Sat May 24 07:05:34 2003 -0400
10204
10205 Implemented radix r, where n=r^2 * p
10206
10207 commit c2ca438ef110583287ce3c0e8527d4d382ccedde
10208 Author: Steven G. Johnson <stevenj@fftw.org>
10209 Date: Wed May 21 01:54:32 2003 -0400
10210
10211 xlc seems to properly use fma as well
10212
10213 commit 3bf5cca5763573337c68978f05125e6e3eb4fe3d
10214 Author: Steven G. Johnson <stevenj@fftw.org>
10215 Date: Tue May 20 23:07:43 2003 -0400
10216
10217 print warning if there is no cycle counter
10218
10219 commit 00cef912cbb09cf8a1080a3544d45d6bacc44222
10220 Author: Steven G. Johnson <stevenj@fftw.org>
10221 Date: Tue May 20 17:32:04 2003 -0400
10222
10223 updated Funda reference
10224
10225 commit a331d8a0841d1ccb7c314dbb98749bd77d69e709
10226 Author: Matteo Frigo <athena@fftw.org>
10227 Date: Mon May 19 20:12:36 2003 -0400
10228
10229 const
10230
10231 commit 200b3519c0ee6bd32babf52b352b8f8385da45d1
10232 Author: Matteo Frigo <athena@fftw.org>
10233 Date: Mon May 19 15:41:09 2003 -0400
10234
10235 Implemented generic dif square transposed (q-style) solver.
10236
10237 commit 8c6184ff5904082729018b5c36926b5bc479db14
10238 Author: Matteo Frigo <athena@fftw.org>
10239 Date: Mon May 19 07:00:36 2003 -0400
10240
10241 applicable() is now a property of the solver (in anticipation of
10242 transposed solvers)
10243
10244 commit 75102fd59a69589a2b23faeab596f43e7bcdc46c
10245 Author: Matteo Frigo <athena@fftw.org>
10246 Date: Mon May 19 06:33:40 2003 -0400
10247
10248 Slight cleanup
10249
10250 commit fb49407efc496838a8f21a6cdfa52ad602b1cdfa
10251 Author: Matteo Frigo <athena@fftw.org>
10252 Date: Sun May 18 13:05:51 2003 -0400
10253
10254 Nothing, really
10255
10256 commit df97ba383cdf4cc6a473e4e1ad041b11b8f965af
10257 Author: Matteo Frigo <athena@fftw.org>
10258 Date: Sun May 18 09:05:20 2003 -0400
10259
10260 Moved vector loop inside bytwiddle(), in anticipation of
10261 a q-style dftw-dit transposed solver.
10262
10263 commit ee4edcdb0d229ae56167c04d4ffc36ee84d32361
10264 Author: Matteo Frigo <athena@fftw.org>
10265 Date: Sun May 18 08:52:02 2003 -0400
10266
10267 Fixed flops count
10268
10269 commit dccb90a9de4bd56cb5dad7340b27302bf2c6d245
10270 Author: Matteo Frigo <athena@fftw.org>
10271 Date: Sun May 18 08:47:20 2003 -0400
10272
10273 style
10274
10275 commit b83dec51bb0e588e9bc8fd4aff422b3e8b20e8ca
10276 Author: Matteo Frigo <athena@fftw.org>
10277 Date: Sun May 18 07:16:34 2003 -0400
10278
10279 Faster inner loop.
10280
10281 commit c7bd9e9fc6d14ae3a28012fa0425a14330746572
10282 Author: Matteo Frigo <athena@fftw.org>
10283 Date: Sat May 17 08:02:38 2003 -0400
10284
10285 Print vector length
10286
10287 commit 74d6f9435c81aaafcf08927ebec58dd49ecea003
10288 Author: Matteo Frigo <athena@fftw.org>
10289 Date: Sat May 17 07:55:33 2003 -0400
10290
10291 Oops
10292
10293 commit 668b7018dd6ccd5a7802f71b29eb4e155801ff86
10294 Author: Matteo Frigo <athena@fftw.org>
10295 Date: Sat May 17 07:50:35 2003 -0400
10296
10297 Allow vl > 1
10298
10299 commit 1919840986e87d611bccc5a1ffbaa469bccaa94a
10300 Author: Matteo Frigo <athena@fftw.org>
10301 Date: Sat May 17 07:01:42 2003 -0400
10302
10303 Radix can be derived from problem---no need to pre-specify it.
10304
10305 commit a25c7ceebb0e65bb9b03bd7c30e3b97a29063185
10306 Author: Steven G. Johnson <stevenj@fftw.org>
10307 Date: Fri May 16 22:50:50 2003 -0400
10308
10309 fixed comment
10310
10311 commit e12663ca110ee43071e2344163161cd2122312c4
10312 Author: Steven G. Johnson <stevenj@fftw.org>
10313 Date: Fri May 16 22:48:20 2003 -0400
10314
10315 whoops, gcd should be static
10316
10317 commit 96c37858e236a75341bc45eca6e8a9a6180c61c8
10318 Author: Steven G. Johnson <stevenj@fftw.org>
10319 Date: Fri May 16 22:40:32 2003 -0400
10320
10321 more unrolling
10322
10323 commit ce888f64f2b19c2b1d0a2306c0f5a0bfb282e2cf
10324 Author: Matteo Frigo <athena@fftw.org>
10325 Date: Fri May 16 20:03:48 2003 -0400
10326
10327 Hack to avoid infinite recursion.
10328
10329 commit 3be61e5d6f8b5c517feed2417902fc4fc8205180
10330 Author: Steven G. Johnson <stevenj@fftw.org>
10331 Date: Fri May 16 19:52:43 2003 -0400
10332
10333 consistency
10334
10335 commit 10ef200843d878ba4e88a6e59c53ec89b48cba11
10336 Author: Matteo Frigo <athena@fftw.org>
10337 Date: Fri May 16 19:45:15 2003 -0400
10338
10339 Wrong comment.
10340
10341 commit 9ad0f5ae45b2265e1307381d14a436eb43998c8d
10342 Author: Matteo Frigo <athena@fftw.org>
10343 Date: Fri May 16 19:45:03 2003 -0400
10344
10345 Style.
10346
10347 commit bc609cdbd63dfd90154f4f0b07a0fb6c9c1f7354
10348 Author: Steven G. Johnson <stevenj@fftw.org>
10349 Date: Fri May 16 18:35:27 2003 -0400
10350
10351 punctuation
10352
10353 commit 3c931e88733a24d99d4639165f16f073ff25b35e
10354 Author: Steven G. Johnson <stevenj@fftw.org>
10355 Date: Fri May 16 18:33:45 2003 -0400
10356
10357 added allzero FAQ
10358
10359 commit 4e3c1c97240d8dc8b8595f179994e9999e2a7b98
10360 Author: Steven G. Johnson <stevenj@fftw.org>
10361 Date: Fri May 16 18:22:45 2003 -0400
10362
10363 simplification: instead of cldb, just use cldf with inputs/output values swapped
10364
10365 commit 734444b8d502c323a04fd2cc6e6fc37d53cd4b04
10366 Author: Matteo Frigo <athena@fftw.org>
10367 Date: Fri May 16 15:47:17 2003 -0400
10368
10369 Allow more general transform sizes.
10370
10371 commit 77d47783b6445a14416a351ffb88c70348bb7ae1
10372 Author: Steven G. Johnson <stevenj@fftw.org>
10373 Date: Fri May 16 14:22:37 2003 -0400
10374
10375 slight change
10376
10377 commit 7bdfe7acb85d3e5c4081537789ee95c49d852e0c
10378 Author: Steven G. Johnson <stevenj@fftw.org>
10379 Date: Fri May 16 14:22:05 2003 -0400
10380
10381 MS has __int64 type, not long long (grr)
10382
10383 commit 6778b57c92f2c729955fec383ee1ec817559b35f
10384 Author: Matteo Frigo <athena@fftw.org>
10385 Date: Fri May 16 13:34:16 2003 -0400
10386
10387 Fixed printout
10388
10389 commit 26cad01414a0e9ec0f5809c3fafdcd0ebeca8eee
10390 Author: Matteo Frigo <athena@fftw.org>
10391 Date: Fri May 16 13:23:00 2003 -0400
10392
10393 Fixed flop count
10394
10395 commit 6663b7b12eed820ccad08bbe8a7b13d4e7e96baf
10396 Author: Matteo Frigo <athena@fftw.org>
10397 Date: Fri May 16 13:02:06 2003 -0400
10398
10399 New bluestein solver
10400
10401 commit a3444150521abc3e4522064bfbce259979d143dd
10402 Author: Matteo Frigo <athena@fftw.org>
10403 Date: Fri May 16 09:51:05 2003 -0400
10404
10405 Implemented generic radix.
10406
10407 commit 105268f348df67714aaff107d5a4817a8ea9069e
10408 Author: Matteo Frigo <athena@fftw.org>
10409 Date: Fri May 16 08:19:38 2003 -0400
10410
10411 Removed conditional branch from inner loop in generic.c
10412
10413 commit 44179d747df49fe429ae0108b108e1f28b71023c
10414 Author: Matteo Frigo <athena@fftw.org>
10415 Date: Fri May 16 07:48:28 2003 -0400
10416
10417 Simplified indexing
10418
10419 commit 6a89bb8523df8e372f221f4ccdd6fa9e75120ec1
10420 Author: Matteo Frigo <athena@fftw.org>
10421 Date: Fri May 16 06:53:56 2003 -0400
10422
10423 Better still.
10424
10425 commit bc7126aa1f6bca65323f8d367629a9e6ddb18310
10426 Author: Matteo Frigo <athena@fftw.org>
10427 Date: Fri May 16 06:24:31 2003 -0400
10428
10429 Further improvement of generic solver
10430
10431 commit 29931919e62a0633afc7fdfe2738fba18419e30c
10432 Author: Matteo Frigo <athena@fftw.org>
10433 Date: Fri May 16 05:57:07 2003 -0400
10434
10435 Cleanup
10436
10437 commit 516d81975ebfabe254800e61a072976ce2493792
10438 Author: Matteo Frigo <athena@fftw.org>
10439 Date: Fri May 16 05:42:57 2003 -0400
10440
10441 Cleanup
10442
10443 commit 9c40e9a8ab92ae76b96b1e57a51a8a46cd4202aa
10444 Author: Matteo Frigo <athena@fftw.org>
10445 Date: Fri May 16 05:31:40 2003 -0400
10446
10447 Generic now only works for odd sized. Added check.
10448
10449 commit a4abb5b3c869ca3d4c1b572793c4128935461f2e
10450 Author: Matteo Frigo <athena@fftw.org>
10451 Date: Thu May 15 21:53:25 2003 -0400
10452
10453 Increased GENERIC_MIN_BAD because of new algorithm.
10454
10455 commit 60bf38f4720ea99600008e1ad0772e3871cc975d
10456 Author: Matteo Frigo <athena@fftw.org>
10457 Date: Thu May 15 21:40:27 2003 -0400
10458
10459 Much, much better.
10460
10461 commit bd0ae8b86cd6e44542f040b89670e8559cb4daef
10462 Author: Matteo Frigo <athena@fftw.org>
10463 Date: Thu May 15 21:25:00 2003 -0400
10464
10465 Still trying to understand why rdft-generic-dit is faster
10466 then dft-generic...
10467
10468 commit 1ace458103964bbd9cc763efde55b6c64543e072
10469 Author: Matteo Frigo <athena@fftw.org>
10470 Date: Thu May 15 21:04:33 2003 -0400
10471
10472 Nothing, really
10473
10474 commit e68561ce796750faf2eb70606053723da3a3651b
10475 Author: Matteo Frigo <athena@fftw.org>
10476 Date: Thu May 15 20:59:45 2003 -0400
10477
10478 Never be clever for the sake of being clever.
10479
10480 commit 3480d0dea4ccb5fa65ea2c8950aea4821cea6e3a
10481 Author: Matteo Frigo <athena@fftw.org>
10482 Date: Thu May 15 20:58:06 2003 -0400
10483
10484 Simplified. generic-dit is gone. The solver is now out-of-place
10485 only---buffering is done by the buffered solver.
10486
10487 commit 21161d67e447696eda8fb463a6e629fdb9b9a286
10488 Author: Matteo Frigo <athena@fftw.org>
10489 Date: Thu May 15 19:18:18 2003 -0400
10490
10491 rader-dit is gone.
10492
10493 commit 99baac8e16f51413086aa8b35ff5894b43ddce25
10494 Author: Matteo Frigo <athena@fftw.org>
10495 Date: Thu May 15 19:13:03 2003 -0400
10496
10497 Cast
10498
10499 commit 9bc90955564668ef3b897434df873ea7a9e987b7
10500 Author: Matteo Frigo <athena@fftw.org>
10501 Date: Thu May 15 19:09:07 2003 -0400
10502
10503 Introduced twiddle problem ``dftw''. Changed most other things
10504 to deal with this change.
10505
10506 commit 57d761eab36c018f98849a04c82df5fdc61db498
10507 Author: Steven G. Johnson <stevenj@fftw.org>
10508 Date: Thu May 15 18:47:18 2003 -0400
10509
10510 whoops, X(safe_mulmod) not fftw_safe_mulmod
10511
10512 commit ad0f04aa3eead44c4f82e436a20241a8d76fdfba
10513 Author: Steven G. Johnson <stevenj@fftw.org>
10514 Date: Thu May 15 16:53:16 2003 -0400
10515
10516 add VC++ versions of asm
10517
10518 commit 4e67675d7f66ce57718045e8ddf3769ba44f378f
10519 Author: Steven G. Johnson <stevenj@fftw.org>
10520 Date: Thu May 15 15:03:06 2003 -0400
10521
10522 VC++ reportedly supports the intel intrinsics, but requires __inline instead of __inline__
10523
10524 commit 8d72a4d25a56b9b8c9e918cb462ae7f8429fce9c
10525 Author: Steven G. Johnson <stevenj@fftw.org>
10526 Date: Thu May 15 14:32:06 2003 -0400
10527
10528 precompute array indices with VC++
10529
10530 commit 7a8ca44fd207d2de8947e6d7dad9b6122d5eacf4
10531 Author: Steven G. Johnson <stevenj@fftw.org>
10532 Date: Wed May 14 21:57:39 2003 -0400
10533
10534 added doc note
10535
10536 commit e21c7e8fbc7073874cec2c052a810cb8c8bafb6c
10537 Author: Steven G. Johnson <stevenj@fftw.org>
10538 Date: Wed May 14 19:45:54 2003 -0400
10539
10540 autodetect windows
10541
10542 commit 9e15f067241ae365258fdae039f13855799566b5
10543 Author: Steven G. Johnson <stevenj@fftw.org>
10544 Date: Wed May 14 15:08:49 2003 -0400
10545
10546 don't bother with #ifdef HAVE_CONFIG_H, since non-Unix users always forget to define it
10547
10548 commit 8fd89cce099546af6bb94f83b4e84bc46609708a
10549 Author: Steven G. Johnson <stevenj@fftw.org>
10550 Date: Tue May 13 16:58:07 2003 -0400
10551
10552 VC++ uses __inline
10553
10554 commit 02aaa87cb911b0d6d67ec4f11932357f702aa75f
10555 Author: Steven G. Johnson <stevenj@fftw.org>
10556 Date: Tue May 13 14:51:26 2003 -0400
10557
10558 added leak question
10559
10560 commit 64d02f177161f96e87c02cde6015ceff42ac0bfe
10561 Author: Steven G. Johnson <stevenj@fftw.org>
10562 Date: Mon May 12 18:26:51 2003 -0400
10563
10564 LARGE_INTEGER needs windows.h (supposedly, there is some problem converting _itnt64 to double...damn MS and their nonstandard types)
10565
10566 commit 342ab9adfdb7bf9a5936f1c1d3f0820fa729ab2e
10567 Author: Steven G. Johnson <stevenj@fftw.org>
10568 Date: Mon May 12 18:22:16 2003 -0400
10569
10570 whoops
10571
10572 commit a8cb5339f580f0f4ee0ff02c58f91036b7fef886
10573 Author: Steven G. Johnson <stevenj@fftw.org>
10574 Date: Mon May 12 17:16:19 2003 -0400
10575
10576 added 256x256 to canonical list
10577
10578 commit 446260f6a6a84986c7eec6e1b3c0eea0f66f759d
10579 Author: Matteo Frigo <athena@fftw.org>
10580 Date: Mon May 12 07:02:06 2003 -0400
10581
10582 Oops...
10583
10584 commit 924714d15f5ed063b1fa8a40a3bcd2ebe406e572
10585 Author: Matteo Frigo <athena@fftw.org>
10586 Date: Sun May 11 11:04:46 2003 -0400
10587
10588 Unrolled loops, changed cutoff
10589
10590 commit a8e681a4dd1d8cbae25becdb745926efde43cf3c
10591 Author: Matteo Frigo <athena@fftw.org>
10592 Date: Sun May 11 10:20:04 2003 -0400
10593
10594 Do not multiply strides by 2 twice.
10595
10596 commit cba6f4731943edfe50f4bacd9de28d0551593f43
10597 Author: Steven G. Johnson <stevenj@fftw.org>
10598 Date: Wed May 7 21:09:43 2003 -0400
10599
10600 added 'make smallcheck'
10601
10602 commit 8f61201655a4d04b402d2cec34acb86e89cbe35f
10603 Author: Steven G. Johnson <stevenj@fftw.org>
10604 Date: Wed May 7 20:46:10 2003 -0400
10605
10606 --without-cycle-counter becomes --with-slow-timer, updated docs
10607
10608 commit e77df17a33148f0cd531fcf1bcf371af0b69ced6
10609 Author: Steven G. Johnson <stevenj@fftw.org>
10610 Date: Wed May 7 18:05:29 2003 -0400
10611
10612 remove duplicate -openmp check; Sun requires -xopenmp
10613
10614 commit 34594ee9cdef76091eff1164f9518e92bf0b855b
10615 Author: Steven G. Johnson <stevenj@fftw.org>
10616 Date: Wed May 7 17:59:23 2003 -0400
10617
10618 fixed compilation under Sun C++
10619
10620 commit fe5788275ebad911c952662c50694c2f296ae4b2
10621 Author: Matteo Frigo <athena@fftw.org>
10622 Date: Wed May 7 14:24:46 2003 -0400
10623
10624 Use estimator if cycle counter is unavailable, regardless
10625 of the FFTW_MEASURE/ESTIMATE setting.
10626
10627 commit 7d2473af5f98cac96951e94c009b96f1d96dcea3
10628 Author: Steven G. Johnson <stevenj@fftw.org>
10629 Date: Tue May 6 23:15:34 2003 -0400
10630
10631 _WIN32 (not __WIN32__) is always defined
10632
10633 commit a9d4840add6bac6ef0f0f194868861615f52d91c
10634 Author: Steven G. Johnson <stevenj@fftw.org>
10635 Date: Tue May 6 23:11:52 2003 -0400
10636
10637 minor cleanup
10638
10639 commit 33d6678021b7c966f0490729f9839282d88b7e68
10640 Author: Steven G. Johnson <stevenj@fftw.org>
10641 Date: Tue May 6 22:50:07 2003 -0400
10642
10643 tentative VC++ stuff, some consolidation
10644
10645 commit 4b2c8b1fdf43a442999e9309b1abb5f525b2a5e2
10646 Author: Steven G. Johnson <stevenj@fftw.org>
10647 Date: Tue May 6 12:17:56 2003 -0400
10648
10649 made cycle.h more self-contained
10650
10651 commit 17b78ccd6e3bf378453a85f671f02c82eb45ced4
10652 Author: Matteo Frigo <athena@fftw.org>
10653 Date: Tue May 6 08:30:39 2003 -0400
10654
10655 Use ``%'' flag to denote commutative operations.
10656
10657 commit b98342890cbb95b8f450d6da8e22637b455fccc0
10658 Author: Steven G. Johnson <stevenj@fftw.org>
10659 Date: Mon May 5 20:42:30 2003 -0400
10660
10661 MIT license, brief documentation
10662
10663 commit 95f79870876aa95354fecf59c0da025edb8982f9
10664 Author: Steven G. Johnson <stevenj@fftw.org>
10665 Date: Mon May 5 20:31:16 2003 -0400
10666
10667 whoops, forgot f77_wisdom.f
10668
10669 commit 5cdde47077a07f4aa39487741662e868f5cf11df
10670 Author: Matteo Frigo <athena@fftw.org>
10671 Date: Sun May 4 19:37:09 2003 -0400
10672
10673 Improved speed of accuracy test.
10674
10675 commit ff00ccc1b3a83962c18e91ab12740ca63bbb6081
10676 Author: Matteo Frigo <athena@fftw.org>
10677 Date: Tue Apr 29 11:45:34 2003 -0400
10678
10679 s390 cycle counter
10680
10681 commit 2ab4e6e2c3bfdd6882bad8bca36fdc105f742847
10682 Author: Steven G. Johnson <stevenj@fftw.org>
10683 Date: Sat Apr 26 12:26:15 2003 -0400
10684
10685 forgot r2r directory
10686
10687 commit 990abcc219adbf0759807b9b2c20d80f639dd940
10688 Author: Steven G. Johnson <stevenj@fftw.org>
10689 Date: Fri Apr 25 20:52:23 2003 -0400
10690
10691 delete unused files, since they don't compile any more
10692
10693 commit a35c9fd7e587b8301131f8e530387dad7e62fc00
10694 Author: Matteo Frigo <athena@fftw.org>
10695 Date: Thu Apr 24 06:37:41 2003 -0400
10696
10697 Better gcc code generation
10698
10699 commit 462d92a21265012fd4fb89326da6bccd69f05406
10700 Author: Steven G. Johnson <stevenj@fftw.org>
10701 Date: Wed Apr 23 15:30:50 2003 -0400
10702
10703 ccc is the Compaq C compiler on Linux/alpha
10704
10705 commit a97d5f6b3b451179f501157bfe6fafde3481ea0d
10706 Author: Steven G. Johnson <stevenj@fftw.org>
10707 Date: Wed Apr 23 00:06:03 2003 -0400
10708
10709 whoops
10710
10711 commit a53aa0afb9f63f64ee6235e07fd99014f6da32fb
10712 Author: Matteo Frigo <athena@fftw.org>
10713 Date: Sat Apr 19 09:18:25 2003 -0400
10714
10715 ia64 cycle counter with intel compiler.
10716
10717 commit 20978a6bcaad9c07b4c969eae56ab29ae092e2bb
10718 Author: Matteo Frigo <athena@fftw.org>
10719 Date: Fri Apr 18 18:27:30 2003 -0400
10720
10721 More gcc bugs. Sigh.
10722
10723 commit 1a9f1a74c640a09efbabff5043cc7074b6bfefe0
10724 Author: Matteo Frigo <athena@fftw.org>
10725 Date: Fri Apr 18 18:01:49 2003 -0400
10726
10727 touch ChangeLog to observe GNU standards
10728
10729 commit 4241f03ed18cc0acf61072c70b9c38b1c7dc7c31
10730 Author: Matteo Frigo <athena@fftw.org>
10731 Date: Fri Apr 18 18:01:12 2003 -0400
10732
10733 We now build ChangeLog automatically at distribution time
10734
10735 commit 1797417a3e517b1f9b9931e49797dff29ae760da
10736 Author: Matteo Frigo <athena@fftw.org>
10737 Date: Fri Apr 18 18:00:17 2003 -0400
10738
10739 Automatic ChangeLog hackery
10740
10741 commit d76cd97496030b79d3450f2c6de88da7b4458bd6
10742 Author: Steven G. Johnson <stevenj@fftw.org>
10743 Date: Fri Apr 18 13:25:26 2003 -0400
10744
10745 plural
10746
10747 commit 6c59528dcbd6ce3676a0852bad2d909e68fdeeac
10748 Author: Steven G. Johnson <stevenj@fftw.org>
10749 Date: Fri Apr 18 13:25:01 2003 -0400
10750
10751 updated
10752
10753 commit b37ba8f3518f8be4c0c25dd86f102c9e64527104
10754 Author: Matteo Frigo <athena@fftw.org>
10755 Date: Fri Apr 18 12:59:41 2003 -0400
10756
10757 Updated
10758
10759 commit 61ac8832cb1bd238132fe475c699f12e11232781
10760 Author: Steven G. Johnson <stevenj@fftw.org>
10761 Date: Fri Apr 18 11:48:39 2003 -0400
10762
10763 a -> an
10764
10765 commit 287a97f4366aeb55745345972896f06e378dcacf
10766 Author: Steven G. Johnson <stevenj@fftw.org>
10767 Date: Fri Apr 18 11:47:56 2003 -0400
10768
10769 hyphen
10770
10771 commit 8791b19a3135636c10dd4e99695799a6ac315870
10772 Author: Steven G. Johnson <stevenj@fftw.org>
10773 Date: Fri Apr 18 11:47:28 2003 -0400
10774
10775 comma
10776
10777 commit ad823e8abbe446885056a5fc05555e295b7a174f
10778 Author: Steven G. Johnson <stevenj@fftw.org>
10779 Date: Fri Apr 18 11:46:59 2003 -0400
10780
10781 minor
10782
10783 commit 7a09c0d18816d7d1c2ed89a0dfbd62843d3442eb
10784 Author: Matteo Frigo <athena@fftw.org>
10785 Date: Fri Apr 18 10:37:31 2003 -0400
10786
10787 Updated
10788
10789 commit 13381c1ba5e8af34a8bb03710aa7741a8040cc07
10790 Author: Matteo Frigo <athena@fftw.org>
10791 Date: Fri Apr 18 10:14:59 2003 -0400
10792
10793 New script that builds the distributions
10794
10795 commit 459fa38ea6735a02e430cb0ecbca2323e07cef57
10796 Author: Matteo Frigo <athena@fftw.org>
10797 Date: Fri Apr 18 08:51:07 2003 -0400
10798
10799 Oops again
10800
10801 commit e57ee39dc083cd4461a548cded7fdc45e57fc74f
10802 Author: Matteo Frigo <athena@fftw.org>
10803 Date: Fri Apr 18 08:39:05 2003 -0400
10804
10805 Oops, forgot -sign 1
10806
10807 commit 396b6bc876a10a52ce9dc68230e2eb25af544f29
10808 Author: Matteo Frigo <athena@fftw.org>
10809 Date: Fri Apr 18 08:28:25 2003 -0400
10810
10811 Reorganization of simd codelets
10812
10813 commit fd7cb9b51d78aabe5b32969758bf472ca0d563ae
10814 Author: Matteo Frigo <athena@fftw.org>
10815 Date: Thu Apr 17 21:21:45 2003 -0400
10816
10817 k7 assembly was not updated after conversion of opcnt from
10818 int to double
10819
10820 commit 3bf64e2b77975db0ec3c2ad2232fa9dfceeae35f
10821 Author: Matteo Frigo <athena@fftw.org>
10822 Date: Thu Apr 17 19:15:53 2003 -0400
10823
10824 Capital `X' looks bad in all-lowercase plans
10825
10826 commit 448802e951a73d406bacc449b5d7eb0ece3bfaf6
10827 Author: Matteo Frigo <athena@fftw.org>
10828 Date: Thu Apr 17 18:53:29 2003 -0400
10829
10830 Removed redundant inline/noinline codelets
10831
10832 commit b72b1f8cdf96f12c6776efdb456cdd6e2eff00b3
10833 Author: Matteo Frigo <athena@fftw.org>
10834 Date: Thu Apr 17 15:25:50 2003 -0400
10835
10836 New noinline
10837 Noinline real codelets
10838
10839 commit 4f5ff427ae9e39bda6b17cdc61b9ecfad075f322
10840 Author: Steven G. Johnson <stevenj@fftw.org>
10841 Date: Thu Apr 17 15:23:03 2003 -0400
10842
10843 more ideas
10844
10845 commit e549828bdf29f4ba5b352f8d54e1d8fb65e86b0b
10846 Author: Matteo Frigo <athena@fftw.org>
10847 Date: Thu Apr 17 13:18:45 2003 -0400
10848
10849 Removed duplicate rules.
10850
10851 commit 29889996e0d7e2beec6c4afaf8d06936f0bc8e7a
10852 Author: Matteo Frigo <athena@fftw.org>
10853 Date: Thu Apr 17 10:51:09 2003 -0400
10854
10855 acx_pthread.m4 was not distributed
10856
10857 commit 4bcda610088022777266a9d4723e3108871a2382
10858 Author: Matteo Frigo <athena@fftw.org>
10859 Date: Thu Apr 17 07:21:17 2003 -0400
10860
10861 Oops
10862
10863 commit 92ba4bfacade8ab1d4dae0e256cda08e8b22eb3c
10864 Author: Matteo Frigo <athena@fftw.org>
10865 Date: Thu Apr 17 07:07:19 2003 -0400
10866
10867 Both inlined and non-inlined notw codelets.
10868
10869 commit bc5fcf6d524989489b08f05b59fd2660b4331765
10870 Author: Matteo Frigo <athena@fftw.org>
10871 Date: Thu Apr 17 06:44:21 2003 -0400
10872
10873 Initial experiment with both inlined and non-inlined simd codelets.
10874 Both are included for now.
10875
10876 commit 5586bdcd9d791a373355fae20e4df01e8b51ef32
10877 Author: Matteo Frigo <athena@fftw.org>
10878 Date: Thu Apr 17 05:57:36 2003 -0400
10879
10880 --enable-fma to build FMA distribution
10881
10882 commit 6719f26d34cd9bd0dce5a3d279a06b113cd774a7
10883 Author: Matteo Frigo <athena@fftw.org>
10884 Date: Wed Apr 16 17:21:53 2003 -0400
10885
10886 Inline SIMD nontwiddle codelets
10887
10888 commit 5db4d2ae77f5600008ce54b88e93a0e7fbcc649b
10889 Author: Matteo Frigo <athena@fftw.org>
10890 Date: Wed Apr 16 16:18:29 2003 -0400
10891
10892 Pathetic attempt at saving a couple of registers...
10893
10894 commit 7267a94d763a0380970f1b07ee84aad71f138c8f
10895 Author: Matteo Frigo <athena@fftw.org>
10896 Date: Wed Apr 16 15:51:27 2003 -0400
10897
10898 for (i = 0; i < m; ++i) ==> for (i = m; i > 0; --i)
10899 No proof of evidence that this is any faster, but just in case...
10900
10901 commit 607d75d99f7b0c558d5664cc18b0c6a070d3aa02
10902 Author: Steven G. Johnson <stevenj@fftw.org>
10903 Date: Tue Apr 15 15:03:20 2003 -0400
10904
10905 added hack to make sure that codelet loops are preferred to vecloop solvers in the estimator
10906
10907 commit a772926574ae28c851b95b9eea8d22d0b244e25e
10908 Author: Steven G. Johnson <stevenj@fftw.org>
10909 Date: Tue Apr 15 14:53:44 2003 -0400
10910
10911 use double for flops
10912
10913 commit 84c191f258a2ee1fde8b39e4a567f48bc84d273a
10914 Author: Steven G. Johnson <stevenj@fftw.org>
10915 Date: Tue Apr 15 14:51:50 2003 -0400
10916
10917 metrowerks reportedly supports gcc assembly extensions on ppc
10918
10919 commit d83a8e3d6b322b293fb8b048bb46c1048faf430b
10920 Author: Matteo Frigo <athena@fftw.org>
10921 Date: Mon Apr 14 15:00:50 2003 -0400
10922
10923 foo_CFLAGS generates some automake junk that breaks the build
10924 on Redhat 7.3. Screw it.
10925
10926 commit 54128f6b2dd2ea009736debbb0c2eee43c4a0ade
10927 Author: Matteo Frigo <athena@fftw.org>
10928 Date: Mon Apr 14 12:22:59 2003 -0400
10929
10930 Carefully check return status
10931
10932 commit 8935dbb4a98ff9a7780aa1ce7a98c656b7284d79
10933 Author: Matteo Frigo <athena@fftw.org>
10934 Date: Sun Apr 13 16:46:12 2003 -0400
10935
10936 Removed annoying -FMA() expressions.
10937
10938 commit 8ce45c13aca6d081f84f8dcb84a973383d3e5ee8
10939 Author: Matteo Frigo <athena@fftw.org>
10940 Date: Sat Apr 12 14:32:22 2003 -0400
10941
10942 Major fma hackery
10943
10944 commit 4a294df6343206e437a3f24ed268a71c9cd9edb0
10945 Author: Matteo Frigo <athena@fftw.org>
10946 Date: Sat Apr 12 14:25:43 2003 -0400
10947
10948 Slight cleanup
10949
10950 commit bda29baca81b8098e25fb1d61d3aa7b882f33ef5
10951 Author: Matteo Frigo <athena@fftw.org>
10952 Date: Sat Apr 12 10:04:51 2003 -0400
10953
10954 Updated version number
10955
10956 commit 80a70d1b1e8e1d7e336301a3f65b26d153ba15a7
10957 Author: Matteo Frigo <athena@fftw.org>
10958 Date: Sat Apr 12 08:03:07 2003 -0400
10959
10960 Damn autoconf
10961
10962 commit 27c1334aec2b8b3bbc7e679761d0ddab53212487
10963 Author: Matteo Frigo <athena@fftw.org>
10964 Date: Sat Apr 12 07:54:20 2003 -0400
10965
10966 Recognize all 74xx processors
10967
10968 commit 7b1c87d4184dace0460075da82295c1fc90e523d
10969 Author: Matteo Frigo <athena@fftw.org>
10970 Date: Sat Apr 12 07:35:17 2003 -0400
10971
10972 Detect 7400 processor.
10973
10974 commit ea19ce217870bff790c8e91865228328a08cd769
10975 Author: Matteo Frigo <athena@fftw.org>
10976 Date: Fri Apr 11 20:42:11 2003 -0400
10977
10978 No need to check for gcc-2.95
10979
10980 commit fb6560399e6c1dc7382fc48209545f4494f87e65
10981 Author: Steven G. Johnson <stevenj@fftw.org>
10982 Date: Fri Apr 11 16:14:39 2003 -0400
10983
10984 removed duplicate
10985
10986 commit 114c5faeddef91d05efc3af062e58f21879cd77d
10987 Author: Matteo Frigo <athena@fftw.org>
10988 Date: Fri Apr 11 08:45:37 2003 -0400
10989
10990 mflops ==> ``mflops''
10991
10992 commit be09e2c160458ffa571c8c207546d77dd86f1022
10993 Author: Matteo Frigo <athena@fftw.org>
10994 Date: Fri Apr 11 07:00:53 2003 -0400
10995
10996 Print setup time as well
10997
10998 commit a55b833ea382a9dcf478517c83d68d044db4dcaa
10999 Author: Matteo Frigo <athena@fftw.org>
11000 Date: Thu Apr 10 15:36:18 2003 -0400
11001
11002 Enforce pointer equality for in-place problems.
11003
11004 commit a920de28e41596cc862a7f7bcc14c27c68920b53
11005 Author: Steven G. Johnson <stevenj@fftw.org>
11006 Date: Wed Apr 9 17:47:54 2003 -0400
11007
11008 updated
11009
11010 commit 080c6f9a24e129da6a216d44e581ea9c5012df83
11011 Author: Steven G. Johnson <stevenj@fftw.org>
11012 Date: Wed Apr 9 14:53:38 2003 -0400
11013
11014 cross-ref fftw-wisdom man page
11015
11016 commit 920b026d6c76cc8b23b877e8238cb6cd9f71e7af
11017 Author: Matteo Frigo <athena@fftw.org>
11018 Date: Wed Apr 9 10:13:00 2003 -0400
11019
11020 Undone previous change, committed by mistake.
11021
11022 commit c636a6d32d90fda78f15b6e5b0060feeea45b47c
11023 Author: Matteo Frigo <athena@fftw.org>
11024 Date: Wed Apr 9 10:12:24 2003 -0400
11025
11026 Quick and dirty README for bench
11027
11028 commit e542ee15fcc1eaa62b3c1ea6a58cc3bc468ff599
11029 Author: Matteo Frigo <athena@fftw.org>
11030 Date: Wed Apr 9 08:50:25 2003 -0400
11031
11032 Consider additional command-line arguments as problems to be
11033 benchmarked.
11034
11035 commit 2196cad41694a580854e0f04991d3055d9e365e3
11036 Author: Matteo Frigo <athena@fftw.org>
11037 Date: Wed Apr 9 08:44:13 2003 -0400
11038
11039 Default report format is now human-readable. Removed
11040 unnecessary complexity in benchmark reporting.
11041
11042 commit 1ecc5f59fb401c7ecdeb54596088ac86ede3639a
11043 Author: Matteo Frigo <athena@fftw.org>
11044 Date: Wed Apr 9 06:10:40 2003 -0400
11045
11046 Updated for new interleaved/split api.
11047
11048 commit 8d3536f2476441b3f7754a1d5298102d6cd14ac2
11049 Author: Steven G. Johnson <stevenj@fftw.org>
11050 Date: Wed Apr 9 03:01:03 2003 -0400
11051
11052 updated citation
11053
11054 commit aaf6b0e66924b89fb8c927bbcc3bc655512aab13
11055 Author: Matteo Frigo <athena@fftw.org>
11056 Date: Tue Apr 8 19:35:59 2003 -0400
11057
11058 Time for beta3
11059
11060 commit f5c162435d5334990a7c6f3421191592a831bdd7
11061 Author: Steven G. Johnson <stevenj@fftw.org>
11062 Date: Tue Apr 8 17:40:59 2003 -0400
11063
11064 whoops, added
11065
11066 commit 14108da14b0738a1c8b036a901971104d5374ef7
11067 Author: Steven G. Johnson <stevenj@fftw.org>
11068 Date: Tue Apr 8 17:33:47 2003 -0400
11069
11070 more comparison of different R*DFT types
11071
11072 commit 75bbef9a658de085d8c21952d597dbca9e8fa722
11073 Author: Steven G. Johnson <stevenj@fftw.org>
11074 Date: Tue Apr 8 16:48:08 2003 -0400
11075
11076 comments
11077
11078 commit 0ba9318b95b11d2cb5470ebcf73a1819d31caafb
11079 Author: Steven G. Johnson <stevenj@fftw.org>
11080 Date: Tue Apr 8 16:19:39 2003 -0400
11081
11082 more accurate DCT-I and DST-I, at the expense of up to a factor of 2 in speed and memory
11083
11084 commit 404912f3cee76dd7a6b3928798304c64c55129bf
11085 Author: Matteo Frigo <athena@fftw.org>
11086 Date: Tue Apr 8 05:38:09 2003 -0400
11087
11088 Workaround gcc/sparc bug
11089
11090 commit f34586737c6b234a5e2316dddbbe425331d4a5b3
11091 Author: Steven G. Johnson <stevenj@fftw.org>
11092 Date: Tue Apr 8 01:34:12 2003 -0400
11093
11094 rumors
11095
11096 commit 78f9ac7bedec0c22cb7fc5fccdbb2adc8b8c4f3b
11097 Author: Steven G. Johnson <stevenj@fftw.org>
11098 Date: Mon Apr 7 18:54:11 2003 -0400
11099
11100 added rdft2 paranoid mode
11101
11102 commit 55b03e7ef8ab680294bbbe73059cb32cef82ac65
11103 Author: Steven G. Johnson <stevenj@fftw.org>
11104 Date: Mon Apr 7 18:47:37 2003 -0400
11105
11106 added paranoid mode for r2r
11107
11108 commit 8361bbcd9549f5c5819b31ce44c2e733e185f1a5
11109 Author: Steven G. Johnson <stevenj@fftw.org>
11110 Date: Mon Apr 7 15:10:08 2003 -0400
11111
11112 whoops, sincos is predefined on some systems
11113
11114 commit 0e1c9cf517e0d4010af5a35d10d141b2d74f7d0e
11115 Author: Matteo Frigo <athena@fftw.org>
11116 Date: Sat Apr 5 16:50:57 2003 -0500
11117
11118 bp->destroy_input was not initialized
11119
11120 commit 7b13a4d8dfbf05ed699e7a1a533e7edf9355e2bc
11121 Author: Matteo Frigo <athena@fftw.org>
11122 Date: Sat Apr 5 09:29:11 2003 -0500
11123
11124 Asserted correctness conditions for tainted pointers.
11125
11126 (For now, use CK() while we test. They should be changed into
11127 A() at some point.)
11128
11129 commit 6b16dfb3e11fcfa65d2064af8ee1c66f0e0ba2a2
11130 Author: Matteo Frigo <athena@fftw.org>
11131 Date: Sat Apr 5 08:18:23 2003 -0500
11132
11133 Untaint pointers before zero'ing arrays and before hashing
11134
11135 commit 1495e7c627b502d282f4fb290357d6fe573e12dd
11136 Author: Matteo Frigo <athena@fftw.org>
11137 Date: Sat Apr 5 07:11:56 2003 -0500
11138
11139 Alignment check did not work with icc, which seems to be
11140 confused by the fact that the variable is not used.
11141
11142 commit e013a83a5d1fb9e98a7d035baa3e4c5a89f768f1
11143 Author: Matteo Frigo <athena@fftw.org>
11144 Date: Sat Apr 5 06:41:20 2003 -0500
11145
11146 More paranoid paranoid-check
11147
11148 commit 377dd60fc68c62595e87882b3a5caede183a1251
11149 Author: Matteo Frigo <athena@fftw.org>
11150 Date: Sat Apr 5 06:19:25 2003 -0500
11151
11152 0 == x & 7 parses as (0 == x) & 7, which is wrong
11153
11154 commit 109ea5550e130de0017dcdf2665c0872ff776e98
11155 Author: Steven G. Johnson <stevenj@fftw.org>
11156 Date: Fri Apr 4 21:35:49 2003 -0500
11157
11158 alignment checks
11159
11160 commit 97c940cb1b38b75289d99b2206d77a13db97f6fb
11161 Author: Steven G. Johnson <stevenj@fftw.org>
11162 Date: Fri Apr 4 21:04:14 2003 -0500
11163
11164 prevent infinite loops in exhaustive planning
11165
11166 commit 20a0d16cc3bf2a26e0e5b2ed4f1691c617ab676e
11167 Author: Steven G. Johnson <stevenj@fftw.org>
11168 Date: Fri Apr 4 20:58:20 2003 -0500
11169
11170 split/unsplit guru interface
11171
11172 commit ec77ade6672c46fde379e806bb25f26569eaa874
11173 Author: Matteo Frigo <athena@fftw.org>
11174 Date: Fri Apr 4 20:39:55 2003 -0500
11175
11176 Need UNTAINT in verifier too.
11177
11178 commit 2fd0ede87b74bd6a6b325910eb68ce55ee69ae66
11179 Author: Matteo Frigo <athena@fftw.org>
11180 Date: Fri Apr 4 19:36:46 2003 -0500
11181
11182 Forgot #if HAVE_SIMD
11183
11184 commit 0509bf08e01662eb716c8038093caab6bbbe867e
11185 Author: Matteo Frigo <athena@fftw.org>
11186 Date: Fri Apr 4 19:30:37 2003 -0500
11187
11188 Keep track of two separate taint bits
11189
11190 commit dc9c49340a92349a47d46befc4f85937b95911c5
11191 Author: Steven G. Johnson <stevenj@fftw.org>
11192 Date: Fri Apr 4 19:16:32 2003 -0500
11193
11194 added NO_SIMD problem flag, made UNALIGNED an API issue (taints input pointers)
11195
11196 commit 1b8c8e9e88fa0f39226f2a8a853a07719d4faf40
11197 Author: Steven G. Johnson <stevenj@fftw.org>
11198 Date: Fri Apr 4 18:14:14 2003 -0500
11199
11200 bugfix in buffered: wrong pointers passed for cldrest; also use TAINT instead of UNALIGNED in buffered2
11201
11202 commit 99fccbefe65b6e39c9b4e9be40e647facb900b4f
11203 Author: Matteo Frigo <athena@fftw.org>
11204 Date: Fri Apr 4 17:19:51 2003 -0500
11205
11206 Reverted previous change, committed accidentally
11207
11208 commit db841c316cbd202532fd5b428396e5f4e9c74cf0
11209 Author: Matteo Frigo <athena@fftw.org>
11210 Date: Fri Apr 4 17:18:39 2003 -0500
11211
11212 What was I thinking?
11213
11214 commit 6235b967442a2150ad1e7100ae39070ecbee0ca9
11215 Author: Matteo Frigo <athena@fftw.org>
11216 Date: Fri Apr 4 17:18:21 2003 -0500
11217
11218 [empty commit message]
11219
11220 commit 4d690f88fdc36870e18b359db01ee23dbc005d72
11221 Author: Steven G. Johnson <stevenj@fftw.org>
11222 Date: Fri Apr 4 16:48:32 2003 -0500
11223
11224 added --enable-debug-alignment
11225
11226 commit 8890a79f285088b2b04ca1c2db939a582ac0328e
11227 Author: Steven G. Johnson <stevenj@fftw.org>
11228 Date: Fri Apr 4 16:29:43 2003 -0500
11229
11230 X(taint) prototype, define corresponding function only if HAVE_SIMD
11231
11232 commit 3f29be3cc8a63846e725e496ae01474af84ab9fc
11233 Author: Matteo Frigo <athena@fftw.org>
11234 Date: Fri Apr 4 16:15:53 2003 -0500
11235
11236 Initial checkin of tained pointers
11237
11238 commit faad01bdd384c083438df8ef016b8a18804cb72a
11239 Author: Matteo Frigo <athena@fftw.org>
11240 Date: Fri Apr 4 13:12:58 2003 -0500
11241
11242 More conservative preservation of alignment
11243
11244 commit ac40b45c34f80bd09d25405935c3722528595a97
11245 Author: Steven G. Johnson <stevenj@fftw.org>
11246 Date: Thu Apr 3 23:16:27 2003 -0500
11247
11248 plan/execute with aligned stack
11249
11250 commit 978b7f409d31dde15736857998dada802a3ef49c
11251 Author: Steven G. Johnson <stevenj@fftw.org>
11252 Date: Thu Apr 3 15:40:01 2003 -0500
11253
11254 whoops, missed FFTW_MEASURE in fftw3.f
11255
11256 commit 3274f607dea4bbf61b89f1d09703054007b28776
11257 Author: Steven G. Johnson <stevenj@fftw.org>
11258 Date: Thu Apr 3 13:44:46 2003 -0500
11259
11260 use WITH_ALIGNED_STACK for experimental semaphore stuff, too
11261
11262 commit 345df91b8bab3216268ca697850bc00767799265
11263 Author: Matteo Frigo <athena@fftw.org>
11264 Date: Thu Apr 3 09:04:23 2003 -0500
11265
11266 Removed old file
11267
11268 commit a36ad0e14ceb92c16cdc3bec19938c53c69f79a5
11269 Author: Matteo Frigo <athena@fftw.org>
11270 Date: Thu Apr 3 07:50:43 2003 -0500
11271
11272 Improved stack-alignment hack
11273
11274 commit c4f4e2d7d432203a0f99e3a50b29168c3d653a83
11275 Author: Steven G. Johnson <stevenj@fftw.org>
11276 Date: Thu Apr 3 02:37:57 2003 -0500
11277
11278 use aligned stack for experimental semaphores, too
11279
11280 commit cea2d48a884c03d448b9c688a192081e3e984983
11281 Author: Steven G. Johnson <stevenj@fftw.org>
11282 Date: Thu Apr 3 02:17:58 2003 -0500
11283
11284 whoops
11285
11286 commit c3bdcb8375c4c5181c0c642b0331d2a7268757f8
11287 Author: Steven G. Johnson <stevenj@fftw.org>
11288 Date: Thu Apr 3 01:58:32 2003 -0500
11289
11290 fix(?) for SIMD thread problems
11291
11292 commit 13dde386673933410cafa316f241cdc6544ecd65
11293 Author: Steven G. Johnson <stevenj@fftw.org>
11294 Date: Wed Apr 2 20:33:12 2003 -0500
11295
11296 noted n=1 REDFT01 case
11297
11298 commit 4a2c5556d9c6d080f3c3fee8c87d0aee50c12531
11299 Author: Steven G. Johnson <stevenj@fftw.org>
11300 Date: Wed Apr 2 20:32:07 2003 -0500
11301
11302 note about n=2 REDFT00 formula
11303
11304 commit ac5fe8c3ecce10f2e79f84279ce6e406db3891e8
11305 Author: Steven G. Johnson <stevenj@fftw.org>
11306 Date: Wed Apr 2 20:30:10 2003 -0500
11307
11308 note about undefined REDFT00
11309
11310 commit 4761b3e61b5cf393deeacf6eba73d9f3a35e2d12
11311 Author: Steven G. Johnson <stevenj@fftw.org>
11312 Date: Wed Apr 2 20:18:03 2003 -0500
11313
11314 noted n=1 RODFT01 case
11315
11316 commit 00cd3721f0f757f691e62c836aff445fece4a9ef
11317 Author: Steven G. Johnson <stevenj@fftw.org>
11318 Date: Wed Apr 2 20:14:07 2003 -0500
11319
11320 corrected definitions
11321
11322 commit 20545fe3112a9aa8bd9529129f24586a66f39f9d
11323 Author: Steven G. Johnson <stevenj@fftw.org>
11324 Date: Wed Apr 2 19:43:59 2003 -0500
11325
11326 added REODFT_KINDP, fixed nontrivial test for R2HC11 and HC2R11 (not that we support these yet anyway)
11327
11328 commit dcd456710f59aea75abb5a4b62ad7b8c8592c28f
11329 Author: Steven G. Johnson <stevenj@fftw.org>
11330 Date: Wed Apr 2 19:16:54 2003 -0500
11331
11332 size 2 hc2r and dht are equivalent to r2hc
11333
11334 commit dd3db55bba543cc4db74f3760716a251892089a9
11335 Author: Steven G. Johnson <stevenj@fftw.org>
11336 Date: Wed Apr 2 15:09:08 2003 -0500
11337
11338 noted overwriting in upgrading section
11339
11340 commit 4752fd3dcd81d75371bc667be6ab701ee36a24d3
11341 Author: Matteo Frigo <athena@fftw.org>
11342 Date: Wed Apr 2 05:25:56 2003 -0500
11343
11344 Moved with_aligned_stack to its own file
11345
11346 commit 821f37e9c6396afa7dcf22eae25e2ddb56f16218
11347 Author: Matteo Frigo <athena@fftw.org>
11348 Date: Tue Apr 1 21:11:31 2003 -0500
11349
11350 Fixed comments
11351
11352 commit 44b77936443c9dcbba1ccf21d3e90c2426a46e01
11353 Author: Matteo Frigo <athena@fftw.org>
11354 Date: Tue Apr 1 20:57:39 2003 -0500
11355
11356 Alignment hacks
11357
11358 commit 52974f9347f673ccfc5eca68ed2af2e39f0ae148
11359 Author: Steven G. Johnson <stevenj@fftw.org>
11360 Date: Tue Apr 1 14:26:48 2003 -0500
11361
11362 phew, no, previous version was okay
11363
11364 commit f599fa6d8cb159f0e636411e51f0bd07feca296e
11365 Author: Steven G. Johnson <stevenj@fftw.org>
11366 Date: Tue Apr 1 14:26:15 2003 -0500
11367
11368 whoops, crap
11369
11370 commit da939ebd27d69c1e3693ebf71f81060e816af54e
11371 Author: Matteo Frigo <athena@fftw.org>
11372 Date: Tue Apr 1 08:01:06 2003 -0500
11373
11374 support sse2 in forthcoming gcc-3.3
11375
11376 commit bad66cbc1963d1beecba1205ff4d528026003427
11377 Author: Steven G. Johnson <stevenj@fftw.org>
11378 Date: Tue Apr 1 01:17:15 2003 -0500
11379
11380 comment
11381
11382 commit bde4d633afdc37f663c31f7aa2c4b3f8673e9607
11383 Author: Steven G. Johnson <stevenj@fftw.org>
11384 Date: Tue Apr 1 01:16:46 2003 -0500
11385
11386 noted ac_check_headers
11387
11388 commit 0e70968689aed47b11b44eb15752b97e21534366
11389 Author: Steven G. Johnson <stevenj@fftw.org>
11390 Date: Tue Apr 1 01:11:31 2003 -0500
11391
11392 comment
11393
11394 commit 716a92cca66059e083cc6dc764db18de707a6318
11395 Author: Steven G. Johnson <stevenj@fftw.org>
11396 Date: Tue Apr 1 01:06:53 2003 -0500
11397
11398 documented autoconf tests, so that cycle.h can be distributed separately
11399
11400 commit a081cb59d2fbd65042f4a1cec68ec04698a03594
11401 Author: Steven G. Johnson <stevenj@fftw.org>
11402 Date: Mon Mar 31 22:12:02 2003 -0500
11403
11404 IRIX is all-caps
11405
11406 commit c21fee75eade0b3c38780e252bb0dbe24383d2cf
11407 Author: Steven G. Johnson <stevenj@fftw.org>
11408 Date: Mon Mar 31 22:11:42 2003 -0500
11409
11410 noted Irix fix
11411
11412 commit 0521214bc9e4b224ee18c31c165c8971d5d09fc6
11413 Author: Steven G. Johnson <stevenj@fftw.org>
11414 Date: Mon Mar 31 22:10:33 2003 -0500
11415
11416 whoops
11417
11418 commit e42bd5b20e10661a6cd8228c3b19ee7d8f1a1602
11419 Author: Steven G. Johnson <stevenj@fftw.org>
11420 Date: Mon Mar 31 22:04:35 2003 -0500
11421
11422 use ithreads_init so as not to confuse fftw 2 users
11423
11424 commit 95c74b4b2e3ef14b347ae7b50fdb455d6a7aa719
11425 Author: Steven G. Johnson <stevenj@fftw.org>
11426 Date: Mon Mar 31 22:00:42 2003 -0500
11427
11428 IRIX lossage
11429
11430 commit 746ced9c6d3a5d53c7b95090cbb99fcfd0b07344
11431 Author: Steven G. Johnson <stevenj@fftw.org>
11432 Date: Mon Mar 31 21:19:20 2003 -0500
11433
11434 check for -openmp (icc) among the OpenMP flags (TODO: make this a
11435 separate macro, with a loop instead of repeated checks)
11436
11437 commit 589adf0e340eafbabdd43f5beacae6740e9e64a0
11438 Author: Steven G. Johnson <stevenj@fftw.org>
11439 Date: Mon Mar 31 17:12:19 2003 -0500
11440
11441 clarification
11442
11443 commit 4242c9c8bf63111190cbcccd162a224af036e5af
11444 Author: Matteo Frigo <athena@fftw.org>
11445 Date: Mon Mar 31 17:01:16 2003 -0500
11446
11447 More liberal test for solaris CC
11448
11449 commit d5928079a514ffaba5eedc2cd5ce76eb2dd9fa9b
11450 Author: Matteo Frigo <athena@fftw.org>
11451 Date: Mon Mar 31 15:13:33 2003 -0500
11452
11453 Allow x86-64 simd
11454
11455 commit b7a2252e112c67968e6695c7ef13e375a04d23d1
11456 Author: Matteo Frigo <athena@fftw.org>
11457 Date: Mon Mar 31 15:13:21 2003 -0500
11458
11459 Added x86-64 timer code
11460
11461 commit 7f0d1b516cd025f72f304fdeb210c563b94bff31
11462 Author: Steven G. Johnson <stevenj@fftw.org>
11463 Date: Mon Mar 31 13:10:54 2003 -0500
11464
11465 updated
11466
11467 commit 914e74201ca244b441f7f971d2f05aced6aa405c
11468 Author: Steven G. Johnson <stevenj@fftw.org>
11469 Date: Mon Mar 31 13:07:19 2003 -0500
11470
11471 updated
11472
11473 commit 202febc5ba6f89ad6e834d4e36a01caf4bb5fde2
11474 Author: Steven G. Johnson <stevenj@fftw.org>
11475 Date: Mon Mar 31 13:05:27 2003 -0500
11476
11477 colon
11478
11479 commit 2deea3231269a3e4bcbdfa9498ad253ad1b26a48
11480 Author: Matteo Frigo <athena@fftw.org>
11481 Date: Mon Mar 31 07:20:20 2003 -0500
11482
11483 Reorganized compiler bugs section (which is growing out of control)
11484
11485 commit b4bb5597a0d941eeefe4ec01208c139d37e9fce2
11486 Author: Matteo Frigo <athena@fftw.org>
11487 Date: Mon Mar 31 07:15:20 2003 -0500
11488
11489 solaris gcc bug appears to be also in 2.95.2
11490
11491 commit efb7874ecc58a7e086abf8428d481a6e19c4e0d7
11492 Author: Matteo Frigo <athena@fftw.org>
11493 Date: Mon Mar 31 07:13:45 2003 -0500
11494
11495 Workaround works---there is another gcc/sparc bug elsehwere
11496
11497 commit 8ab897ec05303f83b56d2e349c3dba59da173ef2
11498 Author: Matteo Frigo <athena@fftw.org>
11499 Date: Mon Mar 31 07:08:56 2003 -0500
11500
11501 Grrr, workaround does not work.
11502
11503 commit 32707cc1247ff03834c3d37fceb57f53e268da65
11504 Author: Matteo Frigo <athena@fftw.org>
11505 Date: Mon Mar 31 07:02:23 2003 -0500
11506
11507 ADDMOD is now function, which seems to avoid gcc bugs.
11508
11509 commit c4c605027021db9b801e3e2695c802ed6e1bc44a
11510 Author: Matteo Frigo <athena@fftw.org>
11511 Date: Sun Mar 30 16:40:26 2003 -0500
11512
11513 Workaround sparc gcc bug
11514
11515 commit b77fba4459439cf3d969088c9edb010ab151a893
11516 Author: Steven G. Johnson <stevenj@fftw.org>
11517 Date: Sun Mar 30 15:51:59 2003 -0500
11518
11519 note
11520
11521 commit 91e398fb21a1c46fac8174a5f2faf0b79548e188
11522 Author: Steven G. Johnson <stevenj@fftw.org>
11523 Date: Sun Mar 30 15:34:57 2003 -0500
11524
11525 make non-square UGLY, for now
11526
11527 commit 4233309534b8e309bce0dafeeff64c29ac9f4b1c
11528 Author: Steven G. Johnson <stevenj@fftw.org>
11529 Date: Sun Mar 30 15:33:57 2003 -0500
11530
11531 added -o amnesia to forget_wisdom before each plan
11532
11533 commit 055907acc9ab6486266e2601f13e76e768bd990f
11534 Author: Matteo Frigo <athena@fftw.org>
11535 Date: Sun Mar 30 09:41:27 2003 -0500
11536
11537 Report setup time in benchmark
11538
11539 commit 6a49d54d587cc678c9a4063e3ed620c998d2602e
11540 Author: Steven G. Johnson <stevenj@fftw.org>
11541 Date: Sat Mar 29 20:21:15 2003 -0500
11542
11543 comment
11544
11545 commit 1ccc921a0398eb08789ac928e28840a524100587
11546 Author: Steven G. Johnson <stevenj@fftw.org>
11547 Date: Sat Mar 29 19:11:10 2003 -0500
11548
11549 slight change
11550
11551 commit ee2cf222eef51c2ee38a761765c58ed6a2faa35e
11552 Author: Matteo Frigo <athena@fftw.org>
11553 Date: Sat Mar 29 18:46:16 2003 -0500
11554
11555 More relaxed definition of UGLYness
11556
11557 commit 2afbef3c1cd1edca0168bc5341dac85de41790ba
11558 Author: Steven G. Johnson <stevenj@fftw.org>
11559 Date: Sat Mar 29 15:28:01 2003 -0500
11560
11561 no more cvs id strings in header files...I'm tired of having to rebuild everything after a commit
11562
11563 commit 6922449e07c11f405107d7e5fc63d7dfb0379b5d
11564 Author: Steven G. Johnson <stevenj@fftw.org>
11565 Date: Sat Mar 29 15:22:28 2003 -0500
11566
11567 rdft2 stride unification
11568
11569 commit 383f9ebcd63e13f756a57f0801b6bdc4080f4887
11570 Author: Steven G. Johnson <stevenj@fftw.org>
11571 Date: Sat Mar 29 14:38:23 2003 -0500
11572
11573 preserve in-place-ness
11574
11575 commit 4989fd02c94baef2f163547b88f643fcd1172a72
11576 Author: Steven G. Johnson <stevenj@fftw.org>
11577 Date: Sat Mar 29 14:23:31 2003 -0500
11578
11579 make nowisdom the default
11580
11581 commit a2f08dcbee1508f40df179ca67ed0ddcefd66f37
11582 Author: Matteo Frigo <athena@fftw.org>
11583 Date: Sat Mar 29 14:13:18 2003 -0500
11584
11585 --verbose in paranoid-check produces too much output. Make it quiet.
11586
11587 commit 90cdd14a2b342236ae6e8367d94ad2e29ecadd76
11588 Author: Steven G. Johnson <stevenj@fftw.org>
11589 Date: Sat Mar 29 13:45:13 2003 -0500
11590
11591 fixed transpose bugs...need to check ri-ii before deciding whether Ntuple fits
11592
11593 commit 71fc37fa553e50623f56a5fb21731833cb2d9dfd
11594 Author: Matteo Frigo <athena@fftw.org>
11595 Date: Sat Mar 29 08:10:40 2003 -0500
11596
11597 try more 2^k
11598
11599 commit d4e0d59380ec69df5a4250ebd0f62f002c964e19
11600 Author: Matteo Frigo <athena@fftw.org>
11601 Date: Sat Mar 29 08:05:41 2003 -0500
11602
11603 MIN_ALIGNMENT was defined after being used, causing crash in sse2.
11604
11605 commit 101331222a4ff1189042a5997260a7e171ae1136
11606 Author: Steven G. Johnson <stevenj@fftw.org>
11607 Date: Sat Mar 29 03:07:34 2003 -0500
11608
11609 real transposes are currently unused, and are not needed for MPI code either
11610
11611 commit 55b24758612593bac4f6b7065d32b33b815eb81f
11612 Author: Steven G. Johnson <stevenj@fftw.org>
11613 Date: Sat Mar 29 02:58:39 2003 -0500
11614
11615 added general transpose
11616
11617 commit c111a90447eb6c3c1a0058a93e97557beaaf1605
11618 Author: Steven G. Johnson <stevenj@fftw.org>
11619 Date: Fri Mar 28 22:49:04 2003 -0500
11620
11621 added transposition option
11622
11623 commit 90fb8971b2092e9a1fa97b10065683ba8af9247c
11624 Author: Steven G. Johnson <stevenj@fftw.org>
11625 Date: Fri Mar 28 22:09:22 2003 -0500
11626
11627 yikes, fixed incorrect applicability of transpose plans
11628
11629 commit 5776651de7f7152e07630b99ee8445fb004131a1
11630 Author: Steven G. Johnson <stevenj@fftw.org>
11631 Date: Fri Mar 28 22:06:14 2003 -0500
11632
11633 in the future, we might want to allow sz->rnk == 0, vecsz->rnk arbitrary to be converted to r2hc (the apply function already should work for this case)...disabled for now, though
11634
11635 commit db6988d7af647595db1ef218c039bb2755070b59
11636 Author: Steven G. Johnson <stevenj@fftw.org>
11637 Date: Fri Mar 28 19:12:08 2003 -0500
11638
11639 use most_unaligned in rdft2
11640
11641 commit bf69a12d650bc9daee88f41bd0a04bf1abe664c8
11642 Author: Steven G. Johnson <stevenj@fftw.org>
11643 Date: Fri Mar 28 19:11:47 2003 -0500
11644
11645 slight change
11646
11647 commit b79360114562af8636d8c3da2898cc7ed7df7b98
11648 Author: Steven G. Johnson <stevenj@fftw.org>
11649 Date: Fri Mar 28 19:00:21 2003 -0500
11650
11651 output message when checks pass
11652
11653 commit 14afb1d94a6d7eb23f853cd2097814989148a9e2
11654 Author: Steven G. Johnson <stevenj@fftw.org>
11655 Date: Fri Mar 28 17:21:47 2003 -0500
11656
11657 added ifndef alloca around alloca stuff
11658
11659 commit 6cccb2f2fed1d79204cbbb7e1ee44685bf2ed300
11660 Author: Matteo Frigo <athena@fftw.org>
11661 Date: Fri Mar 28 13:45:50 2003 -0500
11662
11663 Proper alignment in rader
11664
11665 commit 643528ab599946750ef668ce19266fe5a0bab5c1
11666 Author: Steven G. Johnson <stevenj@fftw.org>
11667 Date: Fri Mar 28 12:43:23 2003 -0500
11668
11669 whitespace
11670
11671 commit 8c9af83603806d8d769f21b1222dfe717068f7c6
11672 Author: Steven G. Johnson <stevenj@fftw.org>
11673 Date: Fri Mar 28 12:41:39 2003 -0500
11674
11675 whoops, alloca stuff inside HAVE_ALLOCA
11676
11677 commit 4f4ed55f3679a721e23cf9cb61e9180646f0f176
11678 Author: Steven G. Johnson <stevenj@fftw.org>
11679 Date: Fri Mar 28 12:35:21 2003 -0500
11680
11681 make check can afford to be a little bigger
11682
11683 commit e7db3e5ee6c6cbb0c24626dc09c00e23e46e70e7
11684 Author: Steven G. Johnson <stevenj@fftw.org>
11685 Date: Fri Mar 28 12:31:32 2003 -0500
11686
11687 use same alloca macrology as configure script
11688
11689 commit 3c6ec07b6659b60cfb8e77365e75c872ccacd66d
11690 Author: Steven G. Johnson <stevenj@fftw.org>
11691 Date: Fri Mar 28 03:05:15 2003 -0500
11692
11693 fallback is no longer needed for mingw
11694
11695 commit cbc91a4cae1193e9e27ef5885e1bb37c548c191b
11696 Author: Steven G. Johnson <stevenj@fftw.org>
11697 Date: Fri Mar 28 02:58:45 2003 -0500
11698
11699 alloca fallback for gcc
11700
11701 commit 37a6e5be53d9273006dc360b8dafe2e3e53356e5
11702 Author: Steven G. Johnson <stevenj@fftw.org>
11703 Date: Fri Mar 28 02:49:59 2003 -0500
11704
11705 _alloca was added for MinGW, but it causes problems there
11706
11707 commit 37adf3eddeb59f98c6d4e8888ddb4208b10fb42a
11708 Author: Steven G. Johnson <stevenj@fftw.org>
11709 Date: Thu Mar 27 22:06:07 2003 -0500
11710
11711 fixed most_unaligned for split format
11712
11713 commit fae5ff2e94558a024ef43a1cd4470f5c68b4de17
11714 Author: Steven G. Johnson <stevenj@fftw.org>
11715 Date: Thu Mar 27 19:01:58 2003 -0500
11716
11717 whoops
11718
11719 commit 5a2216ff945775dcd769967d2a58125b51c4b3c0
11720 Author: Steven G. Johnson <stevenj@fftw.org>
11721 Date: Thu Mar 27 19:00:20 2003 -0500
11722
11723 added pkg-config
11724
11725 commit 669fc84978762faee9e8d48a7b852eca22ee4303
11726 Author: Steven G. Johnson <stevenj@fftw.org>
11727 Date: Thu Mar 27 15:59:01 2003 -0500
11728
11729 fixed asserts
11730
11731 commit 8108cd595625c0e28683a556df95de39588c7fb4
11732 Author: Matteo Frigo <athena@fftw.org>
11733 Date: Thu Mar 27 15:49:53 2003 -0500
11734
11735 Do not adjust r/i pointers separately.
11736
11737 commit d9b6e6ea20bc01290efaabb99405a0b10a3dadca
11738 Author: Matteo Frigo <athena@fftw.org>
11739 Date: Thu Mar 27 15:17:40 2003 -0500
11740
11741 iForgot to add files
11742
11743 commit 9c79c521f6c57b91f21a90731610214d9dafca8e
11744 Author: Matteo Frigo <athena@fftw.org>
11745 Date: Thu Mar 27 15:10:41 2003 -0500
11746
11747 Specialized n simd codelets for unit vector stride.
11748
11749 commit 7e309fd9c2284d234e3932b6d3a2d5bbcc44c9e0
11750 Author: Matteo Frigo <athena@fftw.org>
11751 Date: Thu Mar 27 08:22:03 2003 -0500
11752
11753 Changed version number to beta2
11754
11755 commit 513db4fd67e83952d5e510cf7a1eb23fbd6ef2bb
11756 Author: Matteo Frigo <athena@fftw.org>
11757 Date: Thu Mar 27 06:37:07 2003 -0500
11758
11759 Changed alignment requirements for n1 simd codelets. Changed
11760 mechanism for detecting lack of alignment.
11761
11762 commit be8495756a69c610211f28e3f9a7ff20016eb901
11763 Author: Matteo Frigo <athena@fftw.org>
11764 Date: Thu Mar 27 04:25:06 2003 -0500
11765
11766 Oops, wrong place for hook
11767
11768 commit 575731d46f96f87a35f3a1a37dba70cc153728df
11769 Author: Steven G. Johnson <stevenj@fftw.org>
11770 Date: Thu Mar 27 02:37:52 2003 -0500
11771
11772 added comments to codelet makefiles, to aid people wanting to generate their own code
11773
11774 commit 59245164a590789dd1ed892f910bc43a346b791b
11775 Author: Steven G. Johnson <stevenj@fftw.org>
11776 Date: Thu Mar 27 01:42:27 2003 -0500
11777
11778 Matteo is also a copyright holder
11779
11780 commit c558091f6b4b0f37175f86a623e2f2376da9c01a
11781 Author: Steven G. Johnson <stevenj@fftw.org>
11782 Date: Thu Mar 27 01:41:08 2003 -0500
11783
11784 FORTRAN is officially Fortran, these days
11785
11786 commit d0b28f4043bbc0aae200dd359e7ad52da98bc903
11787 Author: Steven G. Johnson <stevenj@fftw.org>
11788 Date: Thu Mar 27 01:40:32 2003 -0500
11789
11790 punctuation
11791
11792 commit 46bd3b7c143c2291021d10121a74d23936e3ccdd
11793 Author: Steven G. Johnson <stevenj@fftw.org>
11794 Date: Thu Mar 27 01:40:14 2003 -0500
11795
11796 don't use "wrapper"
11797
11798 commit 9a8eba97546a52e4070f6910534c849009d027d8
11799 Author: Steven G. Johnson <stevenj@fftw.org>
11800 Date: Thu Mar 27 01:37:53 2003 -0500
11801
11802 plural
11803
11804 commit bc26c4cd5feb70158f734130ef3415ce557e207b
11805 Author: Steven G. Johnson <stevenj@fftw.org>
11806 Date: Thu Mar 27 01:35:32 2003 -0500
11807
11808 grammar
11809
11810 commit 246a46ccdfc59616fdc3234ee8f773f54b9b5260
11811 Author: Steven G. Johnson <stevenj@fftw.org>
11812 Date: Thu Mar 27 01:33:35 2003 -0500
11813
11814 better phrasing
11815
11816 commit 8d4fae80f2b4558c3ec62f108316187e7dad2b84
11817 Author: Steven G. Johnson <stevenj@fftw.org>
11818 Date: Wed Mar 26 22:47:58 2003 -0500
11819
11820 stddef.h should not be needed anymore for this file
11821
11822 commit 1080fb42895231d251238b34f4af9458ee7329ec
11823 Author: Steven G. Johnson <stevenj@fftw.org>
11824 Date: Wed Mar 26 22:13:48 2003 -0500
11825
11826 added comments for Franz mode
11827
11828 commit e995cc9d9c287c7681b4e8ff9e97dc57e5dcbdb4
11829 Author: Steven G. Johnson <stevenj@fftw.org>
11830 Date: Wed Mar 26 22:11:58 2003 -0500
11831
11832 clarification
11833
11834 commit cff23bce9ddaeddc3338be9cfcbc3cd3d57f2370
11835 Author: Steven G. Johnson <stevenj@fftw.org>
11836 Date: Wed Mar 26 22:08:51 2003 -0500
11837
11838 commented on FRANZ codelets
11839
11840 commit 0b33d349e4eab5f3fce6b0873cf0366e83e51d59
11841 Author: Steven G. Johnson <stevenj@fftw.org>
11842 Date: Wed Mar 26 22:06:45 2003 -0500
11843
11844 updated
11845
11846 commit 8467b9db21a1c618e7ccaf958299f9edc31bbb42
11847 Author: Steven G. Johnson <stevenj@fftw.org>
11848 Date: Wed Mar 26 21:51:15 2003 -0500
11849
11850 disable DIF codelets, since they are never used (apparently) except
11851 for some non-power-of-two sizes...improve support for the latter by
11852 adding size 3, 5, and 6 q^2 codelets.
11853
11854 commit 100f8e1667a8ffdc4ad997bbe4346603e7da122b
11855 Author: Steven G. Johnson <stevenj@fftw.org>
11856 Date: Wed Mar 26 20:07:11 2003 -0500
11857
11858 DHT has no forward/backward
11859
11860 commit 9f5c7271cdd393f08d42a71669c9d3d1686ab641
11861 Author: fftw <none>
11862 Date: Wed Mar 26 19:46:12 2003 -0500
11863
11864 added hacky way to use an arbitrary flag
11865
11866 commit 59d54e87e6bb971ba93e6b371aad0c3ee5d88d11
11867 Author: Matteo Frigo <athena@fftw.org>
11868 Date: Wed Mar 26 19:44:31 2003 -0500
11869
11870 Better place to install hook
11871
11872 commit b35aa5670a5cf242f215c8281c3c09097c3c740a
11873 Author: Steven G. Johnson <stevenj@fftw.org>
11874 Date: Wed Mar 26 19:40:28 2003 -0500
11875
11876 noted that the user should run make check if they think FFTW has a bug
11877
11878 commit dd17b391f48608fdfe190c514eb865ff891689b9
11879 Author: Matteo Frigo <athena@fftw.org>
11880 Date: Wed Mar 26 17:31:16 2003 -0500
11881
11882 Oops, what am I thinking
11883
11884 commit 47c3588218fccd048fb32989c007dc693f402abc
11885 Author: Matteo Frigo <athena@fftw.org>
11886 Date: Wed Mar 26 17:23:56 2003 -0500
11887
11888 Grrr.... fixed bug in estimator
11889
11890 commit a3f8ee308a4b9b1f83d1031991c9f8fdc55b3bc2
11891 Author: Matteo Frigo <athena@fftw.org>
11892 Date: Wed Mar 26 17:16:19 2003 -0500
11893
11894 Oops---the flop count was right. The estimator is broken elsewhere.
11895
11896 commit f2103b394847d39a74d720c5dc18b9f3139fc257
11897 Author: Matteo Frigo <athena@fftw.org>
11898 Date: Wed Mar 26 14:28:41 2003 -0500
11899
11900 Fixed SIMD estimator
11901
11902 commit 442a17b47519435071b0c7373c83cc50f5e4b826
11903 Author: Matteo Frigo <athena@fftw.org>
11904 Date: Wed Mar 26 07:45:03 2003 -0500
11905
11906 Added twidsq simd codelets
11907
11908 commit 9647b9a35046476b0697bb196f6ad80a1c81b763
11909 Author: Steven G. Johnson <stevenj@fftw.org>
11910 Date: Tue Mar 25 23:33:03 2003 -0500
11911
11912 gensrc -> genfft
11913
11914 commit e668b629605e9193d33403c9c87be52a7d08d134
11915 Author: Steven G. Johnson <stevenj@fftw.org>
11916 Date: Tue Mar 25 23:32:16 2003 -0500
11917
11918 newline
11919
11920 commit 76eeb4a83c788c638126d62924bbedb833573028
11921 Author: Matteo Frigo <athena@fftw.org>
11922 Date: Tue Mar 25 19:17:08 2003 -0500
11923
11924 Noted need to add dif simd codelets
11925
11926 commit 350bf8c788a6f8a0ec21b7b004ce7a83c163f511
11927 Author: Steven G. Johnson <stevenj@fftw.org>
11928 Date: Tue Mar 25 13:03:47 2003 -0500
11929
11930 noted shift
11931
11932 commit a5fa31a29076ae51d870e2db210b7f51aa46adbb
11933 Author: Steven G. Johnson <stevenj@fftw.org>
11934 Date: Tue Mar 25 13:02:47 2003 -0500
11935
11936 clarification
11937
11938 commit 276ff68eb803fb179adefc146b05b4f616fd226f
11939 Author: Steven G. Johnson <stevenj@fftw.org>
11940 Date: Tue Mar 25 12:46:44 2003 -0500
11941
11942 need make after bootstrap
11943
11944 commit f48787b41d83d8f21ec8ce19b275eaedf5316484
11945 Author: Steven G. Johnson <stevenj@fftw.org>
11946 Date: Tue Mar 25 12:31:49 2003 -0500
11947
11948 slight change
11949
11950 commit 7143220a87f7444e90964aadccece0c31bf3830b
11951 Author: Steven G. Johnson <stevenj@fftw.org>
11952 Date: Tue Mar 25 12:30:56 2003 -0500
11953
11954 libtool is also needed
11955
11956 commit 212581eeb5c4011118653b3d8fe433b774bbcd1b
11957 Author: Steven G. Johnson <stevenj@fftw.org>
11958 Date: Tue Mar 25 12:29:52 2003 -0500
11959
11960 added code generator introduction
11961
11962 commit e22b4de0a314136783316cc1acbbc7bf97ca105c
11963 Author: Steven G. Johnson <stevenj@fftw.org>
11964 Date: Tue Mar 25 11:51:49 2003 -0500
11965
11966 added support for REDFT/RODFT/DHT direct codelets
11967
11968 commit cc149df36c0ddc161d91558da702572cd01f99c6
11969 Author: Steven G. Johnson <stevenj@fftw.org>
11970 Date: Tue Mar 25 11:29:29 2003 -0500
11971
11972 noted ARM bug; thanks to Jay Treacy
11973
11974 commit e313a7fb2e0c1c2524eaed8926b25055a38fb957
11975 Author: Matteo Frigo <athena@fftw.org>
11976 Date: Tue Mar 25 07:55:54 2003 -0500
11977
11978 bugfix from Stefan
11979
11980 commit dc62fc48ad26abb231c697a5a18b5f7ca64ab6fe
11981 Author: Steven G. Johnson <stevenj@fftw.org>
11982 Date: Mon Mar 24 15:59:08 2003 -0500
11983
11984 slight change
11985
11986 commit 878030bb1ea7efd3b1e1dab02601732fd5c90c36
11987 Author: Steven G. Johnson <stevenj@fftw.org>
11988 Date: Mon Mar 24 15:58:44 2003 -0500
11989
11990 caveat
11991
11992 commit 776dd0aac7bb400bce14f59781f664062d7b4117
11993 Author: Steven G. Johnson <stevenj@fftw.org>
11994 Date: Mon Mar 24 15:58:04 2003 -0500
11995
11996 warning about DHT
11997
11998 commit 2bd26e46c0f7e3622be81d9922f0089923143c65
11999 Author: Matteo Frigo <athena@fftw.org>
12000 Date: Mon Mar 24 08:34:14 2003 -0500
12001
12002 Oops
12003
12004 commit 597693dba60d0535d890bbb5f161c3a01830a1ea
12005 Author: Matteo Frigo <athena@fftw.org>
12006 Date: Mon Mar 24 08:13:15 2003 -0500
12007
12008 Regression test for p4fftwgel
12009
12010 commit 92603541cee018def425427f93dcb3739ab7c0f1
12011 Author: Steven G. Johnson <stevenj@fftw.org>
12012 Date: Mon Mar 24 03:09:06 2003 -0500
12013
12014 make check is faster, old tests are in make bigcheck
12015
12016 commit 518b188f2a8a30b7cbc2a5c34b335940afa54530
12017 Author: Steven G. Johnson <stevenj@fftw.org>
12018 Date: Sat Mar 22 00:41:21 2003 -0500
12019
12020 note
12021
12022 commit 82b8e611b2d1a65af695db0ddf0cf306a5804886
12023 Author: Steven G. Johnson <stevenj@fftw.org>
12024 Date: Sat Mar 22 00:40:05 2003 -0500
12025
12026 whoops, line wrapping
12027
12028 commit b9e7ade930fd2e2de8105a28ff7a8f32a799237f
12029 Author: Matteo Frigo <athena@fftw.org>
12030 Date: Fri Mar 21 15:10:00 2003 -0500
12031
12032 Franz-mode codelets even without SIMD. (disabled)
12033
12034 commit bd548cc599b6178d2e1bdbc2c6abc08f276ae386
12035 Author: Matteo Frigo <athena@fftw.org>
12036 Date: Fri Mar 21 09:09:30 2003 -0500
12037
12038 Bug is in netbsd-1.6, not 1.5
12039
12040 commit 1d1b6b166a1164c2499c4a7e5f9bd9b69f3cf5c3
12041 Author: Matteo Frigo <athena@fftw.org>
12042 Date: Fri Mar 21 07:45:48 2003 -0500
12043
12044 const cast, should placate c++ compilers.
12045
12046 commit 677ff57df2415f59cc701368e26dd23d1c6ec956
12047 Author: Steven G. Johnson <stevenj@fftw.org>
12048 Date: Thu Mar 20 18:49:49 2003 -0500
12049
12050 added FAQ on why plans are array-specific
12051
12052 commit f0c1a0a7c03bfb68f4559001c2b652aa7a601c0d
12053 Author: Steven G. Johnson <stevenj@fftw.org>
12054 Date: Thu Mar 20 16:12:56 2003 -0500
12055
12056 comment fix
12057
12058 commit 3ac192669e4bbb596cc30adb429179fa58f11387
12059 Author: Steven G. Johnson <stevenj@fftw.org>
12060 Date: Thu Mar 20 16:12:15 2003 -0500
12061
12062 noted comparison to NR
12063
12064 commit 3f8a990d38ae5f796daa261636120dcb936acb2a
12065 Author: Steven G. Johnson <stevenj@fftw.org>
12066 Date: Wed Mar 19 20:13:16 2003 -0500
12067
12068 whoops, C99 complex didn't work if complex is a macro (as it is with glibc); thanks to Keh-Cheng Chu for the bug report
12069
12070 commit faab1981e35c6596ac99e9c1e8379c77d92155fe
12071 Author: Steven G. Johnson <stevenj@fftw.org>
12072 Date: Wed Mar 19 16:52:54 2003 -0500
12073
12074 noted in help that --enable-k7 enables 3dnow, and that --enable-3dnow is only a fallback
12075
12076 commit 297a4fd9785fe05d2149abf128413bd363fa2dbc
12077 Author: Matteo Frigo <athena@fftw.org>
12078 Date: Wed Mar 19 15:09:52 2003 -0500
12079
12080 New gcc bug. html.refs was not in repository/distribution.
12081
12082 commit 8a81ec059d2c1c567c69a45f77d76b8f242c8836
12083 Author: Matteo Frigo <athena@fftw.org>
12084 Date: Wed Mar 19 10:09:16 2003 -0500
12085
12086 Don't write wisdom if you don't have it.
12087
12088 commit 4bc446d3e46e7a8c2f084d425e193e58f9ff76ec
12089 Author: Matteo Frigo <athena@fftw.org>
12090 Date: Tue Mar 18 15:44:41 2003 -0500
12091
12092 Added index entries for DHT. Similarly for DCT, DST
12093
12094 commit 4a72bfaf1f333116de1e5e0a154bc87d17c9c234
12095 Author: Steven G. Johnson <stevenj@fftw.org>
12096 Date: Tue Mar 18 14:50:04 2003 -0500
12097
12098 execute should not go through C api, for efficiency
12099
12100 commit 22f933b01c30e0f68f46f8a73e474a1e8a893360
12101 Author: Matteo Frigo <athena@fftw.org>
12102 Date: Tue Mar 18 06:14:51 2003 -0500
12103
12104 Renamed FFTW_IODIM, FFTW_R2R_KIND
12105
12106 commit e57a38d55f979644a5fecd702c1d4bd105b1eac3
12107 Author: Steven G. Johnson <stevenj@fftw.org>
12108 Date: Tue Mar 18 00:30:17 2003 -0500
12109
12110 added rfftwnd.eps to dist, so that transfig is not required for people trying to build other formats (e.g. ps); thanks to Brian Gough for the bug report
12111
12112 commit f5713b796921f5e1cfded3ce96e33c6df0d09a8c
12113 Author: Steven G. Johnson <stevenj@fftw.org>
12114 Date: Mon Mar 17 15:17:59 2003 -0500
12115
12116 pointer to upgrading section from tutorial
12117
12118 commit 7e222b6349b8a2bceeb8703d347715fb763efadd
12119 Author: Steven G. Johnson <stevenj@fftw.org>
12120 Date: Mon Mar 17 14:44:40 2003 -0500
12121
12122 make print_plan and fprint_plan, so that the former can be more easily called from other languages
12123
12124 commit f358b64955871f01d87a42a05275f5f0cb5094e5
12125 Author: Steven G. Johnson <stevenj@fftw.org>
12126 Date: Mon Mar 17 14:19:10 2003 -0500
12127
12128 whoops, forgot to change equation image links to .png
12129
12130 commit ea32f5a93a88f6ddec9185886bbbea43cf8ed067
12131 Author: Matteo Frigo <athena@fftw.org>
12132 Date: Mon Mar 17 04:15:50 2003 -0500
12133
12134 fixed c++ linkage problems
12135
12136 commit de7c276d4b4ab36471c8dcb639d3c522d2cbe7cc
12137 Author: Matteo Frigo <athena@fftw.org>
12138 Date: Mon Mar 17 03:25:17 2003 -0500
12139
12140 Removed ``const'', otherwise c++ link fails
12141
12142 commit f3bf675c6d0003e3087d634aab2ef34a6745dcb9
12143 Author: Steven G. Johnson <stevenj@fftw.org>
12144 Date: Sun Mar 16 20:24:31 2003 -0500
12145
12146 fixed C++ annoyances: void* casts, and global variables are static by default(?!?)
12147
12148 commit 45e54b3f9a8c0b5942cc21c0b2d2f19682d3a7c0
12149 Author: Steven G. Johnson <stevenj@fftw.org>
12150 Date: Sun Mar 16 15:29:11 2003 -0500
12151
12152 ranlib bug is in binutils
12153
12154 commit a17b7eb5a896ea6d7ca3f73fd7251bfc76de500d
12155 Author: Steven G. Johnson <stevenj@fftw.org>
12156 Date: Sun Mar 16 15:26:42 2003 -0500
12157
12158 ranlib Irix bug
12159
12160 commit f482abd59b1c2afed27292d79bef782b935d0c51
12161 Author: Steven G. Johnson <stevenj@fftw.org>
12162 Date: Sun Mar 16 15:13:35 2003 -0500
12163
12164 start with random tests
12165
12166 commit a216647a57733c53d3407957caaaf759ed0dd700
12167 Author: Steven G. Johnson <stevenj@fftw.org>
12168 Date: Sun Mar 16 15:00:04 2003 -0500
12169
12170 silenced some compiler warnings, eliminated unused variables, and fixed Makefile.am for f77funcs.h
12171
12172 commit 2b581243067955d0e82eb7cf487def793b8f66b6
12173 Author: Steven G. Johnson <stevenj@fftw.org>
12174 Date: Sun Mar 16 14:55:13 2003 -0500
12175
12176 whoops
12177
12178 commit 058c4751ed4a98a52e6a878c78335f4997c60294
12179 Author: Steven G. Johnson <stevenj@fftw.org>
12180 Date: Sun Mar 16 14:28:22 2003 -0500
12181
12182 3dnow is float
12183
12184 commit 0b50f9ef3433e59f0b9cc7983652a8fe3c361fdf
12185 Author: Steven G. Johnson <stevenj@fftw.org>
12186 Date: Sun Mar 16 14:27:45 2003 -0500
12187
12188 fixed k7 docs
12189
12190 commit 9179a17f1ba8db6733ccb2dbe541aa3f5f59727e
12191 Author: Steven G. Johnson <stevenj@fftw.org>
12192 Date: Sun Mar 16 14:19:10 2003 -0500
12193
12194 SGI compilers now support inline
12195
12196 commit 353d40e964502f46aba99f094c08fd610cb9fc2c
12197 Author: Steven G. Johnson <stevenj@fftw.org>
12198 Date: Sun Mar 16 14:18:32 2003 -0500
12199
12200 cruft
12201
12202 commit 455c3aa4c3e0cc6d5404c78ef12ed70b8751da45
12203 Author: Steven G. Johnson <stevenj@fftw.org>
12204 Date: Sun Mar 16 14:15:47 2003 -0500
12205
12206 texinfo doesn't like commas in nodes
12207
12208 commit 323b6d34cebb6be520075efaf4eeef0a369a6635
12209 Author: Steven G. Johnson <stevenj@fftw.org>
12210 Date: Sun Mar 16 13:52:04 2003 -0500
12211
12212 updated
12213
12214 commit 7762fe2f89dc86791560cad9326ece6fbdbceaf7
12215 Author: Steven G. Johnson <stevenj@fftw.org>
12216 Date: Sun Mar 16 13:47:44 2003 -0500
12217
12218 f77funcs.c -> f77funcs.h so that people don't try to compile it
12219
12220 commit acd3f5b16c0b85acfad30bb086199cc65bc6b326
12221 Author: Steven G. Johnson <stevenj@fftw.org>
12222 Date: Sun Mar 16 13:46:11 2003 -0500
12223
12224 minor changes
12225
12226 commit 8d4f8a05ac24ce13ba6adea137099c22c6f5362b
12227 Author: Steven G. Johnson <stevenj@fftw.org>
12228 Date: Sun Mar 16 13:39:24 2003 -0500
12229
12230 updated compiler bug list
12231
12232 commit dc84fdefd84cac3bd6ecf521f48ca6cab0ae2b0e
12233 Author: Steven G. Johnson <stevenj@fftw.org>
12234 Date: Sun Mar 16 13:39:07 2003 -0500
12235
12236 noted how to set CC
12237
12238 commit d71b55ff07b10fe5ee5dc24799511bdbb0b3f772
12239 Author: Steven G. Johnson <stevenj@fftw.org>
12240 Date: Sun Mar 16 13:01:01 2003 -0500
12241
12242 TODONE
12243
12244 commit 454b2a79327b2582f18024204a6ab683d97f9f41
12245 Author: Steven G. Johnson <stevenj@fftw.org>
12246 Date: Sun Mar 16 13:00:42 2003 -0500
12247
12248 yikes, bugfix
12249
12250 commit e741c61f2ab8b259c217e9e25adbcece21a6be4b
12251 Author: Steven G. Johnson <stevenj@fftw.org>
12252 Date: Sun Mar 16 10:26:28 2003 -0500
12253
12254 whoops
12255
12256 commit f0073024ddb3bb621a4c71fcc7ddb575adf42871
12257 Author: Matteo Frigo <athena@fftw.org>
12258 Date: Sun Mar 16 09:24:19 2003 -0500
12259
12260 Report SIMD extensions in version string
12261
12262 commit 0b40f7e79a8110bd4d2215f9d81a3d100f1e9ecc
12263 Author: Steven G. Johnson <stevenj@fftw.org>
12264 Date: Sat Mar 15 18:56:11 2003 -0500
12265
12266 more verbose output
12267
12268 commit 1310aa1ef6043afa44bc6c8bcc2d7b3bae66190c
12269 Author: Steven G. Johnson <stevenj@fftw.org>
12270 Date: Sat Mar 15 17:41:25 2003 -0500
12271
12272 a couple of additional non-Unix instructions
12273
12274 commit 12cb13aafd73275762b5f2c098c436457b8f9be9
12275 Author: Steven G. Johnson <stevenj@fftw.org>
12276 Date: Sat Mar 15 17:15:26 2003 -0500
12277
12278 hyphen
12279
12280 commit 7aea3d41ed7a9dde86b14f410caf606a05f15fd5
12281 Author: Steven G. Johnson <stevenj@fftw.org>
12282 Date: Sat Mar 15 17:12:29 2003 -0500
12283
12284 softened
12285
12286 commit 2a251916b17e7380f33bf556d666781828819789
12287 Author: Steven G. Johnson <stevenj@fftw.org>
12288 Date: Sat Mar 15 17:09:44 2003 -0500
12289
12290 added FAQ, used PNGs
12291
12292 commit d3669c90789fbfcc99404a8fbd8d90540fae6c52
12293 Author: Steven G. Johnson <stevenj@fftw.org>
12294 Date: Sat Mar 15 15:29:43 2003 -0500
12295
12296 great copyright update
12297
12298 commit 1b82fbfbe632120cba76c9c6107bd3e1abbe4547
12299 Author: Steven G. Johnson <stevenj@fftw.org>
12300 Date: Sat Mar 15 15:14:02 2003 -0500
12301
12302 threads in make check
12303
12304 commit a7ebafd6aec670afd0a9d5165893abf7d7413870
12305 Author: Steven G. Johnson <stevenj@fftw.org>
12306 Date: Sat Mar 15 15:11:24 2003 -0500
12307
12308 fixed const warnings
12309
12310 commit b72d4726555aa5ef40e612f712eaa2190324c89e
12311 Author: Steven G. Johnson <stevenj@fftw.org>
12312 Date: Sat Mar 15 15:08:25 2003 -0500
12313
12314 make sure spawn_loop size > 1 (it has to be at least > 0 lest we crash, but > 1 is an optimization)
12315
12316 commit 8f82cc0405e8d264d1a201e4b65d0e82e5822834
12317 Author: Matteo Frigo <athena@fftw.org>
12318 Date: Sat Mar 15 14:00:17 2003 -0500
12319
12320 hpux seems to want machine/sys/inline.h as opposed to
12321 machine/inline.h.
12322
12323 commit 195978c28fbdd1b1ead25d381c9c6af6f71a74fb
12324 Author: Steven G. Johnson <stevenj@fftw.org>
12325 Date: Sat Mar 15 13:36:56 2003 -0500
12326
12327 Sourceforge is really SourceForge.net, and is run by VA
12328
12329 commit 93eaa99ca18255b538bd37c4742ff87898a9350c
12330 Author: Steven G. Johnson <stevenj@fftw.org>
12331 Date: Sat Mar 15 13:34:05 2003 -0500
12332
12333 comma
12334
12335 commit aa16c88c1efdf9283884a6f3c28bda36d54c1cb9
12336 Author: Steven G. Johnson <stevenj@fftw.org>
12337 Date: Sat Mar 15 13:31:42 2003 -0500
12338
12339 fixed AMD company name
12340
12341 commit fa4887fa3ddccb2e53b50158d92f8cb9da3223f2
12342 Author: Steven G. Johnson <stevenj@fftw.org>
12343 Date: Sat Mar 15 13:29:41 2003 -0500
12344
12345 minor changes
12346
12347 commit 689f73454e57451cc4ceca48e6c9b3856550cc3f
12348 Author: Steven G. Johnson <stevenj@fftw.org>
12349 Date: Sat Mar 15 13:13:55 2003 -0500
12350
12351 more emitter->read_char renaming
12352
12353 commit 469d7370865e70079d60fc5d2144c477847ff50b
12354 Author: Steven G. Johnson <stevenj@fftw.org>
12355 Date: Sat Mar 15 13:08:45 2003 -0500
12356
12357 more wisdom docs, noted wisdom utilities
12358
12359 commit 69c2e6ee0d6523c9181828e9d918d00390f1b07f
12360 Author: Steven G. Johnson <stevenj@fftw.org>
12361 Date: Sat Mar 15 11:41:32 2003 -0500
12362
12363 compound adjectives are hyphenated
12364
12365 commit 1c816b975a4d35c3296bceb2700bc665c2838788
12366 Author: Steven G. Johnson <stevenj@fftw.org>
12367 Date: Sat Mar 15 11:40:30 2003 -0500
12368
12369 fftw does support another type of packed array via r2r
12370
12371 commit 4510d672da97fc9273a574d9cad23f807c811192
12372 Author: Steven G. Johnson <stevenj@fftw.org>
12373 Date: Sat Mar 15 11:29:12 2003 -0500
12374
12375 write_char/read_char for export/import functions
12376
12377 commit 5d042765f68d22c08849f8120b432d637364a95a
12378 Author: Steven G. Johnson <stevenj@fftw.org>
12379 Date: Sat Mar 15 11:19:19 2003 -0500
12380
12381 comments
12382
12383 commit ec4d319ec4d855dd2e5c3521429d77dcba1deffa
12384 Author: Matteo Frigo <athena@fftw.org>
12385 Date: Sat Mar 15 10:08:26 2003 -0500
12386
12387 Enabled randomized-cse
12388
12389 commit 85619e6f972e3105691588bba210448ad468726f
12390 Author: Matteo Frigo <athena@fftw.org>
12391 Date: Sat Mar 15 09:47:49 2003 -0500
12392
12393 Changed to 3.0-beta1
12394
12395 commit 6c58169a5ef565ec595054c8a1a3644a119575ad
12396 Author: Matteo Frigo <athena@fftw.org>
12397 Date: Sat Mar 15 09:07:31 2003 -0500
12398
12399 First complete draft
12400
12401 commit e014222e1611b0fda35eb4e81010d764371f645a
12402 Author: Matteo Frigo <athena@fftw.org>
12403 Date: Sat Mar 15 08:37:52 2003 -0500
12404
12405 EMITTER is a misnomer
12406
12407 commit b4e71cdebd8e08a8e4cb6e4e021c9839b0240220
12408 Author: Matteo Frigo <athena@fftw.org>
12409 Date: Sat Mar 15 05:50:50 2003 -0500
12410
12411 Revision, wisdom tutorial, acks.
12412
12413 commit 304d6a33a960a6867e345b7a2391f580de183901
12414 Author: Steven G. Johnson <stevenj@fftw.org>
12415 Date: Fri Mar 14 22:59:04 2003 -0500
12416
12417 noted OpenMP
12418
12419 commit f0132ff87cdec8cce3eec22776267630ce5d52a8
12420 Author: Steven G. Johnson <stevenj@fftw.org>
12421 Date: Fri Mar 14 22:38:49 2003 -0500
12422
12423 comment
12424
12425 commit d32e3536671b2ddf95fd19eefd595903f53369c9
12426 Author: Steven G. Johnson <stevenj@fftw.org>
12427 Date: Fri Mar 14 22:38:30 2003 -0500
12428
12429 comments
12430
12431 commit 758a708f03680fe53ce46466e344370a9537adfc
12432 Author: Steven G. Johnson <stevenj@fftw.org>
12433 Date: Fri Mar 14 22:38:05 2003 -0500
12434
12435 reformatting
12436
12437 commit f31a618619a119ba5df49807d225f5fef53e2acc
12438 Author: Steven G. Johnson <stevenj@fftw.org>
12439 Date: Fri Mar 14 22:26:28 2003 -0500
12440
12441 whoops
12442
12443 commit 47acccb2c662f75a8b9b082032072bfa154f13e5
12444 Author: Steven G. Johnson <stevenj@fftw.org>
12445 Date: Fri Mar 14 22:11:23 2003 -0500
12446
12447 some threads fixes, and added experimental semaphore (pre-thread-spawning) and Linux spinlock support
12448
12449 commit b3f95134caa95e434d418ab40f2bb57c07521a33
12450 Author: Steven G. Johnson <stevenj@fftw.org>
12451 Date: Fri Mar 14 20:50:46 2003 -0500
12452
12453 whoops
12454
12455 commit caedcb4f9b8df5449616654ec8782156a2e63e7f
12456 Author: Steven G. Johnson <stevenj@fftw.org>
12457 Date: Fri Mar 14 18:23:03 2003 -0500
12458
12459 added note that FFTW_PATIENT will disable threads if they are not beneficial
12460
12461 commit 34677912b28d4342f4ac1f84e27ee248d2c9ca71
12462 Author: Steven G. Johnson <stevenj@fftw.org>
12463 Date: Fri Mar 14 18:20:44 2003 -0500
12464
12465 made fftw_cleanup* more restrictive, in that we don't want to
12466 guarantee that previously created plans will still work (they won't,
12467 in the case of threaded plans and fftw_cleanup_threads), and there is
12468 no reason to provide such a guarantee anyway.
12469
12470 commit 4311c764859ea3a4a45fbb507ff0e131d12a5d44
12471 Author: Matteo Frigo <athena@fftw.org>
12472 Date: Fri Mar 14 17:23:13 2003 -0500
12473
12474 Moved version.c from kernel/ into api/
12475
12476 commit b79acfd84c9dc9bf6ce933ef72af7aafa01623e4
12477 Author: Matteo Frigo <athena@fftw.org>
12478 Date: Fri Mar 14 17:19:50 2003 -0500
12479
12480 icc-7.0 requires -openmp
12481
12482 commit 36f49567ecc9ec71ab72b760ee70ceb688f51f4c
12483 Author: Matteo Frigo <athena@fftw.org>
12484 Date: Fri Mar 14 14:47:52 2003 -0500
12485
12486 Ensure that one can do make dist given the distribution
12487
12488 commit 266bb8c14f0aa494b54fcaf1fd0b517c646d5618
12489 Author: Matteo Frigo <athena@fftw.org>
12490 Date: Fri Mar 14 14:38:11 2003 -0500
12491
12492 Dist fftw3.pdf, not fftw.pdf
12493
12494 commit a79801bc40a8ba8ba6f7b27f78aebb9426010b5a
12495 Author: Matteo Frigo <athena@fftw.org>
12496 Date: Fri Mar 14 14:36:25 2003 -0500
12497
12498 Support -onthreads=%d
12499
12500 commit 84c91507e6f7f6a050cc8651c7ee8c017d5d1b2f
12501 Author: Steven G. Johnson <stevenj@fftw.org>
12502 Date: Fri Mar 14 14:34:21 2003 -0500
12503
12504 comment
12505
12506 commit a8ef843faf74d0384c6ee1320b456f6aae56c5b2
12507 Author: Steven G. Johnson <stevenj@fftw.org>
12508 Date: Fri Mar 14 14:33:27 2003 -0500
12509
12510 whoops
12511
12512 commit 3e4f6ed2ad2fda1dbaa2bb444f81cbf116ab1931
12513 Author: Steven G. Johnson <stevenj@fftw.org>
12514 Date: Fri Mar 14 12:32:18 2003 -0500
12515
12516 fftw_real is gone
12517
12518 commit b55295b022d814a869b207fea2dbbb79c5091525
12519 Author: Steven G. Johnson <stevenj@fftw.org>
12520 Date: Fri Mar 14 12:26:04 2003 -0500
12521
12522 typos
12523
12524 commit 469579587defd8532f362c0ca4a2935532bae16a
12525 Author: Matteo Frigo <athena@fftw.org>
12526 Date: Fri Mar 14 06:21:43 2003 -0500
12527
12528 More BENCH_DOC strings
12529
12530 commit 18f0d31d803f348a8494ac190b4b9ff8d9be7a97
12531 Author: Matteo Frigo <athena@fftw.org>
12532 Date: Fri Mar 14 05:58:53 2003 -0500
12533
12534 Fixed xref's
12535
12536 commit d39f035994e443ebbc933eae51b3d9116bc50bb4
12537 Author: Matteo Frigo <athena@fftw.org>
12538 Date: Fri Mar 14 05:38:26 2003 -0500
12539
12540 Revised manual (esp. intro and tutorial), fixed texinfo hackery
12541 for figures.
12542
12543 commit f0cf0419996f46abb0bdf85068d67c1f88435a87
12544 Author: Steven G. Johnson <stevenj@fftw.org>
12545 Date: Wed Mar 12 02:42:33 2003 -0500
12546
12547 redirect users from guru execute to advanced interface, if possible
12548
12549 commit d30d60239f8f57975f53876649f04f04458b8d90
12550 Author: Steven G. Johnson <stevenj@fftw.org>
12551 Date: Wed Mar 12 02:35:22 2003 -0500
12552
12553 punctuation
12554
12555 commit cc3b4e3f2fd1880b0a9ced57de8bc592ac868aab
12556 Author: Steven G. Johnson <stevenj@fftw.org>
12557 Date: Wed Mar 12 02:28:51 2003 -0500
12558
12559 use correct heading level
12560
12561 commit 16e33bb6e9eba6c6ac3a3b5e88192f0937cbc79a
12562 Author: Steven G. Johnson <stevenj@fftw.org>
12563 Date: Wed Mar 12 02:24:37 2003 -0500
12564
12565 html generation
12566
12567 commit 8ea08e261cef0528db1c181268c6aabca6c52e50
12568 Author: Steven G. Johnson <stevenj@fftw.org>
12569 Date: Wed Mar 12 01:44:00 2003 -0500
12570
12571 added equation GIFs
12572
12573 commit 6b511ad0e8551382fb008d5f7d9d6db7c923f5d7
12574 Author: Steven G. Johnson <stevenj@fftw.org>
12575 Date: Wed Mar 12 01:43:27 2003 -0500
12576
12577 punctuation
12578
12579 commit b223dbcdf2607d546dcde4593dfeb29740b5a2c3
12580 Author: Steven G. Johnson <stevenj@fftw.org>
12581 Date: Wed Mar 12 01:26:46 2003 -0500
12582
12583 punctuation
12584
12585 commit 8e6421b39b31952d4cde709e9a7dc68146eeac77
12586 Author: Steven G. Johnson <stevenj@fftw.org>
12587 Date: Wed Mar 12 01:25:12 2003 -0500
12588
12589 added multi-dimensional transform definitions
12590
12591 commit da7ac31fa42d9b594d9a458bc86b31e326d2631b
12592 Author: Steven G. Johnson <stevenj@fftw.org>
12593 Date: Wed Mar 12 00:14:03 2003 -0500
12594
12595 slight changes
12596
12597 commit 4fa36533cd5df28fb24a7cd7678c4ff3a2b8e1f7
12598 Author: Steven G. Johnson <stevenj@fftw.org>
12599 Date: Wed Mar 12 00:06:34 2003 -0500
12600
12601 typo
12602
12603 commit 93fdbbd4434ff6db48765645e2af3eb2031caece
12604 Author: Steven G. Johnson <stevenj@fftw.org>
12605 Date: Tue Mar 11 23:50:43 2003 -0500
12606
12607 added 1d version of What FFTW Really Computes
12608
12609 commit 989a15455a04e193bd71a2fe4b1daea5649d0f2d
12610 Author: Steven G. Johnson <stevenj@fftw.org>
12611 Date: Tue Mar 11 21:17:54 2003 -0500
12612
12613 note in upgrading section about FFTW_PATIENT
12614
12615 commit f94fc8414c8477ad076f17bed5a1bffe87557ea9
12616 Author: Steven G. Johnson <stevenj@fftw.org>
12617 Date: Tue Mar 11 15:18:39 2003 -0500
12618
12619 added cycle-counter section
12620
12621 commit 32e58f9ac101c22551198abe31c5021196f69f0e
12622 Author: Steven G. Johnson <stevenj@fftw.org>
12623 Date: Tue Mar 11 14:53:44 2003 -0500
12624
12625 more ideas
12626
12627 commit 54102c10c10da11afcf1dac0451ce4a1e064be8c
12628 Author: Steven G. Johnson <stevenj@fftw.org>
12629 Date: Mon Mar 10 17:41:35 2003 -0500
12630
12631 noted that indirect should probably be merged with rank-geq2, to make a rank-split solver
12632
12633 commit e93a7d1eda3519a9467a0d1a7af57a176aae195c
12634 Author: Steven G. Johnson <stevenj@fftw.org>
12635 Date: Fri Mar 7 03:01:52 2003 -0500
12636
12637 added non-Unix installation instructions
12638
12639 commit 910a5988b2529e4ebd33372540c9db14626a3e8c
12640 Author: Steven G. Johnson <stevenj@fftw.org>
12641 Date: Fri Mar 7 02:30:59 2003 -0500
12642
12643 also talk about stack alignment with SSE/SSE2
12644
12645 commit 620f6439ff6d382e7f79fba9735243ffbc4e98d6
12646 Author: Steven G. Johnson <stevenj@fftw.org>
12647 Date: Fri Mar 7 02:24:07 2003 -0500
12648
12649 made warning more dire
12650
12651 commit 6c49e3a0d90853a504b55ee2bb9e67e6961334c6
12652 Author: Steven G. Johnson <stevenj@fftw.org>
12653 Date: Fri Mar 7 02:13:25 2003 -0500
12654
12655 fix
12656
12657 commit 076cf960691702683f560140c3c90932f531c802
12658 Author: Steven G. Johnson <stevenj@fftw.org>
12659 Date: Fri Mar 7 02:09:55 2003 -0500
12660
12661 number
12662
12663 commit abe3e1b3e2ac5d1ce15dd74544550011079f056c
12664 Author: Steven G. Johnson <stevenj@fftw.org>
12665 Date: Fri Mar 7 02:09:08 2003 -0500
12666
12667 fix
12668
12669 commit a43149065f2c521c8ce705f9ac0eeb519899ec2b
12670 Author: Steven G. Johnson <stevenj@fftw.org>
12671 Date: Fri Mar 7 02:08:01 2003 -0500
12672
12673 minor
12674
12675 commit cb19343373774be75d78469cbcd3ac4f0f4a903a
12676 Author: Steven G. Johnson <stevenj@fftw.org>
12677 Date: Fri Mar 7 02:04:45 2003 -0500
12678
12679 minor fix
12680
12681 commit d962180e504c71e46dc5b2f71d2304c254fcdace
12682 Author: Steven G. Johnson <stevenj@fftw.org>
12683 Date: Fri Mar 7 01:58:15 2003 -0500
12684
12685 cross-ref
12686
12687 commit 35ef1ce130da4c0389a2f7cef5eaab36dbd614ae
12688 Author: Steven G. Johnson <stevenj@fftw.org>
12689 Date: Fri Mar 7 01:57:31 2003 -0500
12690
12691 minor
12692
12693 commit 28fe03b9f79a6a80be8cc0d02cfc87e090f408d5
12694 Author: Steven G. Johnson <stevenj@fftw.org>
12695 Date: Fri Mar 7 01:53:28 2003 -0500
12696
12697 more installation manual
12698
12699 commit 650bf3b91d1fe392906f9aa25faed1707244f4f4
12700 Author: Steven G. Johnson <stevenj@fftw.org>
12701 Date: Fri Mar 7 00:43:40 2003 -0500
12702
12703 GNU-lly correct
12704
12705 commit aec18000f9851e8985d704ee50f49ea4d17f324e
12706 Author: Steven G. Johnson <stevenj@fftw.org>
12707 Date: Fri Mar 7 00:38:48 2003 -0500
12708
12709 started installation section
12710
12711 commit f7bf8016fa681c46c51385297a58d6dae611862f
12712 Author: Steven G. Johnson <stevenj@fftw.org>
12713 Date: Fri Mar 7 00:25:02 2003 -0500
12714
12715 added --without-cycle-counter option as a last resort
12716
12717 commit e97d01d48d003b290d6d2da7dc53cea35c90357d
12718 Author: Steven G. Johnson <stevenj@fftw.org>
12719 Date: Fri Mar 7 00:07:12 2003 -0500
12720
12721 macros with () arguments were only standardized in C99, and we don't need them anyway
12722
12723 commit 459a56abf74ce71af7c63047b31d39f7befefbb9
12724 Author: Steven G. Johnson <stevenj@fftw.org>
12725 Date: Thu Mar 6 23:10:41 2003 -0500
12726
12727 wording
12728
12729 commit 20d77f4e2a461fab512a8b5cd0ccd301d42f3673
12730 Author: Steven G. Johnson <stevenj@fftw.org>
12731 Date: Thu Mar 6 23:03:03 2003 -0500
12732
12733 parallelism
12734
12735 commit 881feeb3f3d4813a30da4baf5d71b8af8ca72d23
12736 Author: Steven G. Johnson <stevenj@fftw.org>
12737 Date: Thu Mar 6 23:01:47 2003 -0500
12738
12739 additions to upgrading chapter
12740
12741 commit 59f6ac21ab762470d0d4740130fa2131cc3f684e
12742 Author: Steven G. Johnson <stevenj@fftw.org>
12743 Date: Thu Mar 6 22:39:36 2003 -0500
12744
12745 noted additional humility of FFTW 3 wisdom
12746
12747 commit cf933ec73d68c2839a79d1fc53ba1198dc63fe39
12748 Author: Steven G. Johnson <stevenj@fftw.org>
12749 Date: Thu Mar 6 22:32:44 2003 -0500
12750
12751 renaming
12752
12753 commit 724b52700268a45264d168aaf7a63977a16af8bb
12754 Author: Steven G. Johnson <stevenj@fftw.org>
12755 Date: Thu Mar 6 22:31:00 2003 -0500
12756
12757 added placeholder for wisdom reference
12758
12759 commit c286ee068195c75e012cdf36534aa5f4154b394f
12760 Author: Steven G. Johnson <stevenj@fftw.org>
12761 Date: Thu Mar 6 22:29:38 2003 -0500
12762
12763 wrote upgrading chapter
12764
12765 commit 35c5a163f14e561b45a226dece35564f5773ce69
12766 Author: Steven G. Johnson <stevenj@fftw.org>
12767 Date: Thu Mar 6 18:01:10 2003 -0500
12768
12769 slight change
12770
12771 commit de53b4abb5481ee319ffcfc4e4b215861d814ed6
12772 Author: Steven G. Johnson <stevenj@fftw.org>
12773 Date: Thu Mar 6 18:00:43 2003 -0500
12774
12775 placeholder for upgrade chapter
12776
12777 commit a8a06d66b81a785625077d6de4fb8699ee4c718f
12778 Author: Steven G. Johnson <stevenj@fftw.org>
12779 Date: Thu Mar 6 13:47:49 2003 -0500
12780
12781 whoops
12782
12783 commit a128a59973d9f74fa491a56fc22b374ad69a5ebc
12784 Author: Steven G. Johnson <stevenj@fftw.org>
12785 Date: Thu Mar 6 13:36:38 2003 -0500
12786
12787 strengthed warning about time
12788
12789 commit 271819893ab4e7634f8cee294f9c68612ff811f2
12790 Author: Steven G. Johnson <stevenj@fftw.org>
12791 Date: Thu Mar 6 13:35:42 2003 -0500
12792
12793 noted -t in example
12794
12795 commit 08b64e3b15f7ad163677a348ba8d0a1a62720b07
12796 Author: Steven G. Johnson <stevenj@fftw.org>
12797 Date: Thu Mar 6 13:21:03 2003 -0500
12798
12799 pay attention to WINDOWS_F77_MANGLING
12800
12801 commit 5428bbf998b549e46c06f6f3e2ed9ff435304631
12802 Author: Steven G. Johnson <stevenj@fftw.org>
12803 Date: Thu Mar 6 02:52:30 2003 -0500
12804
12805 punctuation
12806
12807 commit 1462402c458e7a21360fcde1e6a5e9a023987747
12808 Author: Steven G. Johnson <stevenj@fftw.org>
12809 Date: Thu Mar 6 02:51:02 2003 -0500
12810
12811 index
12812
12813 commit 3cfc6a120672eeb46fca1300ba357ef6bff2b1cc
12814 Author: Steven G. Johnson <stevenj@fftw.org>
12815 Date: Thu Mar 6 02:50:38 2003 -0500
12816
12817 documented C++ <complex> usage
12818
12819 commit 675b0233f6e57d4aa15fe422acb4c156e2c3692a
12820 Author: Steven G. Johnson <stevenj@fftw.org>
12821 Date: Thu Mar 6 02:25:32 2003 -0500
12822
12823 got rid of overfull hbox TeX warnings
12824
12825 commit a5a689c09a184e7f361240b46f8a74cd5c0bea78
12826 Author: Steven G. Johnson <stevenj@fftw.org>
12827 Date: Thu Mar 6 02:20:38 2003 -0500
12828
12829 whoops
12830
12831 commit 9bdfa427108e546c8fd707d8bde9151b5cacd81d
12832 Author: Steven G. Johnson <stevenj@fftw.org>
12833 Date: Thu Mar 6 02:20:13 2003 -0500
12834
12835 noted fftw_iodim split for Fortran guru interface
12836
12837 commit ba02448b7f27ddbff45651477c0ca5ea4d28b7bd
12838 Author: Steven G. Johnson <stevenj@fftw.org>
12839 Date: Thu Mar 6 02:14:21 2003 -0500
12840
12841 added guru reference
12842
12843 commit db7990c25a72ecb1a1acddfa63bdd8c38fdaeedf
12844 Author: Steven G. Johnson <stevenj@fftw.org>
12845 Date: Wed Mar 5 22:56:05 2003 -0500
12846
12847 minor
12848
12849 commit 58778ac5172128991fd8e88d4461004a03763596
12850 Author: Steven G. Johnson <stevenj@fftw.org>
12851 Date: Wed Mar 5 22:45:31 2003 -0500
12852
12853 use @r{...} for comment text in code examples
12854
12855 commit bd4b0411a2a7a9485f83d430455ff5d1571019f8
12856 Author: Steven G. Johnson <stevenj@fftw.org>
12857 Date: Wed Mar 5 13:14:04 2003 -0500
12858
12859 eliminate warning
12860
12861 commit 87d217e8cd045402dbb4d9a4bc7ac81481edbcf9
12862 Author: Steven G. Johnson <stevenj@fftw.org>
12863 Date: Wed Mar 5 13:12:56 2003 -0500
12864
12865 SIMD_CFLAGS only for simd code
12866
12867 commit 8346b6688d8e88aa91864685b77de030e8cb2549
12868 Author: Matteo Frigo <athena@fftw.org>
12869 Date: Wed Mar 5 11:06:41 2003 -0500
12870
12871 Minor changes.
12872
12873 commit 181d6c8fbdca0f24c1feb199c9a29edcf2187977
12874 Author: Steven G. Johnson <stevenj@fftw.org>
12875 Date: Wed Mar 5 02:13:34 2003 -0500
12876
12877 cross-compiling with MinGW can't detect f77 mangling, so add an option to use what seems to be the most common styles
12878
12879 commit 17f9e2aabc5526c6614d7055960c5e7f5fda3720
12880 Author: Steven G. Johnson <stevenj@fftw.org>
12881 Date: Tue Mar 4 20:00:31 2003 -0500
12882
12883 comment
12884
12885 commit b0715eb2e0f6662e3b3b41adf70799a31c2ab630
12886 Author: Steven G. Johnson <stevenj@fftw.org>
12887 Date: Tue Mar 4 20:00:13 2003 -0500
12888
12889 we only use our-malloc-16 on machines where size_t == uintptr_t, so don't bother doing the right thing with the benchmark
12890
12891 commit 72d331d4dbb9bf0bed0796e05eaf970a17c2975a
12892 Author: Steven G. Johnson <stevenj@fftw.org>
12893 Date: Tue Mar 4 19:46:09 2003 -0500
12894
12895 support WITH_OUR_MALLOC16
12896
12897 commit d2ee17676db2b01e1d57b6f6fcebe4c9c8987fff
12898 Author: fftw <none>
12899 Date: Tue Mar 4 18:50:53 2003 -0500
12900
12901 automatically add -msse etcetera for --enable-sse etcetera
12902
12903 commit 0a7cb6363f8effac8a34176c7b31d1dfbe4e71d0
12904 Author: fftw <none>
12905 Date: Tue Mar 4 18:24:26 2003 -0500
12906
12907 got rid of const warning
12908
12909 commit f27a29dff516ba8bf8bd22a3affe1e881a045389
12910 Author: fftw <none>
12911 Date: Tue Mar 4 18:22:48 2003 -0500
12912
12913 missing header
12914
12915 commit 58b8d88bdb16fde7d1400c93b1d976af4a29acaf
12916 Author: Steven G. Johnson <stevenj@fftw.org>
12917 Date: Tue Mar 4 15:55:47 2003 -0500
12918
12919 fixes
12920
12921 commit a636d3b26c9ca10c0225bb058035e2f99ae41383
12922 Author: Steven G. Johnson <stevenj@fftw.org>
12923 Date: Tue Mar 4 15:53:26 2003 -0500
12924
12925 whoops
12926
12927 commit 530bdb066779445d91537bb42fafd03d98d24bd1
12928 Author: Steven G. Johnson <stevenj@fftw.org>
12929 Date: Tue Mar 4 02:22:14 2003 -0500
12930
12931 started guru reference
12932
12933 commit c44336102065022482f5d8a4eda068247672c05c
12934 Author: Steven G. Johnson <stevenj@fftw.org>
12935 Date: Tue Mar 4 01:44:09 2003 -0500
12936
12937 use same FFTW_IODIM between precisions
12938
12939 commit da6302aba33f0dc74c9da6d7cd4824a6c431c948
12940 Author: Steven G. Johnson <stevenj@fftw.org>
12941 Date: Tue Mar 4 00:25:57 2003 -0500
12942
12943 renamed section
12944
12945 commit bf45437f266c9ce170d54e87466ba34f41b1937d
12946 Author: Steven G. Johnson <stevenj@fftw.org>
12947 Date: Tue Mar 4 00:21:49 2003 -0500
12948
12949 no need for "advanced" in subheadings
12950
12951 commit 5fb9bd9fe4b93abeb0aa4b00e1ca6e9057da2fbd
12952 Author: Steven G. Johnson <stevenj@fftw.org>
12953 Date: Tue Mar 4 00:20:05 2003 -0500
12954
12955 typo
12956
12957 commit 0127b618539bcb2ddf8634d4bb09c10673ba26a5
12958 Author: Steven G. Johnson <stevenj@fftw.org>
12959 Date: Tue Mar 4 00:17:23 2003 -0500
12960
12961 finished advanced interface
12962
12963 commit 76aa5434ffee4220caa0b1935d813723d43d55eb
12964 Author: Steven G. Johnson <stevenj@fftw.org>
12965 Date: Mon Mar 3 23:26:12 2003 -0500
12966
12967 more advance interface docs
12968
12969 commit 05a9b164357317a362a1f4e0acb2067faa66910e
12970 Author: Steven G. Johnson <stevenj@fftw.org>
12971 Date: Mon Mar 3 23:12:09 2003 -0500
12972
12973 fail for win32
12974
12975 commit c49ad63f2fb49af4c81ea1fde51303013e637d7b
12976 Author: fftw <none>
12977 Date: Mon Mar 3 17:18:48 2003 -0500
12978
12979 shortened help string
12980
12981 commit 52ebcb06b186e8f796fdc71ae30d3ac7e9e35017
12982 Author: fftw <none>
12983 Date: Mon Mar 3 17:16:17 2003 -0500
12984
12985 fixed cross-refs
12986
12987 commit 331a793c80e1bb04018aad92d07791ff432d792e
12988 Author: fftw <none>
12989 Date: Mon Mar 3 17:07:27 2003 -0500
12990
12991 FFTW_POSSIBLY_UNALIGNED -> simpler FFTW_UNALIGNED in API, added bench option
12992
12993 commit 3ba1c479988c55e2f9244fac654f491c5b1c4b78
12994 Author: fftw <none>
12995 Date: Mon Mar 3 16:58:07 2003 -0500
12996
12997 whoops
12998
12999 commit 62a1622e28fcc9408467bccee64c50f977243b7f
13000 Author: fftw <none>
13001 Date: Mon Mar 3 16:52:58 2003 -0500
13002
13003 noted assumption
13004
13005 commit b6a1f1234fe0834ad8c7a313fc15c710bffafdc6
13006 Author: fftw <none>
13007 Date: Mon Mar 3 16:50:33 2003 -0500
13008
13009 provide our own malloc16 routine because of Windows lossage
13010
13011 commit 22de7295407d77062d3611d326295950f90d4907
13012 Author: Steven G. Johnson <stevenj@fftw.org>
13013 Date: Mon Mar 3 13:28:12 2003 -0500
13014
13015 capitalization
13016
13017 commit 5756c9b659e1dda142a21c8c4c8fed00015bf29d
13018 Author: Steven G. Johnson <stevenj@fftw.org>
13019 Date: Mon Mar 3 13:26:32 2003 -0500
13020
13021 whoops
13022
13023 commit 0f92b4f922681df3c6ea4a35bafb8c32907a028d
13024 Author: Steven G. Johnson <stevenj@fftw.org>
13025 Date: Mon Mar 3 12:55:57 2003 -0500
13026
13027 vertical skip looks better than indenting for setting off short paragraphs
13028
13029 commit 767a89f2268461313cb0a3666be311640bb288af
13030 Author: Matteo Frigo <athena@fftw.org>
13031 Date: Mon Mar 3 06:34:09 2003 -0500
13032
13033 Removed franz-mode. Automake was distributing franz files
13034 whether franz mode was enabled or not.
13035
13036 commit d40ea4ed0a561aa7f85008bb970d07b33010a0eb
13037 Author: Steven G. Johnson <stevenj@fftw.org>
13038 Date: Mon Mar 3 01:44:00 2003 -0500
13039
13040 made output boundary conditions more prominent; they are important,
13041 because they make the different transform types inequivalent in
13042 parity
13043
13044 commit 909ed5b34a848e505c9a62fcb5b07d346183a43d
13045 Author: Steven G. Johnson <stevenj@fftw.org>
13046 Date: Mon Mar 3 01:17:28 2003 -0500
13047
13048 clarification
13049
13050 commit feb1fc01699f139143e536e1d0f961b904bba74e
13051 Author: Steven G. Johnson <stevenj@fftw.org>
13052 Date: Mon Mar 3 01:17:07 2003 -0500
13053
13054 typo
13055
13056 commit 8d2e91da57095741496a5ae8b809cee8bd01bdb9
13057 Author: Steven G. Johnson <stevenj@fftw.org>
13058 Date: Mon Mar 3 01:10:28 2003 -0500
13059
13060 started advanced reference
13061
13062 commit 34cc962abf3c75c27328c21fb2c9b053426870f8
13063 Author: Steven G. Johnson <stevenj@fftw.org>
13064 Date: Mon Mar 3 00:52:02 2003 -0500
13065
13066 r2r reference
13067
13068 commit 6a32d0463a93a19f01e9b13bdc2e0d73857c7eaa
13069 Author: Steven G. Johnson <stevenj@fftw.org>
13070 Date: Sun Mar 2 23:51:21 2003 -0500
13071
13072 workaround for info formatting bug
13073
13074 commit a76009f2fb554d2af97e39f4857b70d26a263bf5
13075 Author: Steven G. Johnson <stevenj@fftw.org>
13076 Date: Sun Mar 2 23:47:19 2003 -0500
13077
13078 noted lack of fftw_malloc in Fortran
13079
13080 commit 53555b1acdefbc4b092702bcd7defa71dd523ee7
13081 Author: Steven G. Johnson <stevenj@fftw.org>
13082 Date: Sun Mar 2 23:42:52 2003 -0500
13083
13084 parallelism
13085
13086 commit a84b5314b96882b7495c7d0fbdd91a73f678683f
13087 Author: Steven G. Johnson <stevenj@fftw.org>
13088 Date: Sun Mar 2 23:39:54 2003 -0500
13089
13090 whoops
13091
13092 commit f4b30c1aeb9cadcb0ef3586a40e2a41a6087304f
13093 Author: Steven G. Johnson <stevenj@fftw.org>
13094 Date: Sun Mar 2 23:33:02 2003 -0500
13095
13096 r2c/c2r reference
13097
13098 commit 9afb0869850070a47c3b45df511efdaef0c19292
13099 Author: Steven G. Johnson <stevenj@fftw.org>
13100 Date: Sun Mar 2 22:44:10 2003 -0500
13101
13102 table of contents was being included twice
13103
13104 commit 9433ef02af21f2e3ee1c5a5e6034a2e5a02663af
13105 Author: Steven G. Johnson <stevenj@fftw.org>
13106 Date: Sun Mar 2 22:42:29 2003 -0500
13107
13108 minor changes
13109
13110 commit 34aaf0acd96dc522e8b71c3844077a7d28149690
13111 Author: Steven G. Johnson <stevenj@fftw.org>
13112 Date: Sun Mar 2 21:54:13 2003 -0500
13113
13114 started reference section
13115
13116 commit 10afdab4c99f7d367227f61d6ea87e43113379ef
13117 Author: Steven G. Johnson <stevenj@fftw.org>
13118 Date: Sun Mar 2 19:10:02 2003 -0500
13119
13120 whoops
13121
13122 commit da1655a272a6bd0bf3db360605818d3684e01919
13123 Author: Steven G. Johnson <stevenj@fftw.org>
13124 Date: Sun Mar 2 19:03:23 2003 -0500
13125
13126 started ref. section
13127
13128 commit a3cc56c2b538f79864f787f9480a7da21017624a
13129 Author: Steven G. Johnson <stevenj@fftw.org>
13130 Date: Sun Mar 2 18:50:58 2003 -0500
13131
13132 fftw_flops takes const plan
13133
13134 commit e6c9dd42b944a416f6cca057b2277acb2a00d370
13135 Author: Steven G. Johnson <stevenj@fftw.org>
13136 Date: Sun Mar 2 15:54:14 2003 -0500
13137
13138 typo
13139
13140 commit 9d97e6245d45d65061499080021f2e0c877803b6
13141 Author: Steven G. Johnson <stevenj@fftw.org>
13142 Date: Sun Mar 2 15:52:41 2003 -0500
13143
13144 added "Wisdom of Fortran?" section
13145
13146 commit 85f80c144fc9da705ddc7da87d0e437a4125d1db
13147 Author: Steven G. Johnson <stevenj@fftw.org>
13148 Date: Sun Mar 2 15:50:37 2003 -0500
13149
13150 typo
13151
13152 commit 0f4d81b32a7ddf1e011dcc66a7ca3a6f01602aa9
13153 Author: Steven G. Johnson <stevenj@fftw.org>
13154 Date: Sun Mar 2 15:49:57 2003 -0500
13155
13156 wording
13157
13158 commit 6c6dd67d7f64ce4ab293456c0b4fce7397b4204f
13159 Author: Steven G. Johnson <stevenj@fftw.org>
13160 Date: Sun Mar 2 15:46:13 2003 -0500
13161
13162 added comments
13163
13164 commit d9ecf01ce4b7d0bb1c81de9097941541d96f68d0
13165 Author: Steven G. Johnson <stevenj@fftw.org>
13166 Date: Sun Mar 2 15:44:01 2003 -0500
13167
13168 added example file
13169
13170 commit 37b6da9ec0958f78193e343ff5adbb7221039698
13171 Author: Steven G. Johnson <stevenj@fftw.org>
13172 Date: Sun Mar 2 15:37:32 2003 -0500
13173
13174 don't print out READ WISDOM unless we have
13175
13176 commit c476c76dbda1de2cfcfed5db46f8eb6a59ca5eda
13177 Author: Steven G. Johnson <stevenj@fftw.org>
13178 Date: Sun Mar 2 15:36:28 2003 -0500
13179
13180 EOF is not a space
13181
13182 commit 789f94ba726188b22495dffa33536923784cc893
13183 Author: Matteo Frigo <athena@fftw.org>
13184 Date: Sun Mar 2 09:14:37 2003 -0500
13185
13186 Turn on inline by default
13187
13188 commit f76cd82b2e8d570d38aafcd3bc479871a6bfef71
13189 Author: Matteo Frigo <athena@fftw.org>
13190 Date: Sun Mar 2 07:11:56 2003 -0500
13191
13192 Optionally inline loop in notw codelets
13193
13194 commit 4ee60a97aba5df7daa9a1f0f20fc8a18b4caeef9
13195 Author: Steven G. Johnson <stevenj@fftw.org>
13196 Date: Sun Mar 2 01:37:41 2003 -0500
13197
13198 updated nodes
13199
13200 commit a760bacb99bcb4d1b37deac1a0d03048564f06ae
13201 Author: Steven G. Johnson <stevenj@fftw.org>
13202 Date: Sun Mar 2 01:37:19 2003 -0500
13203
13204 wrote most of Fortran chapter
13205
13206 commit 84b26fd1d2d412fc5dae194fa4f49ea8c5ad803b
13207 Author: Steven G. Johnson <stevenj@fftw.org>
13208 Date: Sun Mar 2 00:58:37 2003 -0500
13209
13210 citation
13211
13212 commit 90c66908b4f24f05f5a77a85d890ef77a5946747
13213 Author: Steven G. Johnson <stevenj@fftw.org>
13214 Date: Sun Mar 2 00:57:22 2003 -0500
13215
13216 added parallel FFTW chapter
13217
13218 commit 1a89e4fc8d30e58c46d409543e5641d74d82012b
13219 Author: Steven G. Johnson <stevenj@fftw.org>
13220 Date: Sat Mar 1 20:42:23 2003 -0500
13221
13222 typo
13223
13224 commit 125c6e2e61c2977a10fe882134b6daa518d211b6
13225 Author: Steven G. Johnson <stevenj@fftw.org>
13226 Date: Sat Mar 1 20:34:38 2003 -0500
13227
13228 added inlining to TODO
13229
13230 commit 86f19bdcd118e4f74034a5acf2a9f46ae0dd563b
13231 Author: Steven G. Johnson <stevenj@fftw.org>
13232 Date: Sat Mar 1 19:36:26 2003 -0500
13233
13234 added K
13235
13236 commit c471cfe8ed04c68bd3ba96de578160018676966f
13237 Author: Steven G. Johnson <stevenj@fftw.org>
13238 Date: Sat Mar 1 19:15:18 2003 -0500
13239
13240 use K for constants
13241
13242 commit c9132f12b56356608c7430b1aa8674c57982cf6f
13243 Author: Steven G. Johnson <stevenj@fftw.org>
13244 Date: Sat Mar 1 19:14:54 2003 -0500
13245
13246 fixed cross-ref
13247
13248 commit 2c552e93b7ac76c6ed2cb15d84fb724e71d90901
13249 Author: Steven G. Johnson <stevenj@fftw.org>
13250 Date: Sat Mar 1 19:14:16 2003 -0500
13251
13252 whoops
13253
13254 commit ffd88e528368512ad6260f9829d093be01b0b8e0
13255 Author: Steven G. Johnson <stevenj@fftw.org>
13256 Date: Sat Mar 1 18:50:43 2003 -0500
13257
13258 cleanup
13259
13260 commit eb500b0aee97bc247fadc5f14053addd510f8911
13261 Author: Steven G. Johnson <stevenj@fftw.org>
13262 Date: Sat Mar 1 18:46:38 2003 -0500
13263
13264 "words of wisdom" by itself is a little too obscure
13265
13266 commit c110b9bcf9dc0e3ac3bd0a9dc0aa04a3003808ab
13267 Author: Steven G. Johnson <stevenj@fftw.org>
13268 Date: Sat Mar 1 18:43:21 2003 -0500
13269
13270 re-added multi-dimensional array stuff
13271
13272 commit 3c1809be37bedc7b19bb0ad1645d2d0c55fb24af
13273 Author: Steven G. Johnson <stevenj@fftw.org>
13274 Date: Sat Mar 1 18:15:22 2003 -0500
13275
13276 added alignment section
13277
13278 commit 5ea9d154e8d9b180445e82c228f66dc620435630
13279 Author: Steven G. Johnson <stevenj@fftw.org>
13280 Date: Sat Mar 1 16:34:21 2003 -0500
13281
13282 shrunk code
13283
13284 commit 969e6184c37360147d4377765e4209f740bbbc63
13285 Author: Steven G. Johnson <stevenj@fftw.org>
13286 Date: Fri Feb 28 20:22:00 2003 -0500
13287
13288 slight compression
13289
13290 commit 61f49745af277cf662c0b684d812bb937991da02
13291 Author: Steven G. Johnson <stevenj@fftw.org>
13292 Date: Fri Feb 28 19:01:20 2003 -0500
13293
13294 style
13295
13296 commit 7a450c9741b7d712c4b0647c8348b6f5c16c5b5b
13297 Author: Steven G. Johnson <stevenj@fftw.org>
13298 Date: Fri Feb 28 18:46:53 2003 -0500
13299
13300 noted not in API
13301
13302 commit dcb2c790e6afe7674f917a64a27a5d757de04d54
13303 Author: Steven G. Johnson <stevenj@fftw.org>
13304 Date: Fri Feb 28 18:43:14 2003 -0500
13305
13306 more updates
13307
13308 commit 9c734e0be5f7e454d53ea076c85b07a1563d12d0
13309 Author: Steven G. Johnson <stevenj@fftw.org>
13310 Date: Fri Feb 28 18:38:42 2003 -0500
13311
13312 slight updates
13313
13314 commit 3e0a26ba8c35cc39e451dddb4ff538a9b6897853
13315 Author: Steven G. Johnson <stevenj@fftw.org>
13316 Date: Fri Feb 28 18:28:58 2003 -0500
13317
13318 great const-ification of apply/solve and print
13319
13320 commit 7531ed4ba4a1cd9a4e9caf11c225f930a72efc73
13321 Author: Steven G. Johnson <stevenj@fftw.org>
13322 Date: Fri Feb 28 17:51:15 2003 -0500
13323
13324 make fftw_execute take a const plan, to remind the user that it is re-entrant (or should be)...
13325
13326 commit 4688736baa020b3ea5f442e36b70d793b431c5c5
13327 Author: Steven G. Johnson <stevenj@fftw.org>
13328 Date: Fri Feb 28 17:29:40 2003 -0500
13329
13330 weakening
13331
13332 commit 0318454412dbe1cd837ddb068bd343ca6e112011
13333 Author: Steven G. Johnson <stevenj@fftw.org>
13334 Date: Fri Feb 28 17:28:48 2003 -0500
13335
13336 note
13337
13338 commit 91b816d6c3f80bdb7e0d0116306ae7ffd2c455a8
13339 Author: Steven G. Johnson <stevenj@fftw.org>
13340 Date: Fri Feb 28 17:27:10 2003 -0500
13341
13342 footnote about why DHT is provided
13343
13344 commit ade0a1b900ff7aad1f0b34334d0aeef444f9c6f1
13345 Author: Steven G. Johnson <stevenj@fftw.org>
13346 Date: Fri Feb 28 15:07:03 2003 -0500
13347
13348 index
13349
13350 commit 02af64c2431e9ebe1f95750c16596bb16b0130e2
13351 Author: Steven G. Johnson <stevenj@fftw.org>
13352 Date: Fri Feb 28 15:05:48 2003 -0500
13353
13354 added DHT tutorial
13355
13356 commit 4c0a2b93c6fabdbd47e06a9f6ba76008bcb560a1
13357 Author: Steven G. Johnson <stevenj@fftw.org>
13358 Date: Fri Feb 28 14:36:45 2003 -0500
13359
13360 fixed O(n log n)
13361
13362 commit fd7ecdadbf64ae5027bac415310c4a98a276db60
13363 Author: Steven G. Johnson <stevenj@fftw.org>
13364 Date: Fri Feb 28 14:12:15 2003 -0500
13365
13366 whoops
13367
13368 commit ee8d32cc161fa77c6d9566dfb000a80af883f835
13369 Author: Steven G. Johnson <stevenj@fftw.org>
13370 Date: Fri Feb 28 14:06:22 2003 -0500
13371
13372 slight improvements
13373
13374 commit 0b2ef4ccfd465403919403e5151753a4280f683e
13375 Author: Steven G. Johnson <stevenj@fftw.org>
13376 Date: Fri Feb 28 00:55:50 2003 -0500
13377
13378 addition
13379
13380 commit 22bd399df29e7380522c5bac340a3f04a466fd79
13381 Author: Steven G. Johnson <stevenj@fftw.org>
13382 Date: Fri Feb 28 00:54:09 2003 -0500
13383
13384 clarification
13385
13386 commit 1b357d49f4d4ee22c59374391be91ddb42813a2d
13387 Author: Steven G. Johnson <stevenj@fftw.org>
13388 Date: Thu Feb 27 23:49:37 2003 -0500
13389
13390 fix
13391
13392 commit 1c30eacc33d5c9d5daf303cfbbc5fa74e6a5bfa4
13393 Author: Steven G. Johnson <stevenj@fftw.org>
13394 Date: Thu Feb 27 23:43:56 2003 -0500
13395
13396 slight changes
13397
13398 commit 053b9356142e3b05c1ee11800f497813e5c9f119
13399 Author: Steven G. Johnson <stevenj@fftw.org>
13400 Date: Thu Feb 27 23:27:48 2003 -0500
13401
13402 added R{E,O}DFTab tutorial
13403
13404 commit a793a4024b69b7e4ec4bbbeedb00508845c0cab2
13405 Author: Steven G. Johnson <stevenj@fftw.org>
13406 Date: Thu Feb 27 17:24:20 2003 -0500
13407
13408 fixes
13409
13410 commit de5b2994a11c8c2b3d1948f43525864b0ac5d265
13411 Author: Steven G. Johnson <stevenj@fftw.org>
13412 Date: Thu Feb 27 17:20:42 2003 -0500
13413
13414 fixes
13415
13416 commit 027014da3b7f99190c9c1edbe0f6d0c0d15e043a
13417 Author: Steven G. Johnson <stevenj@fftw.org>
13418 Date: Thu Feb 27 17:11:54 2003 -0500
13419
13420 slight change
13421
13422 commit 6359d6080ac4a827218faee02ba1bfe5a5a676bf
13423 Author: Steven G. Johnson <stevenj@fftw.org>
13424 Date: Thu Feb 27 17:07:45 2003 -0500
13425
13426 documented r2hc/hc2r
13427
13428 commit a44e1bc64be97cffdf71bf77dcb526786daa8efe
13429 Author: Steven G. Johnson <stevenj@fftw.org>
13430 Date: Thu Feb 27 16:19:16 2003 -0500
13431
13432 minor changes
13433
13434 commit 7186d1f0701c1507ce6b57f943f0d069c69e09d1
13435 Author: Steven G. Johnson <stevenj@fftw.org>
13436 Date: Thu Feb 27 13:54:06 2003 -0500
13437
13438 timed planner and unifying radix-2 butterfly loops are not critical for release
13439
13440 commit e22ae82e9d2c007712ae8e8523a2ba4844265b26
13441 Author: Steven G. Johnson <stevenj@fftw.org>
13442 Date: Thu Feb 27 13:51:20 2003 -0500
13443
13444 reodft/verify.c no longer exists
13445
13446 commit d562aee6ca0c9e2c375d31a2f283ef5188b8819a
13447 Author: Steven G. Johnson <stevenj@fftw.org>
13448 Date: Thu Feb 27 13:44:19 2003 -0500
13449
13450 optimization: REDFT00 of size 2 is same as R2HC
13451
13452 commit 35bca2a3e6f2b887fe4517dfed61eb4cc614f9ff
13453 Author: Steven G. Johnson <stevenj@fftw.org>
13454 Date: Thu Feb 27 12:35:33 2003 -0500
13455
13456 R{E,O}DFT01 of size-1 is identity
13457
13458 commit 3e86434a19f94bd85e576be96fb26b0db8456b7e
13459 Author: Steven G. Johnson <stevenj@fftw.org>
13460 Date: Thu Feb 27 12:15:10 2003 -0500
13461
13462 minor simplification
13463
13464 commit 23aeb956f45a31061c6f0bee5c78119e332e9d20
13465 Author: Steven G. Johnson <stevenj@fftw.org>
13466 Date: Thu Feb 27 02:46:31 2003 -0500
13467
13468 fixed add count
13469
13470 commit 629bf73abe3666100c7a3cdb795cdf85f1c3467c
13471 Author: Steven G. Johnson <stevenj@fftw.org>
13472 Date: Thu Feb 27 02:25:04 2003 -0500
13473
13474 whoops
13475
13476 commit 46350e9b4b06fc596f73c2e8297276e38871fbcc
13477 Author: Steven G. Johnson <stevenj@fftw.org>
13478 Date: Thu Feb 27 02:22:03 2003 -0500
13479
13480 another optimization
13481
13482 commit 16310c985bad6d32fa0da6362c37fd375822d813
13483 Author: Steven G. Johnson <stevenj@fftw.org>
13484 Date: Thu Feb 27 01:43:00 2003 -0500
13485
13486 added op counts
13487
13488 commit 870808939ac67893ae3193d1eaf47d6722399743
13489 Author: Steven G. Johnson <stevenj@fftw.org>
13490 Date: Thu Feb 27 01:29:32 2003 -0500
13491
13492 cleanup
13493
13494 commit e13936e36480509c10d5f8da4806a17a1f2c9d34
13495 Author: Steven G. Johnson <stevenj@fftw.org>
13496 Date: Thu Feb 27 01:17:23 2003 -0500
13497
13498 typo in comment
13499
13500 commit 32c3d158f7f210901f1c16a8c8cbdfff05024993
13501 Author: Steven G. Johnson <stevenj@fftw.org>
13502 Date: Thu Feb 27 01:13:49 2003 -0500
13503
13504 fixed comment
13505
13506 commit 6e65b622f4e11f6b75ce19b92715054e01726a87
13507 Author: Steven G. Johnson <stevenj@fftw.org>
13508 Date: Thu Feb 27 01:12:05 2003 -0500
13509
13510 use E instead of R
13511
13512 commit b2dbcc1af3dac45c5dc937090de39d8c50f79f04
13513 Author: Steven G. Johnson <stevenj@fftw.org>
13514 Date: Thu Feb 27 01:05:39 2003 -0500
13515
13516 more unrolling to eliminate if statements in loops, for speedups of 25-40%
13517
13518 commit efdfcd1ab423b3b5f4c226859c38fe82ef8d5ee3
13519 Author: Steven G. Johnson <stevenj@fftw.org>
13520 Date: Thu Feb 27 00:27:00 2003 -0500
13521
13522 some loop splitting to touch each element of output buf only once and eliminate some conditionals...speeds up by 30-40%
13523
13524 commit ac2585fa04303d0a9733f25529a4de770165a96a
13525 Author: Steven G. Johnson <stevenj@fftw.org>
13526 Date: Wed Feb 26 17:48:26 2003 -0500
13527
13528 comma
13529
13530 commit 12f6863d7ba56d03a828d47d95226914f7624343
13531 Author: Steven G. Johnson <stevenj@fftw.org>
13532 Date: Wed Feb 26 17:46:17 2003 -0500
13533
13534 pointer to odd case
13535
13536 commit b305de27048e5d88018afd557b9853fcfd938e7e
13537 Author: Steven G. Johnson <stevenj@fftw.org>
13538 Date: Wed Feb 26 17:40:54 2003 -0500
13539
13540 precision -> accuracy (c.f. Kahan)
13541
13542 commit 8cce3f1c36041dfd0f3099ccd2b4d07af10ba0ae
13543 Author: Steven G. Johnson <stevenj@fftw.org>
13544 Date: Wed Feb 26 17:36:13 2003 -0500
13545
13546 added time limit for wisdom generation
13547
13548 commit 57f9db2fb5d1498630bc04fa9ce59c0362383dc2
13549 Author: Steven G. Johnson <stevenj@fftw.org>
13550 Date: Wed Feb 26 13:24:36 2003 -0500
13551
13552 caps
13553
13554 commit 194e3fe2a23b43433042f38567d615508f0219f0
13555 Author: Steven G. Johnson <stevenj@fftw.org>
13556 Date: Tue Feb 25 20:56:01 2003 -0500
13557
13558 another note
13559
13560 commit 74d5d37f8b5f57257ac2996c1b78cd6e178009b2
13561 Author: Steven G. Johnson <stevenj@fftw.org>
13562 Date: Tue Feb 25 20:54:57 2003 -0500
13563
13564 note
13565
13566 commit 4c454a521c659245d7d5328a0428abe8e0e65ca0
13567 Author: Steven G. Johnson <stevenj@fftw.org>
13568 Date: Tue Feb 25 20:42:08 2003 -0500
13569
13570 added new, more accurate (hopefully) reodft11 algorithms; added --disable-debug-malloc; added --impulse-accuracy-rounds=rounds flags to libbench2 for impulse-response accuracy tests
13571
13572 commit 56c91af19d265df468a1c332950285ccc35cadf2
13573 Author: Matteo Frigo <athena@fftw.org>
13574 Date: Sun Feb 23 14:07:48 2003 -0500
13575
13576 fftw_wisdom.1 is in $builddir, not $srcdir
13577
13578 commit afb274d60def917682dcfb6752788ae69feb0e89
13579 Author: Steven G. Johnson <stevenj@fftw.org>
13580 Date: Mon Feb 17 03:42:19 2003 -0500
13581
13582 pde
13583
13584 commit 57844d17a4a5e42a9b3a6e264d4b9ef96a48b7d7
13585 Author: Steven G. Johnson <stevenj@fftw.org>
13586 Date: Mon Feb 17 03:40:19 2003 -0500
13587
13588 consistent number
13589
13590 commit da10f4a095936c4a272edf95561177e0ba1e0976
13591 Author: Steven G. Johnson <stevenj@fftw.org>
13592 Date: Mon Feb 17 03:39:02 2003 -0500
13593
13594 started r2r doc
13595
13596 commit 9339401bc1db11ab2b3ea8332adf2b7f8d2bd39d
13597 Author: Steven G. Johnson <stevenj@fftw.org>
13598 Date: Mon Feb 17 02:31:51 2003 -0500
13599
13600 rfftwnd
13601
13602 commit e9481965be99453d16fce50a2cec8a7189d50e5a
13603 Author: Steven G. Johnson <stevenj@fftw.org>
13604 Date: Sat Feb 15 17:02:07 2003 -0500
13605
13606 continued
13607
13608 commit 387c70c9f598cc84949f9b36c3a7ec3aee478107
13609 Author: Steven G. Johnson <stevenj@fftw.org>
13610 Date: Sat Feb 15 15:16:26 2003 -0500
13611
13612 started r2c/c2r docs
13613
13614 commit 0df57f98fa114607c9ea5a9e17e8aa4fa92bd0c1
13615 Author: Steven G. Johnson <stevenj@fftw.org>
13616 Date: Sat Feb 15 01:12:52 2003 -0500
13617
13618 added r{e,o}dft11 accuracy test
13619
13620 commit e24081ffd7a170743a930c91ec251fb1fa590072
13621 Author: Steven G. Johnson <stevenj@fftw.org>
13622 Date: Sat Feb 15 00:42:48 2003 -0500
13623
13624 added more r2r accuracy checks
13625
13626 commit da37c854fdf95a2cfc3cf2c6ef698ab1ed9e8a70
13627 Author: Matteo Frigo <athena@fftw.org>
13628 Date: Fri Feb 14 19:19:54 2003 -0500
13629
13630 $< is a GNUism
13631
13632 commit 01c0739002308b926e8ed648f93c2b46ef885404
13633 Author: Steven G. Johnson <stevenj@fftw.org>
13634 Date: Wed Feb 12 21:02:16 2003 -0500
13635
13636 r2r test cases are in
13637
13638 commit e0d1053729fe6e63cfc19bf040c14593ced050c5
13639 Author: Steven G. Johnson <stevenj@fftw.org>
13640 Date: Wed Feb 12 21:01:28 2003 -0500
13641
13642 added vector radix to TODO
13643
13644 commit eabfd75e1f96eb039ac8ba4f612ad92a5de3f3f2
13645 Author: Steven G. Johnson <stevenj@fftw.org>
13646 Date: Wed Feb 12 17:21:33 2003 -0500
13647
13648 fixed cross-ref
13649
13650 commit fe1a1f526ac5401ffbb69ddc61b07af2f9c08cfc
13651 Author: Steven G. Johnson <stevenj@fftw.org>
13652 Date: Wed Feb 12 17:19:56 2003 -0500
13653
13654 shorter synopsis
13655
13656 commit 73464a04bcc91f1244cca8812515833da6cad60c
13657 Author: Steven G. Johnson <stevenj@fftw.org>
13658 Date: Wed Feb 12 12:53:19 2003 -0500
13659
13660 obsolete
13661
13662 commit f235c4cdb767ed752563b5a12b609f4a606ae89d
13663 Author: Steven G. Johnson <stevenj@fftw.org>
13664 Date: Wed Feb 12 12:52:53 2003 -0500
13665
13666 removed old dotens
13667
13668 commit 1b45907552bf8c3c7e91e77b9256f904a7dc46db
13669 Author: Steven G. Johnson <stevenj@fftw.org>
13670 Date: Wed Feb 12 12:52:16 2003 -0500
13671
13672 removed old verify files
13673
13674 commit d2baa62fc65ce7b8c09581f2feaacd90466c07e2
13675 Author: Steven G. Johnson <stevenj@fftw.org>
13676 Date: Wed Feb 12 12:37:17 2003 -0500
13677
13678 disable threads support by default
13679
13680 commit 6fc7d66c60a2e9bfbac7bba821b5329c9fde4b0b
13681 Author: Matteo Frigo <athena@fftw.org>
13682 Date: Wed Feb 12 11:03:28 2003 -0500
13683
13684 Removed old test program
13685
13686 commit 948df3a1949a1a5d9d8924a1c51c49d015477b73
13687 Author: Steven G. Johnson <stevenj@fftw.org>
13688 Date: Tue Feb 11 22:30:55 2003 -0500
13689
13690 joke
13691
13692 commit 06377bf381dbb2e1a05674678924168ee9235d46
13693 Author: Steven G. Johnson <stevenj@fftw.org>
13694 Date: Tue Feb 11 22:27:44 2003 -0500
13695
13696 add --help and --version, to be GNU-lly correct
13697
13698 commit c59c2fb43df57981f39141efe881ade700dffb3f
13699 Author: Steven G. Johnson <stevenj@fftw.org>
13700 Date: Tue Feb 11 22:27:18 2003 -0500
13701
13702 whoops
13703
13704 commit ecc46199c7967a7164deaa4f6be2ad734eb6c986
13705 Author: Steven G. Johnson <stevenj@fftw.org>
13706 Date: Tue Feb 11 22:17:35 2003 -0500
13707
13708 better help
13709
13710 commit e73d1cfefcfdffa9a318c184463973e309e1f421
13711 Author: Steven G. Johnson <stevenj@fftw.org>
13712 Date: Tue Feb 11 21:47:35 2003 -0500
13713
13714 comma
13715
13716 commit dc27e6924a7f6e054e0d542d855d4f62c9545ce2
13717 Author: Steven G. Johnson <stevenj@fftw.org>
13718 Date: Tue Feb 11 21:46:12 2003 -0500
13719
13720 formatting
13721
13722 commit 06c5acf858b96e548a3d5664252103486c5dbb5e
13723 Author: Steven G. Johnson <stevenj@fftw.org>
13724 Date: Tue Feb 11 21:45:23 2003 -0500
13725
13726 man pages for tools
13727
13728 commit d643ece55b08510928523882ac2213361d1eaf43
13729 Author: Steven G. Johnson <stevenj@fftw.org>
13730 Date: Tue Feb 11 19:07:12 2003 -0500
13731
13732 added -V
13733
13734 commit ad12cdca62eb5030d1388f12f7278fd1a3eb8a3a
13735 Author: Steven G. Johnson <stevenj@fftw.org>
13736 Date: Tue Feb 11 18:42:17 2003 -0500
13737
13738 added install-wisdom target
13739
13740 commit 83162f468afd0941a99c408ae84e6c35ce43dbb3
13741 Author: Steven G. Johnson <stevenj@fftw.org>
13742 Date: Tue Feb 11 18:23:02 2003 -0500
13743
13744 another note
13745
13746 commit 52735853d05221978df609981a95f9d89ec03c0a
13747 Author: Steven G. Johnson <stevenj@fftw.org>
13748 Date: Tue Feb 11 17:32:56 2003 -0500
13749
13750 started r2r accuracy tests (only three kinds covered so far)
13751
13752 commit 6fb598e12ddd2e595289c0d399cd7c283425540b
13753 Author: Steven G. Johnson <stevenj@fftw.org>
13754 Date: Mon Feb 10 22:04:18 2003 -0500
13755
13756 silence warning
13757
13758 commit b94eaa910fb2a707a185e743514f009a77663600
13759 Author: Matteo Frigo <athena@fftw.org>
13760 Date: Mon Feb 10 20:55:20 2003 -0500
13761
13762 gcc bug is now avoided.
13763
13764 commit d142433a2935361da613eef685c306e1f86ef8cb
13765 Author: Matteo Frigo <athena@fftw.org>
13766 Date: Mon Feb 10 20:37:54 2003 -0500
13767
13768 Accuracy test
13769
13770 commit 3e6c6925a0daf524ddff6ef711ebe2dbf07ebda2
13771 Author: Matteo Frigo <athena@fftw.org>
13772 Date: Mon Feb 10 07:59:57 2003 -0500
13773
13774 There is no point in precomputing strides for the long-double code, as
13775 multiplication by sizeof(long double) cannot be folded into the
13776 addressing mode. This change also fixes the gcc-2.95 bug that causes
13777 miscompilation of certain codelets.
13778
13779 commit 1cdf3be30717cb411fcb7272628ab72dc31ea3d0
13780 Author: Steven G. Johnson <stevenj@fftw.org>
13781 Date: Mon Feb 10 02:54:35 2003 -0500
13782
13783 added random r2r tests
13784
13785 commit 13fd49dc504be79d65f5c3b254b08572689fcd71
13786 Author: Steven G. Johnson <stevenj@fftw.org>
13787 Date: Mon Feb 10 02:44:58 2003 -0500
13788
13789 whoops, bugfix: missing stride for ro10
13790
13791 commit f0926d171845f84e02584361b0a6a9b6c4d68e71
13792 Author: Steven G. Johnson <stevenj@fftw.org>
13793 Date: Mon Feb 10 02:21:50 2003 -0500
13794
13795 formatting
13796
13797 commit 2ec7cca77de0ed39b104a090158f4f3994f18343
13798 Author: Steven G. Johnson <stevenj@fftw.org>
13799 Date: Sun Feb 9 23:24:52 2003 -0500
13800
13801 flop counts for reodft
13802
13803 commit 1ec87d09b3698d5c2093d8436ea885225d67191a
13804 Author: Steven G. Johnson <stevenj@fftw.org>
13805 Date: Sun Feb 9 23:22:15 2003 -0500
13806
13807 declare aligned_main
13808
13809 commit 9c3374ad54ec97ed408760b77234ea4980fcd311
13810 Author: Steven G. Johnson <stevenj@fftw.org>
13811 Date: Sun Feb 9 20:56:06 2003 -0500
13812
13813 corrected rader op counts
13814
13815 commit 6803f88282e3117c77721aff1a96515236b27fb9
13816 Author: Steven G. Johnson <stevenj@fftw.org>
13817 Date: Sun Feb 9 20:25:32 2003 -0500
13818
13819 punctuation
13820
13821 commit e8cbdde425f97261b79551ea78f87322a4983bf3
13822 Author: Steven G. Johnson <stevenj@fftw.org>
13823 Date: Sun Feb 9 20:25:17 2003 -0500
13824
13825 noted need for better estimator
13826
13827 commit 156eefce1a365107071ac016b4c818354a98e60b
13828 Author: Steven G. Johnson <stevenj@fftw.org>
13829 Date: Sun Feb 9 19:58:59 2003 -0500
13830
13831 noted F77 api fix for g77 mangling incompatibility
13832
13833 commit e160cbe881f0f509fa09e6eedd76141b439c3ad9
13834 Author: Steven G. Johnson <stevenj@fftw.org>
13835 Date: Sun Feb 9 19:30:55 2003 -0500
13836
13837 build f77 header file of constants from fftw3.h
13838
13839 commit 370b6e68c535ab81d29047d5fd3a9a48f7e3ebec
13840 Author: Steven G. Johnson <stevenj@fftw.org>
13841 Date: Sun Feb 9 19:04:53 2003 -0500
13842
13843 updates
13844
13845 commit f2c761d6d435ea22fc390b1e388dc0d01a747bd4
13846 Author: Steven G. Johnson <stevenj@fftw.org>
13847 Date: Sun Feb 9 19:03:34 2003 -0500
13848
13849 threads f77 api
13850
13851 commit b84617e3c6d025d4f13cfa3056ddbdbd5227b961
13852 Author: Steven G. Johnson <stevenj@fftw.org>
13853 Date: Sun Feb 9 18:54:00 2003 -0500
13854
13855 finished f77 serial api
13856
13857 commit 86446f99fc266c435826ab0f0ca77b48117dd21f
13858 Author: Steven G. Johnson <stevenj@fftw.org>
13859 Date: Sun Feb 9 18:32:26 2003 -0500
13860
13861 added flops, slight cleanups
13862
13863 commit b02c6ea6492b370ac0dde405bc4d899b3b4d4ab7
13864 Author: Matteo Frigo <athena@fftw.org>
13865 Date: Sun Feb 9 18:11:48 2003 -0500
13866
13867 Oops, forgot #include
13868
13869 commit 218af736c45f2ac117c4fe70c79029a7bb26ae33
13870 Author: Matteo Frigo <athena@fftw.org>
13871 Date: Sun Feb 9 18:08:26 2003 -0500
13872
13873 Removed duplication of stack-alignment code
13874
13875 commit 5b5fc6186df8fa5214ae22ebaf84922aab584d90
13876 Author: Steven G. Johnson <stevenj@fftw.org>
13877 Date: Sun Feb 9 15:48:15 2003 -0500
13878
13879 allow - to read problems from stdin
13880
13881 commit c8e7f4b0b4ed904a7dc8b474f220d17bd061809e
13882 Author: Steven G. Johnson <stevenj@fftw.org>
13883 Date: Sun Feb 9 15:22:23 2003 -0500
13884
13885 added fftw-wisdom tool
13886
13887 commit 216bb0693d91019be789666644d90c1f9afde7a5
13888 Author: Steven G. Johnson <stevenj@fftw.org>
13889 Date: Sun Feb 9 15:06:38 2003 -0500
13890
13891 elim. warning
13892
13893 commit 8ff159c3583032eb2b661bb50b34d77344f1898e
13894 Author: Steven G. Johnson <stevenj@fftw.org>
13895 Date: Sun Feb 9 14:24:19 2003 -0500
13896
13897 destroy_input should not contaminate flags of other problems
13898
13899 commit c1e578a3c33cee071a10e2f8f49a5dd29f4749ae
13900 Author: Steven G. Johnson <stevenj@fftw.org>
13901 Date: Sun Feb 9 13:06:11 2003 -0500
13902
13903 updated
13904
13905 commit 8b09de262bcd31d3ef04cff36791c389f75b733b
13906 Author: Steven G. Johnson <stevenj@fftw.org>
13907 Date: Sun Feb 9 13:01:45 2003 -0500
13908
13909 removed overzealous inplace check, which caused problems for rdft2
13910
13911 commit bfb7a5cab2f68265d33dea80716baec602a7c5ef
13912 Author: Matteo Frigo <athena@fftw.org>
13913 Date: Sun Feb 9 08:14:03 2003 -0500
13914
13915 Consistent syntax for RNK_MINFTY tensors
13916
13917 commit 0f87db2efc6a2d72c3bb8584c195ee3682e09870
13918 Author: Matteo Frigo <athena@fftw.org>
13919 Date: Sun Feb 9 07:31:13 2003 -0500
13920
13921 lisply-correct tensor print. We no longer need to parse tensors.
13922
13923 commit 14826af57fa8cd1490d3d4d8111e64336ad638a4
13924 Author: Steven G. Johnson <stevenj@fftw.org>
13925 Date: Sun Feb 9 03:35:56 2003 -0500
13926
13927 removed completed items
13928
13929 commit ba72775e69c1b4ff00b77a37bd0c80312bcc072f
13930 Author: Steven G. Johnson <stevenj@fftw.org>
13931 Date: Sun Feb 9 03:27:56 2003 -0500
13932
13933 slight renaming
13934
13935 commit a96011aa06fe98812ad45afba51a6f1c3ceeab31
13936 Author: Steven G. Johnson <stevenj@fftw.org>
13937 Date: Sun Feb 9 03:15:28 2003 -0500
13938
13939 multi-dimensional r2r verifier
13940
13941 commit d2c2e3058ab81d087848fdd251e8bb6e92416710
13942 Author: Steven G. Johnson <stevenj@fftw.org>
13943 Date: Sun Feb 9 02:40:22 2003 -0500
13944
13945 comments
13946
13947 commit 5553af4969fd029313dc53f63201fa9c40acd051
13948 Author: Steven G. Johnson <stevenj@fftw.org>
13949 Date: Sun Feb 9 02:38:26 2003 -0500
13950
13951 slight simplification
13952
13953 commit 8aa7d693d055305129c2518385e9816529c9a334
13954 Author: Steven G. Johnson <stevenj@fftw.org>
13955 Date: Sun Feb 9 02:36:25 2003 -0500
13956
13957 added 1d r2r verifier (triple ugh)
13958
13959 commit ef489a80e6559cf2828da23340df129302681dd5
13960 Author: Steven G. Johnson <stevenj@fftw.org>
13961 Date: Sat Feb 8 22:23:00 2003 -0500
13962
13963 added vector transforms to random tests
13964
13965 commit 826567b4d872cb6920840a850e0a584e0cc015e9
13966 Author: Steven G. Johnson <stevenj@fftw.org>
13967 Date: Sat Feb 8 20:59:07 2003 -0500
13968
13969 whoops
13970
13971 commit b4d28e3488a63128b0ad1500d2e8b5777eadc8e4
13972 Author: Steven G. Johnson <stevenj@fftw.org>
13973 Date: Sat Feb 8 19:52:58 2003 -0500
13974
13975 fixed interaction between dwims for sz/vecsz with rdft2 transforms
13976
13977 commit 0c8c54737beaa3db6a119769716f40416ddc7718
13978 Author: Steven G. Johnson <stevenj@fftw.org>
13979 Date: Sat Feb 8 19:35:56 2003 -0500
13980
13981 added destroy_input flag/check
13982
13983 commit 0e205231678541426c1a0bcd61b0442e7e24ad4a
13984 Author: Steven G. Johnson <stevenj@fftw.org>
13985 Date: Sat Feb 8 19:11:58 2003 -0500
13986
13987 added rdft2 verifier
13988
13989 commit a20a05830b52221eda2f16ab7da1dc80e0e5a050
13990 Author: Steven G. Johnson <stevenj@fftw.org>
13991 Date: Sat Feb 8 13:31:14 2003 -0500
13992
13993 an additional check for in-place case
13994
13995 commit 6096b268ec7fb9e5c1ad5d41aff355e8f674fd22
13996 Author: Steven G. Johnson <stevenj@fftw.org>
13997 Date: Fri Feb 7 17:36:56 2003 -0500
13998
13999 slight fix: hc2r constraints are mostly determined by sub-plan
14000
14001 commit 668b0af47a07011aaa3202ee70d3588aeca0ddd9
14002 Author: Steven G. Johnson <stevenj@fftw.org>
14003 Date: Fri Feb 7 16:28:55 2003 -0500
14004
14005 make radix2-dft inapplicable to in-place/split case (r == rio, iio >= rio + n/2+1 != r + 1)
14006
14007 commit 533f0a1824842664dfe63287e03800c2426b8ba5
14008 Author: Matteo Frigo <athena@fftw.org>
14009 Date: Tue Feb 4 06:36:29 2003 -0500
14010
14011 Allow plnr->hook to be 0
14012
14013 commit 5c89a91a0efc3714980409d12055f91a2bd33693
14014 Author: Steven G. Johnson <stevenj@fftw.org>
14015 Date: Tue Feb 4 03:25:36 2003 -0500
14016
14017 moved dft stuff into verify-dft
14018
14019 commit 941da36d0fa1562ef98fd796b05c0a8a94c4ff94
14020 Author: Steven G. Johnson <stevenj@fftw.org>
14021 Date: Tue Feb 4 03:25:00 2003 -0500
14022
14023 cruft
14024
14025 commit 727cc86ece827ba21a236149c66ef6c7e7890d6b
14026 Author: Steven G. Johnson <stevenj@fftw.org>
14027 Date: Tue Feb 4 03:18:28 2003 -0500
14028
14029 further unify libbench2 and paranoid verifiers
14030
14031 commit 6fb68912913cd9ab647b0206a713470e1bad462b
14032 Author: Steven G. Johnson <stevenj@fftw.org>
14033 Date: Sun Feb 2 01:45:37 2003 -0500
14034
14035 typo in comment
14036
14037 commit 3d1a5701f571ec275672faf3da2d7ea6f1e34b93
14038 Author: Matteo Frigo <athena@fftw.org>
14039 Date: Sat Feb 1 09:30:03 2003 -0500
14040
14041 Fixed p==2 case
14042
14043 commit 723093b36b481e0f742822129f33998ba5acff14
14044 Author: Matteo Frigo <athena@fftw.org>
14045 Date: Sat Feb 1 09:23:43 2003 -0500
14046
14047 Incorporated new find_generator by Greg Dionne.
14048
14049 commit 93a75fda2dad56fbf69030eabdb09af0987e5316
14050 Author: Matteo Frigo <athena@fftw.org>
14051 Date: Fri Jan 31 20:46:24 2003 -0500
14052
14053 Removed nonportable call to gettext()
14054
14055 commit 0d937fc4f0800cdad67d7a6a496c30c67c70b0ae
14056 Author: Matteo Frigo <athena@fftw.org>
14057 Date: Wed Jan 29 19:03:43 2003 -0500
14058
14059 uintptr_t is in <inttypes.h> in openbsd
14060
14061 commit 9ffa4f6b400e1818a4c50a1385d916d501ff16b7
14062 Author: Matteo Frigo <athena@fftw.org>
14063 Date: Wed Jan 29 15:41:56 2003 -0500
14064
14065 Huge speedups in wisdom I/O.
14066
14067 commit 426e786cc0662f3926cd79d3d76b0825a65ff445
14068 Author: Matteo Frigo <athena@fftw.org>
14069 Date: Tue Jan 28 19:36:51 2003 -0500
14070
14071 Added appropriate warning against likely future bug.
14072
14073 commit b254ecc51abc22f1642e0bae9d6d22fbb2efb771
14074 Author: Matteo Frigo <athena@fftw.org>
14075 Date: Tue Jan 28 19:00:24 2003 -0500
14076
14077 Don't attempt to remove bogus wisdom entries.
14078
14079 commit c19570082c79ce6d86613248e700ee17bb3582b8
14080 Author: Matteo Frigo <athena@fftw.org>
14081 Date: Tue Jan 28 18:16:24 2003 -0500
14082
14083 Fixed a couple of very very very nasty bugs---pointers became
14084 invalid after the hash table was relocated.
14085
14086 commit 123972fa083c9fb07f18c3ee3a902a79606f5987
14087 Author: Matteo Frigo <athena@fftw.org>
14088 Date: Tue Jan 28 07:34:10 2003 -0500
14089
14090 Read wisdom at can_do() time, otherwise wisdom is destroyed.
14091
14092 commit d1e805e6353a689a61b6aec66a28d568723717fc
14093 Author: Matteo Frigo <athena@fftw.org>
14094 Date: Tue Jan 28 06:54:38 2003 -0500
14095
14096 More conservative inheritance of blessings
14097
14098 commit e718fe3fa7a7c4194011493e0bd86b78b222c0b9
14099 Author: Matteo Frigo <athena@fftw.org>
14100 Date: Tue Jan 28 06:50:20 2003 -0500
14101
14102 Print the same info as it is hashed
14103
14104 commit 84199fe5035171395b24754b6f4428513b850e84
14105 Author: Matteo Frigo <athena@fftw.org>
14106 Date: Tue Jan 28 06:49:48 2003 -0500
14107
14108 Print name of executable when FAILURE
14109
14110 commit 3919d8a49fb4779e470deefd35cc3c7fc09c20ce
14111 Author: Matteo Frigo <athena@fftw.org>
14112 Date: Mon Jan 27 06:59:40 2003 -0500
14113
14114 New NO_SEARCH planner flag, which avoids searching altogether.
14115 A wisdom entry must lead to a NO_SEARCH-grade plan, or else the
14116 wisdom entry is bogus.
14117
14118 commit 9534126e49e082098917ef5500133d8ef8a7289a
14119 Author: Matteo Frigo <athena@fftw.org>
14120 Date: Sun Jan 26 20:45:21 2003 -0500
14121
14122 Use cosl()/sinl() when appropriate
14123
14124 commit 5cc66fc2964feb54cff148e70280c083715d371f
14125 Author: Matteo Frigo <athena@fftw.org>
14126 Date: Sun Jan 26 16:29:18 2003 -0500
14127
14128 Use null pointers when estimating. The estimator should never
14129 time anything.
14130
14131 commit 8a54d02af36535be471d8326bf4e061165295320
14132 Author: Steven G. Johnson <stevenj@fftw.org>
14133 Date: Sun Jan 26 15:19:01 2003 -0500
14134
14135 note
14136
14137 commit 127681d03bd37c45649032138e7c976ec3395c99
14138 Author: Steven G. Johnson <stevenj@fftw.org>
14139 Date: Sun Jan 26 15:16:22 2003 -0500
14140
14141 support multiple mangling schemes with g77
14142
14143 commit 757b13e27cfe6317d5c871796c129ec5b693e89b
14144 Author: Steven G. Johnson <stevenj@fftw.org>
14145 Date: Sun Jan 26 12:58:57 2003 -0500
14146
14147 fixed verbose, made random tests only use selected rank, use rank <= 4, fixed final flush_problems call
14148
14149 commit c379edca317112097e76dacd0dfb69c83c319023
14150 Author: Steven G. Johnson <stevenj@fftw.org>
14151 Date: Sun Jan 26 12:42:49 2003 -0500
14152
14153 fixed typo (count instead of maxcount)
14154
14155 commit 6c0c2a4aac442f27536a584f1e619c69f6aa7ca6
14156 Author: Steven G. Johnson <stevenj@fftw.org>
14157 Date: Sun Jan 26 12:12:07 2003 -0500
14158
14159 hypot is no longer used
14160
14161 commit 8466e0fb929081a67acbe832ddd155f33ee13734
14162 Author: Steven G. Johnson <stevenj@fftw.org>
14163 Date: Sun Jan 26 12:07:43 2003 -0500
14164
14165 check for _alloca (MSVC)
14166
14167 commit 34321edf6b705ea8f04c0ac903baf9a2d0239cd2
14168 Author: Steven G. Johnson <stevenj@fftw.org>
14169 Date: Sun Jan 26 11:56:53 2003 -0500
14170
14171 slight fix in assert
14172
14173 commit c099d12f16d6131750ccde572b7651661b84881b
14174 Author: Matteo Frigo <athena@fftw.org>
14175 Date: Sun Jan 26 11:55:39 2003 -0500
14176
14177 Allocate problem in all cases--- can_do may need correct pointers.
14178
14179 commit 93ba509b275e8a2b798b237dae50927c04da5b74
14180 Author: Matteo Frigo <athena@fftw.org>
14181 Date: Sun Jan 26 11:51:27 2003 -0500
14182
14183 Nastier checks
14184
14185 commit 91419140c877e227d804c4cbb18cb89b350527b3
14186 Author: Matteo Frigo <athena@fftw.org>
14187 Date: Sun Jan 26 11:51:16 2003 -0500
14188
14189 X(use_plan) is a relic.
14190
14191 commit 9cc664aacbc213b2cdbca13e686ca9f15f4d89f4
14192 Author: Matteo Frigo <athena@fftw.org>
14193 Date: Sun Jan 26 09:23:16 2003 -0500
14194
14195 Print full pathname of the bench executable, so that I don't get
14196 confused when running multiple tests for different configurations.
14197
14198 commit a755e0b1e768f7624d20ba4d564d9b658fc8aa45
14199 Author: Matteo Frigo <athena@fftw.org>
14200 Date: Sun Jan 26 07:35:46 2003 -0500
14201
14202 Split done() into done() and cleanup(), in order to test
14203 multiple problems with the same planner from the command line.
14204
14205 commit c9a2310aa41b815190cd73c801d28f6b68635734
14206 Author: Matteo Frigo <athena@fftw.org>
14207 Date: Sat Jan 25 20:44:49 2003 -0500
14208
14209 Improved readability
14210
14211 commit 6a7d0ba4578fa4f1989e521e80cd1504dddb5ff9
14212 Author: Steven G. Johnson <stevenj@fftw.org>
14213 Date: Sat Jan 25 19:17:26 2003 -0500
14214
14215 comment
14216
14217 commit 7e5332d67aa4dd505518874798560834170c2d1c
14218 Author: Steven G. Johnson <stevenj@fftw.org>
14219 Date: Sat Jan 25 19:16:53 2003 -0500
14220
14221 added macos9 mpallocatealigned function
14222
14223 commit f3bba67e15e3ff2cc63e615a97ef4161af9fbb6d
14224 Author: Steven G. Johnson <stevenj@fftw.org>
14225 Date: Sat Jan 25 18:59:55 2003 -0500
14226
14227 sometimes __APPLE__ is defined instead of __MACOSX__
14228
14229 commit eb44a626174b2c4b5a3b91799f929f087ab89b90
14230 Author: Steven G. Johnson <stevenj@fftw.org>
14231 Date: Sat Jan 25 18:54:39 2003 -0500
14232
14233 macos x malloc is already 16-byte aligned
14234
14235 commit e1f4dfe3d7d517b655cbf1d9f34910cf5b91f16f
14236 Author: Matteo Frigo <athena@fftw.org>
14237 Date: Sat Jan 25 13:38:32 2003 -0500
14238
14239 Include <sys/types.h> because uintptr_t is defined there
14240 on solaris.
14241
14242 commit 2e0d88fe660fa8d5dd70ac8b4d7ce327b8e3143a
14243 Author: Matteo Frigo <athena@fftw.org>
14244 Date: Sat Jan 25 13:22:59 2003 -0500
14245
14246 Oops---forgot getopt_long
14247
14248 commit 8ca5ca5adffa7f09e53fd6876720807c9e09b526
14249 Author: Matteo Frigo <athena@fftw.org>
14250 Date: Sat Jan 25 13:17:29 2003 -0500
14251
14252 Include default includes when checking for uintptr_t.
14253 (Otherwise solaris breaks.)
14254
14255 commit b2e7887137a70e836841860650f673a32d8fd0e0
14256 Author: Matteo Frigo <athena@fftw.org>
14257 Date: Sat Jan 25 12:39:52 2003 -0500
14258
14259 distribute check.pl
14260
14261 commit f523570817e6d4e02d1229eb4fae65aa54b39c90
14262 Author: Matteo Frigo <athena@fftw.org>
14263 Date: Sat Jan 25 12:38:34 2003 -0500
14264
14265 Check split format, too.
14266
14267 commit 4cf6b31bc1d606a85ebe86b81538440c32ba16d4
14268 Author: Matteo Frigo <athena@fftw.org>
14269 Date: Sat Jan 25 11:48:19 2003 -0500
14270
14271 New tests, added make check
14272
14273 commit cc595c7702af171d1850e32593ad093a1884fa98
14274 Author: Matteo Frigo <athena@fftw.org>
14275 Date: Thu Jan 23 08:34:24 2003 -0500
14276
14277 More tests
14278
14279 commit 132d24bf7371a5738a8703d6700452432c1ff8d6
14280 Author: Matteo Frigo <athena@fftw.org>
14281 Date: Tue Jan 21 20:32:12 2003 -0500
14282
14283 Deal with rnk(sz)=-infinity
14284
14285 commit dbf5eba2cfe458f7fa1853b8b73ac880f50268d3
14286 Author: Matteo Frigo <athena@fftw.org>
14287 Date: Tue Jan 21 10:07:16 2003 -0500
14288
14289 Crazy idea
14290
14291 commit 538d043b618e83f8c9dd443618e30fad09412560
14292 Author: Matteo Frigo <athena@fftw.org>
14293 Date: Tue Jan 21 07:14:22 2003 -0500
14294
14295 Test program, still barely worthy of the name.
14296
14297 commit bd13e47fca93beafd8c87bd039e4c7f6f9843cc0
14298 Author: Matteo Frigo <athena@fftw.org>
14299 Date: Mon Jan 20 08:29:21 2003 -0500
14300
14301 Stylistic changes
14302
14303 commit 7a7f938bfa0596d8a971476e304a584e80c9af3e
14304 Author: Matteo Frigo <athena@fftw.org>
14305 Date: Mon Jan 20 07:03:38 2003 -0500
14306
14307 Implemented flops api
14308
14309 commit 06f9de2ae48e8508332300af57ce4a892d5d7327
14310 Author: Steven G. Johnson <stevenj@fftw.org>
14311 Date: Sun Jan 19 14:27:21 2003 -0500
14312
14313 cleanup
14314
14315 commit 0004f3c1d04b2dbf2cd0c329464a761f513b17e8
14316 Author: Steven G. Johnson <stevenj@fftw.org>
14317 Date: Sun Jan 19 14:14:49 2003 -0500
14318
14319 'v' syntax now defaults to an 'internal' (stride 1) vector, which is a more interesting case and corresponds more closely to the intuitive notion of a 'vector' transform, while '*' does the old 'external' (stride n) vector
14320
14321 commit 3ae6aeb8ad69f728e24a22eaff8cb1c2d769dbfd
14322 Author: Steven G. Johnson <stevenj@fftw.org>
14323 Date: Sun Jan 19 13:55:35 2003 -0500
14324
14325 removed '/' overloading
14326
14327 commit 16e5b7c653597353fa972d5da6226e3d1c21f09c
14328 Author: Steven G. Johnson <stevenj@fftw.org>
14329 Date: Sun Jan 19 13:52:09 2003 -0500
14330
14331 get rid of '*' and ',' synonyms for 'x' in problem parser; there's no need to clutter the namespace with syntax we never use
14332
14333 commit fe570b1a3ef49b842a35c74088e1893023c924a3
14334 Author: Matteo Frigo <athena@fftw.org>
14335 Date: Sun Jan 19 07:28:27 2003 -0500
14336
14337 Signed/unsigned fixes.
14338
14339 commit 39087e0b7d51d64ce70403c94042723a27ebd90e
14340 Author: Matteo Frigo <athena@fftw.org>
14341 Date: Sun Jan 19 07:09:54 2003 -0500
14342
14343 Test split arrays.
14344
14345 commit f5c448ba8c68ad9343a147b9ee0edddd48101248
14346 Author: Steven G. Johnson <stevenj@fftw.org>
14347 Date: Sat Jan 18 23:46:57 2003 -0500
14348
14349 clarification
14350
14351 commit ce827c93bd4b66fca1e4c6925c9638fc061f2a9c
14352 Author: Steven G. Johnson <stevenj@fftw.org>
14353 Date: Sat Jan 18 21:53:18 2003 -0500
14354
14355 caps
14356
14357 commit 8e0bc243bfa4a19e901e09af2175220823a29fda
14358 Author: Steven G. Johnson <stevenj@fftw.org>
14359 Date: Sat Jan 18 21:52:51 2003 -0500
14360
14361 brackets
14362
14363 commit 205193db72e85418b6db84064c2d0c417d3622ae
14364 Author: Steven G. Johnson <stevenj@fftw.org>
14365 Date: Sat Jan 18 21:52:32 2003 -0500
14366
14367 quote
14368
14369 commit 53b6dc0784f2f573114f99a64e3c3a3f5c25d144
14370 Author: Steven G. Johnson <stevenj@fftw.org>
14371 Date: Sat Jan 18 20:53:11 2003 -0500
14372
14373 referencing
14374
14375 commit dc903b262a3cdbfacda95f8cacf08a79b26a3725
14376 Author: Steven G. Johnson <stevenj@fftw.org>
14377 Date: Sat Jan 18 20:33:28 2003 -0500
14378
14379 fix
14380
14381 commit 34867e8b93f1464aeb74afe7a57e6db29a6bf6ef
14382 Author: Steven G. Johnson <stevenj@fftw.org>
14383 Date: Sat Jan 18 20:31:41 2003 -0500
14384
14385 slight change
14386
14387 commit de2f4e199030747045d6b15f10f81015e6fa77c9
14388 Author: Matteo Frigo <athena@fftw.org>
14389 Date: Sat Jan 18 20:31:22 2003 -0500
14390
14391 Print errors when --verify.
14392
14393 commit a241dce3b13972ae124686d2a73d6845172dca10
14394 Author: Steven G. Johnson <stevenj@fftw.org>
14395 Date: Sat Jan 18 20:30:27 2003 -0500
14396
14397 improved description, noted that FFTW_ESTIMATE does not destroy arrays
14398
14399 commit de9ad7da59f6f405cb9698340a708c51879074fa
14400 Author: Steven G. Johnson <stevenj@fftw.org>
14401 Date: Sat Jan 18 20:23:12 2003 -0500
14402
14403 FFTW_DEFAULTS isn't really needed
14404
14405 commit 742ec9578cb87f7e8640c998b6455f0c1347cbad
14406 Author: Steven G. Johnson <stevenj@fftw.org>
14407 Date: Sat Jan 18 20:21:09 2003 -0500
14408
14409 added FFTW_MEASURE synonym for FFTW_DEFAULTS
14410
14411 commit 7e4c0117633ecc6c774e5747fb88e5d9b901ade1
14412 Author: Steven G. Johnson <stevenj@fftw.org>
14413 Date: Sat Jan 18 20:18:29 2003 -0500
14414
14415 slight change
14416
14417 commit 1f5d8e6883c07b8b55b3ccdd76728dba0db83b51
14418 Author: Matteo Frigo <athena@fftw.org>
14419 Date: Sat Jan 18 20:16:08 2003 -0500
14420
14421 Clearer name
14422
14423 commit 72f6ff219f76d5836c974d7739c9deb1fdaae1b1
14424 Author: Matteo Frigo <athena@fftw.org>
14425 Date: Sat Jan 18 20:13:14 2003 -0500
14426
14427 Completed dft api test
14428
14429 commit d98d355d8025c3244f40cb21d3c13fd49b95bb31
14430 Author: Steven G. Johnson <stevenj@fftw.org>
14431 Date: Sat Jan 18 20:07:33 2003 -0500
14432
14433 index
14434
14435 commit 5abf9be2a1e971d3911958c2f2b0f830c1e94507
14436 Author: Steven G. Johnson <stevenj@fftw.org>
14437 Date: Sat Jan 18 20:05:50 2003 -0500
14438
14439 fix
14440
14441 commit 6ce8d648e9020903839bb75540e2c7f31c350a77
14442 Author: Steven G. Johnson <stevenj@fftw.org>
14443 Date: Sat Jan 18 20:04:11 2003 -0500
14444
14445 parallel structure
14446
14447 commit bf5e342ad8e4ec2778b7cb07e9fe04c3b88fef1c
14448 Author: Steven G. Johnson <stevenj@fftw.org>
14449 Date: Sat Jan 18 20:03:18 2003 -0500
14450
14451 fix
14452
14453 commit 27f73ffc519eca88af9d51fccafa9d0a9eaec3d7
14454 Author: Steven G. Johnson <stevenj@fftw.org>
14455 Date: Sat Jan 18 20:00:24 2003 -0500
14456
14457 joke
14458
14459 commit fc0561411a690340303ab579fe66b5b919e94706
14460 Author: Steven G. Johnson <stevenj@fftw.org>
14461 Date: Sat Jan 18 19:59:28 2003 -0500
14462
14463 recommendation to read tutorial in-order
14464
14465 commit 23f008eece1d5af1cc9aff5c21f16c4b78626a43
14466 Author: Steven G. Johnson <stevenj@fftw.org>
14467 Date: Sat Jan 18 19:54:55 2003 -0500
14468
14469 expanded outline
14470
14471 commit dd05ed963f2b3b6248a90c8a28ec92ed0748447f
14472 Author: Steven G. Johnson <stevenj@fftw.org>
14473 Date: Sat Jan 18 19:35:52 2003 -0500
14474
14475 clarification
14476
14477 commit 45f4203a263004153eb30c5e2b6d5fbf7d363ebe
14478 Author: Steven G. Johnson <stevenj@fftw.org>
14479 Date: Sat Jan 18 19:17:27 2003 -0500
14480
14481 draft complex-dft tutorial
14482
14483 commit a1cf23e6204a958c2adb5fa5ad6908ed9ae8d5aa
14484 Author: Matteo Frigo <athena@fftw.org>
14485 Date: Sat Jan 18 17:27:15 2003 -0500
14486
14487 Paranoid mode is back. Fixed dwim to do what I mean.
14488
14489 commit 02a981bcb005fd082e832f912a0d6970469af2db
14490 Author: Steven G. Johnson <stevenj@fftw.org>
14491 Date: Sat Jan 18 17:13:51 2003 -0500
14492
14493 started tut.
14494
14495 commit db27392f9335988028063634e188cd6e0329b2db
14496 Author: Matteo Frigo <athena@fftw.org>
14497 Date: Sat Jan 18 16:13:15 2003 -0500
14498
14499 Great renaming, so that we can include both bench-user.h and
14500 ifftw.h to implement the paranoid-mode hook.
14501
14502 commit 272ce9998c6c2ba1440c85c89adf525029c3713c
14503 Author: Matteo Frigo <athena@fftw.org>
14504 Date: Sat Jan 18 15:41:18 2003 -0500
14505
14506 Trying to tweak the verifier so that I can use it in
14507 bench.c for paranoid mode
14508
14509 commit 9406410c744c3d040dcf53cab0033e6289315e0d
14510 Author: Matteo Frigo <athena@fftw.org>
14511 Date: Sat Jan 18 10:24:05 2003 -0500
14512
14513 Added stride_factor for complex arrays.
14514
14515 commit be5440925e131346debad7cb5c52ec9ccca20838
14516 Author: Matteo Frigo <athena@fftw.org>
14517 Date: Sat Jan 18 10:02:11 2003 -0500
14518
14519 can_do now calls the planner.
14520
14521 commit 1c2aa801bd04200c319430596f26e33c57ade5b7
14522 Author: Matteo Frigo <athena@fftw.org>
14523 Date: Sat Jan 18 09:59:24 2003 -0500
14524
14525 Call guru api in bench.c
14526
14527 commit 5ccc685036846da380536544c08668012a62953a
14528 Author: Matteo Frigo <athena@fftw.org>
14529 Date: Sat Jan 18 08:17:23 2003 -0500
14530
14531 Fixed prototype.
14532
14533 commit 6a0efba859963432de8d7ddef8a68615fba215df
14534 Author: Matteo Frigo <athena@fftw.org>
14535 Date: Sat Jan 18 08:14:48 2003 -0500
14536
14537 Attempt to make the signed/unsigned use of flags consistent.
14538
14539 commit 6c6caca90a9df0f2f76cae61abf4d5b4108e5a16
14540 Author: Matteo Frigo <athena@fftw.org>
14541 Date: Sat Jan 18 08:03:07 2003 -0500
14542
14543 Implemented useropt.
14544
14545 commit 7165449ca5470fe7104141090f15d804f8fa3d58
14546 Author: Matteo Frigo <athena@fftw.org>
14547 Date: Sat Jan 18 08:02:05 2003 -0500
14548
14549 The first map_flags pass must be transitive, i.e., always use the
14550 latest flags value as opposed to the original value. (I think.)
14551
14552 commit b5ff8655a95e88173c98942113dedb0b8f293154
14553 Author: Matteo Frigo <athena@fftw.org>
14554 Date: Sat Jan 18 07:20:19 2003 -0500
14555
14556 Started working on verifier
14557
14558 commit 6c1864f54390a4ba6483dd6f6af716030275af40
14559 Author: Steven G. Johnson <stevenj@fftw.org>
14560 Date: Fri Jan 17 14:53:28 2003 -0500
14561
14562 added X(threads_cleanup)
14563
14564 commit 53ccbeeb98ce85aeee2dfdc73a79518dd428cabd
14565 Author: Matteo Frigo <athena@fftw.org>
14566 Date: Fri Jan 17 10:35:56 2003 -0500
14567
14568 Use C style for upper and lower array bounds. Free tensors properly.
14569
14570 commit 8f979d12529a8cdcbc19773db64b203d396667f3
14571 Author: Matteo Frigo <athena@fftw.org>
14572 Date: Fri Jan 17 08:50:42 2003 -0500
14573
14574 Fixed ambiguous syntax
14575
14576 commit b4a79fbfcd90a04148e114c3dc9ffeec57475b91
14577 Author: Matteo Frigo <athena@fftw.org>
14578 Date: Fri Jan 17 08:20:57 2003 -0500
14579
14580 Parse minus sign, bugfixes
14581
14582 commit 74b7faa7902bc94ba6a2cb2229b29a0ae7fc1ae6
14583 Author: Matteo Frigo <athena@fftw.org>
14584 Date: Fri Jan 17 08:11:56 2003 -0500
14585
14586 Skeleton libbench2 implemented (probably still buggy)
14587
14588 commit e589fb07c231478fcaac2ff1747634bf9f06ea8f
14589 Author: Matteo Frigo <athena@fftw.org>
14590 Date: Fri Jan 17 04:23:37 2003 -0500
14591
14592 Formatting
14593
14594 commit ca9524db0c137f154e83a76d36cf935f00674f2e
14595 Author: fftw <none>
14596 Date: Fri Jan 17 03:15:24 2003 -0500
14597
14598 slight updates
14599
14600 commit 9cf580eecfb6efdc94025f0016482c3b39e42d44
14601 Author: Steven G. Johnson <stevenj@fftw.org>
14602 Date: Fri Jan 17 01:44:44 2003 -0500
14603
14604 eliminated obsolete uimin/uimax
14605
14606 commit 43e7097cd5f50fec4d5cba68968062d735c70118
14607 Author: Steven G. Johnson <stevenj@fftw.org>
14608 Date: Fri Jan 17 01:40:10 2003 -0500
14609
14610 threads needs to have its own library, lest all programs linking to libfftw3.so need -lpthread
14611
14612 commit dfbd69e73262bfd32e4238660b05e9e66f2d4639
14613 Author: Steven G. Johnson <stevenj@fftw.org>
14614 Date: Thu Jan 16 19:53:46 2003 -0500
14615
14616 whoops
14617
14618 commit 2270fad47a873f34165771451625eb46b32f8934
14619 Author: Steven G. Johnson <stevenj@fftw.org>
14620 Date: Thu Jan 16 19:53:30 2003 -0500
14621
14622 better name
14623
14624 commit 90d92f5270d46d9e8f4775937e55433d425a5706
14625 Author: Steven G. Johnson <stevenj@fftw.org>
14626 Date: Thu Jan 16 19:52:36 2003 -0500
14627
14628 added more functions
14629
14630 commit 3f06842ca4733e7ecabf350ae1e679d52ed7698a
14631 Author: Steven G. Johnson <stevenj@fftw.org>
14632 Date: Thu Jan 16 16:57:06 2003 -0500
14633
14634 if 'long' is big enough, use it for mulmod in preference to 'long long'
14635
14636 commit 66e1948c825bca967b2ad7e6746242e8b23f2b00
14637 Author: Steven G. Johnson <stevenj@fftw.org>
14638 Date: Thu Jan 16 14:53:41 2003 -0500
14639
14640 use uintptr_t for pointer alignment arithmetic
14641
14642 commit 7eb1f83c40d65241a97769cbd182b979f54b3694
14643 Author: Matteo Frigo <athena@fftw.org>
14644 Date: Thu Jan 16 07:58:28 2003 -0500
14645
14646 More signed/unsigned cleanup
14647
14648 commit 45b331a5c2824f7d0d08df9385910c66db337edf
14649 Author: Matteo Frigo <athena@fftw.org>
14650 Date: Thu Jan 16 07:57:40 2003 -0500
14651
14652 null function pointers are technically nonportable
14653
14654 commit 67822e08115a08b056287208aa8db4cf8679eeb5
14655 Author: Matteo Frigo <athena@fftw.org>
14656 Date: Thu Jan 16 07:17:45 2003 -0500
14657
14658 Free short_options
14659
14660 commit 477c8d3241c4d9943d025ae59f9305a0b149231b
14661 Author: Matteo Frigo <athena@fftw.org>
14662 Date: Thu Jan 16 05:48:30 2003 -0500
14663
14664 Oops, forgot STACK_FREE
14665
14666 commit 0e20238b7462741468c08db5854a75106766b2ef
14667 Author: Matteo Frigo <athena@fftw.org>
14668 Date: Thu Jan 16 05:40:39 2003 -0500
14669
14670 Do not require memalign() unless HAVE_SIMD
14671
14672 commit e1ab6010079824a6d2eba12510455609646681fc
14673 Author: Steven G. Johnson <stevenj@fftw.org>
14674 Date: Thu Jan 16 01:03:31 2003 -0500
14675
14676 MS VC++ _aligned_malloc
14677
14678 commit b60bc7e076569eb05d30aea259d6d6347e6a2da0
14679 Author: Steven G. Johnson <stevenj@fftw.org>
14680 Date: Thu Jan 16 00:44:45 2003 -0500
14681
14682 added api fftw_malloc/free
14683
14684 commit fce03e8f76d32e4642d3e3abe4ace0d60e5e14f5
14685 Author: Steven G. Johnson <stevenj@fftw.org>
14686 Date: Thu Jan 16 00:43:48 2003 -0500
14687
14688 silence warning
14689
14690 commit 641795cb961dfc1336f70563c2c7ad1ed3192395
14691 Author: Steven G. Johnson <stevenj@fftw.org>
14692 Date: Wed Jan 15 22:39:04 2003 -0500
14693
14694 send error output to stderr
14695
14696 commit f6710096b2309498d0d21582380e4edf3f3cc75c
14697 Author: Matteo Frigo <athena@fftw.org>
14698 Date: Wed Jan 15 13:20:35 2003 -0500
14699
14700 Pure paranoia.
14701
14702 commit 91f5030882cd7a147a68a99634aa5e2b962998cf
14703 Author: Matteo Frigo <athena@fftw.org>
14704 Date: Wed Jan 15 06:51:34 2003 -0500
14705
14706 Fixed formatting that was messed up by the conversion uint->int.
14707 Ensure that iodims etc are kosher.
14708
14709 commit e013a32092d6ec5aa0e9f2d9ae6c26d4b8659c6f
14710 Author: Steven G. Johnson <stevenj@fftw.org>
14711 Date: Wed Jan 15 01:32:18 2003 -0500
14712
14713 added version stamp
14714
14715 commit 50b479b4aac66242696e7fd98f58455325526959
14716 Author: Steven G. Johnson <stevenj@fftw.org>
14717 Date: Wed Jan 15 01:28:20 2003 -0500
14718
14719 added warning
14720
14721 commit a1084fccb8215cfd46c69f6b5eeb7ff22f358d82
14722 Author: Steven G. Johnson <stevenj@fftw.org>
14723 Date: Wed Jan 15 01:23:25 2003 -0500
14724
14725 add fftw-wisdom-to-conf to BUILT_SOURCES
14726
14727 commit 4b8e34f3dba941ca2f59b9705ee49a9f29951906
14728 Author: Steven G. Johnson <stevenj@fftw.org>
14729 Date: Wed Jan 15 01:09:29 2003 -0500
14730
14731 added const
14732
14733 commit e3063ad93de5985a0cea8fcc35052dfdd31d3f24
14734 Author: Steven G. Johnson <stevenj@fftw.org>
14735 Date: Wed Jan 15 01:04:10 2003 -0500
14736
14737 added wisdom-to-conf
14738
14739 commit f1bc153c63191407f4af84ca6641b4153481abca
14740 Author: Steven G. Johnson <stevenj@fftw.org>
14741 Date: Wed Jan 15 00:23:36 2003 -0500
14742
14743 include type prefix in wisdom preamble
14744
14745 commit 564b63e0eb961ab85824847dd4171323d185f2d3
14746 Author: Steven G. Johnson <stevenj@fftw.org>
14747 Date: Wed Jan 15 00:02:31 2003 -0500
14748
14749 updates
14750
14751 commit eed0a2c1a6165c360b7f87ff1aa77341dc112be5
14752 Author: Steven G. Johnson <stevenj@fftw.org>
14753 Date: Tue Jan 14 23:59:26 2003 -0500
14754
14755 check the_plan before printing
14756
14757 commit b90c45ecd325b1cbb5821b7d22b7d1003a01e11b
14758 Author: Matteo Frigo <athena@fftw.org>
14759 Date: Tue Jan 14 21:10:25 2003 -0500
14760
14761 Eliminated those unsigned values that would break LP64 machines.
14762
14763 commit 2cfc97931df736f5090ba7eec7fa6d13686c6899
14764 Author: Steven G. Johnson <stevenj@fftw.org>
14765 Date: Tue Jan 14 15:14:29 2003 -0500
14766
14767 comments
14768
14769 commit 3b9adee3905d5c9686dd26e6af706297c57d3e6e
14770 Author: Matteo Frigo <athena@fftw.org>
14771 Date: Tue Jan 14 08:00:08 2003 -0500
14772
14773 Oops
14774
14775 commit b8ef56b0756c8db296926946f027105168ac91c9
14776 Author: Matteo Frigo <athena@fftw.org>
14777 Date: Tue Jan 14 07:59:14 2003 -0500
14778
14779 int/uint confusion
14780
14781 commit 4063890615e1ebdd337cd0b6b79e3d8c191f7ac7
14782 Author: Steven G. Johnson <stevenj@fftw.org>
14783 Date: Tue Jan 14 02:25:33 2003 -0500
14784
14785 updated introduction and some organization
14786
14787 commit 23ce88399655bc3c3f102fb81927f18f964381d7
14788 Author: Steven G. Johnson <stevenj@fftw.org>
14789 Date: Tue Jan 14 01:34:46 2003 -0500
14790
14791 whoops
14792
14793 commit b165736884413d29ac6ea2d63b7784ebf40c8400
14794 Author: Steven G. Johnson <stevenj@fftw.org>
14795 Date: Tue Jan 14 01:33:04 2003 -0500
14796
14797 newline
14798
14799 commit 02a1859f44c60c5452b4d9fb3e89ecdac0d57873
14800 Author: Steven G. Johnson <stevenj@fftw.org>
14801 Date: Tue Jan 14 00:23:04 2003 -0500
14802
14803 added win32 timer
14804
14805 commit d0e64f8319671968827241d6923c1dcc613734ec
14806 Author: Steven G. Johnson <stevenj@fftw.org>
14807 Date: Tue Jan 14 00:12:21 2003 -0500
14808
14809 sync with kernel/alloc.c
14810
14811 commit 1e179069c40aafd83bbaedf588ced907c60d8f7d
14812 Author: Steven G. Johnson <stevenj@fftw.org>
14813 Date: Tue Jan 14 00:03:20 2003 -0500
14814
14815 handle missing F77_FUNC_
14816
14817 commit d1e7472bbe33eaf99e4464fea7629ea9dc2549d8
14818 Author: Steven G. Johnson <stevenj@fftw.org>
14819 Date: Mon Jan 13 17:42:50 2003 -0500
14820
14821 used fint instead of int to make Fortran integer type easier to change
14822
14823 commit 2a5dd8f944a6ed354d8245abf6cc67de05ca7457
14824 Author: Steven G. Johnson <stevenj@fftw.org>
14825 Date: Mon Jan 13 17:38:56 2003 -0500
14826
14827 slight abbreviation
14828
14829 commit 1371e68a5061a7de34681052e5c7f31139752046
14830 Author: Steven G. Johnson <stevenj@fftw.org>
14831 Date: Mon Jan 13 17:35:20 2003 -0500
14832
14833 the great lengthening, part I: int -> long in api; mv mktensor-rowmajor to api
14834
14835 commit 1011711ec3ed3d1252ee9ea5134e8e18a9925081
14836 Author: Steven G. Johnson <stevenj@fftw.org>
14837 Date: Mon Jan 13 15:23:22 2003 -0500
14838
14839 long types
14840
14841 commit 2f236bb6f4b8d4b68a2799c59eed45c3fa5d9bef
14842 Author: Matteo Frigo <athena@fftw.org>
14843 Date: Mon Jan 13 04:20:37 2003 -0500
14844
14845 Renamed fftw_malloc -> MALLOC, X(free) -> X(ifree), X(free0) ->
14846 X(ifree0), non_fftw_malloc -> NATIVE_MALLOC
14847
14848 commit ab8d02fc9ecab18a2639a0167616e782995592eb
14849 Author: Steven G. Johnson <stevenj@fftw.org>
14850 Date: Mon Jan 13 02:37:22 2003 -0500
14851
14852 added beginning of Fortran interface
14853
14854 commit f2c44ba05c22d8cab1e72c5393ba64e97fb4eb57
14855 Author: Steven G. Johnson <stevenj@fftw.org>
14856 Date: Mon Jan 13 01:05:29 2003 -0500
14857
14858 add fortran mangling check
14859
14860 commit 59c96c1e23c8b4b4830a0f1aa70d8715a57db138
14861 Author: Steven G. Johnson <stevenj@fftw.org>
14862 Date: Mon Jan 13 00:33:28 2003 -0500
14863
14864 added guru r2r interface
14865
14866 commit d1b297f4a235356f816342e21c1f69617d836a4f
14867 Author: Steven G. Johnson <stevenj@fftw.org>
14868 Date: Mon Jan 13 00:23:26 2003 -0500
14869
14870 whoops
14871
14872 commit 07839004aaa3e10e2493cf14fcaf6c603703ecf6
14873 Author: Steven G. Johnson <stevenj@fftw.org>
14874 Date: Mon Jan 13 00:16:20 2003 -0500
14875
14876 added r2r planner
14877
14878 commit f0e64dbc84dcd207fcf9ab13bf270707e878b9cb
14879 Author: Steven G. Johnson <stevenj@fftw.org>
14880 Date: Sun Jan 12 22:58:18 2003 -0500
14881
14882 more long-double checks
14883
14884 commit fc870a86543c6166b8f3c689278c3e6c429c8fb5
14885 Author: Steven G. Johnson <stevenj@fftw.org>
14886 Date: Sun Jan 12 20:01:51 2003 -0500
14887
14888 slight regrouping
14889
14890 commit 889820ff1b5fe4f8ccf4c0f321cbcfc6066facc6
14891 Author: Steven G. Johnson <stevenj@fftw.org>
14892 Date: Sun Jan 12 19:58:46 2003 -0500
14893
14894 added joke
14895
14896 commit 709357f9b9ad15dbc409491672174b0369364de5
14897 Author: Steven G. Johnson <stevenj@fftw.org>
14898 Date: Sun Jan 12 19:53:58 2003 -0500
14899
14900 simplified rdft2 padding
14901
14902 commit b724cc6adafccd6b09b69ea2433567634d2b18fc
14903 Author: Steven G. Johnson <stevenj@fftw.org>
14904 Date: Sun Jan 12 19:02:09 2003 -0500
14905
14906 added comment
14907
14908 commit f7e00499811c30295febdd6d70699c0bee9c2260
14909 Author: Steven G. Johnson <stevenj@fftw.org>
14910 Date: Sun Jan 12 18:54:49 2003 -0500
14911
14912 use latest api
14913
14914 commit 17dfd8a88bbd556d885e59de2c75f6ed10666ee3
14915 Author: Steven G. Johnson <stevenj@fftw.org>
14916 Date: Sun Jan 12 18:49:58 2003 -0500
14917
14918 nembed should only be in advanced (many) interface, not basic interface...only a handful of people over the years have ever requested that functionality.
14919
14920 commit de10a37b79b7222dff049d7b17a2f52c4d8818f7
14921 Author: Steven G. Johnson <stevenj@fftw.org>
14922 Date: Sun Jan 12 18:41:57 2003 -0500
14923
14924 impatient is default; generalize mapping functions using xor trick
14925
14926 commit d759ad32aae7ec487f4bacbacd50c36e9b9252de
14927 Author: Steven G. Johnson <stevenj@fftw.org>
14928 Date: Sun Jan 12 14:39:42 2003 -0500
14929
14930 use NULL nembed to signal padding
14931
14932 commit c52303f271b00a8388b368b13e26e492e34e8ac1
14933 Author: Steven G. Johnson <stevenj@fftw.org>
14934 Date: Sun Jan 12 14:23:00 2003 -0500
14935
14936 accept NULL nembed
14937
14938 commit 130e62b15d813a605dbe261661f3d4f73eefd869
14939 Author: Steven G. Johnson <stevenj@fftw.org>
14940 Date: Sun Jan 12 13:57:13 2003 -0500
14941
14942 added execute-dft-r2c/c2r
14943
14944 commit 1fd627fbdef40e0158d1880e765131d7316614eb
14945 Author: Steven G. Johnson <stevenj@fftw.org>
14946 Date: Sun Jan 12 13:43:20 2003 -0500
14947
14948 don't need dft.h
14949
14950 commit 116ca5713809a7a18bea146e4e1d2c13679f0570
14951 Author: Steven G. Johnson <stevenj@fftw.org>
14952 Date: Sun Jan 12 13:22:14 2003 -0500
14953
14954 tensors are compressed in the problem, duh
14955
14956 commit 2ede363d3dc04c22c6d801931c613f8acb365f20
14957 Author: Steven G. Johnson <stevenj@fftw.org>
14958 Date: Sun Jan 12 12:45:26 2003 -0500
14959
14960 noted that posix_memalign bug is now fixed, thanks to bug report by yours truly
14961
14962 commit aa78a752a45559c3cd10009619c38714715b4bd8
14963 Author: Matteo Frigo <athena@fftw.org>
14964 Date: Sun Jan 12 12:44:43 2003 -0500
14965
14966 Bug: n[3] instead of n[2]. Bug was propagated by copy-and-paste.
14967 Grrr...
14968
14969 commit da61449b6d55793e890eaf9246c2cef570656949
14970 Author: Matteo Frigo <athena@fftw.org>
14971 Date: Sun Jan 12 12:41:43 2003 -0500
14972
14973 Express plan_dft() in terms of plan_many_dft()
14974
14975 commit f50b2491505035d8da53cdc2f807f777ab7f2fa2
14976 Author: Steven G. Johnson <stevenj@fftw.org>
14977 Date: Sun Jan 12 12:19:53 2003 -0500
14978
14979 whoops
14980
14981 commit 91650cec6fb479345ace984c86a3d0bf8dd45fa3
14982 Author: Matteo Frigo <athena@fftw.org>
14983 Date: Sun Jan 12 06:00:46 2003 -0500
14984
14985 Manual skeleton.
14986
14987 commit 58983b0fcb5dde376eef5290f5afeda420bb3516
14988 Author: Steven G. Johnson <stevenj@fftw.org>
14989 Date: Sat Jan 11 23:46:34 2003 -0500
14990
14991 added r2c/c2r guru api
14992
14993 commit 7ab4791d61cf0a563110b7c4458f092ad3209452
14994 Author: Steven G. Johnson <stevenj@fftw.org>
14995 Date: Sat Jan 11 23:42:10 2003 -0500
14996
14997 FFTW_DESTROY_INPUT is default for c2r transforms
14998
14999 commit 702d37e3aa20ac9e2007f9415a6c09875dc58eec
15000 Author: Steven G. Johnson <stevenj@fftw.org>
15001 Date: Sat Jan 11 23:36:26 2003 -0500
15002
15003 added more of r2c/c2r api
15004
15005 commit 877b1c30a8de302c16d17618928ea9eeafa1d840
15006 Author: Steven G. Johnson <stevenj@fftw.org>
15007 Date: Sat Jan 11 21:09:41 2003 -0500
15008
15009 r2c doesn't have adjustible sign
15010
15011 commit d7e17c10e9b94495bf5b8d91ee938bddb15a778f
15012 Author: Steven G. Johnson <stevenj@fftw.org>
15013 Date: Sat Jan 11 21:07:55 2003 -0500
15014
15015 note that copyright year is out of date
15016
15017 commit 414ef3efe34a68c1d1886ebc7bf3696c9888312d
15018 Author: Steven G. Johnson <stevenj@fftw.org>
15019 Date: Sat Jan 11 21:04:23 2003 -0500
15020
15021 updated api for r2c
15022
15023 commit f55aa9fa016782becff68f499151eb9b1142f48c
15024 Author: Steven G. Johnson <stevenj@fftw.org>
15025 Date: Sat Jan 11 21:00:07 2003 -0500
15026
15027 removed annoying nophys == niphys case
15028
15029 commit 5ac383f909dedb9038b26d2534d1c50f831bb622
15030 Author: Steven G. Johnson <stevenj@fftw.org>
15031 Date: Sat Jan 11 20:58:13 2003 -0500
15032
15033 added basic r2c/c2r planner
15034
15035 commit 67a72b6fe3950808458f9db07fd17fdb5a23f174
15036 Author: Steven G. Johnson <stevenj@fftw.org>
15037 Date: Sat Jan 11 19:34:14 2003 -0500
15038
15039 dist should be in terms of complex values
15040
15041 commit 38330465de7aa72398c41e080a538abe90f11525
15042 Author: Steven G. Johnson <stevenj@fftw.org>
15043 Date: Sat Jan 11 19:14:24 2003 -0500
15044
15045 added plan-with-nthreads
15046
15047 commit 250cd26e00612f247ec647a8b1cd12757c6bc2dd
15048 Author: Steven G. Johnson <stevenj@fftw.org>
15049 Date: Sat Jan 11 19:12:51 2003 -0500
15050
15051 added function to set nthr
15052
15053 commit 2a3a928928d0a1a720099f63d46f9c9335e60d07
15054 Author: Steven G. Johnson <stevenj@fftw.org>
15055 Date: Sat Jan 11 18:04:57 2003 -0500
15056
15057 slight cleanup
15058
15059 commit c70d4ae24f18ed8573746982ded357d7a66e45d7
15060 Author: Steven G. Johnson <stevenj@fftw.org>
15061 Date: Sat Jan 11 17:57:29 2003 -0500
15062
15063 whoops
15064
15065 commit f6eead982eac7fba05e3e1b211e92218fa75ac0e
15066 Author: Steven G. Johnson <stevenj@fftw.org>
15067 Date: Sat Jan 11 17:55:39 2003 -0500
15068
15069 maxlen is maximum string length, not including null termination
15070
15071 commit 7d5ced1616625f49a8064e213c195cb0dfdfd015
15072 Author: Steven G. Johnson <stevenj@fftw.org>
15073 Date: Sat Jan 11 17:50:49 2003 -0500
15074
15075 imprt reverts hashtable on failure
15076
15077 commit 8b8397f47fca460f6f4d799ed4d3523dbb9febe4
15078 Author: Steven G. Johnson <stevenj@fftw.org>
15079 Date: Sat Jan 11 16:43:54 2003 -0500
15080
15081 slight move
15082
15083 commit ef10382faf88c76dbed1b15712ea4385f5c53d60
15084 Author: Steven G. Johnson <stevenj@fftw.org>
15085 Date: Sat Jan 11 16:34:56 2003 -0500
15086
15087 stdio.h should be inlcuded outside of extern "C"
15088
15089 commit a12b4db5cb652f45955ba8597ac6aad5494d10f2
15090 Author: Steven G. Johnson <stevenj@fftw.org>
15091 Date: Sat Jan 11 16:26:35 2003 -0500
15092
15093 added guru planner API
15094
15095 commit 6612a3a2112dc6db386ca1a7c9e80e0cdff8060a
15096 Author: Steven G. Johnson <stevenj@fftw.org>
15097 Date: Sat Jan 11 15:54:57 2003 -0500
15098
15099 added FFTW_FORWARD/BACKWARD
15100
15101 commit e9182c7a6103c19c79d2d457aadfd3cbafc8e7f8
15102 Author: Steven G. Johnson <stevenj@fftw.org>
15103 Date: Sat Jan 11 15:52:17 2003 -0500
15104
15105 added plan_many_dft
15106
15107 commit 93581dbc842eb787a6a1f514d9ae4a3af66da1ae
15108 Author: Steven G. Johnson <stevenj@fftw.org>
15109 Date: Sat Jan 11 15:44:37 2003 -0500
15110
15111 indenting
15112
15113 commit 4b42a448907aaef4bce3be179fe2676f89dc7580
15114 Author: Matteo Frigo <athena@fftw.org>
15115 Date: Sat Jan 11 14:49:08 2003 -0500
15116
15117 Final \n
15118
15119 commit 3174ca24fb957b047983215e5651a9f5db6a6687
15120 Author: Matteo Frigo <athena@fftw.org>
15121 Date: Sat Jan 11 14:47:31 2003 -0500
15122
15123 Do not compile if not defined(FFTW_DEBUG), in order to avoid
15124 unused code in the shared library.
15125
15126 commit e011c0ebee3524df3ebfe4c485e34247e5167ffd
15127 Author: Matteo Frigo <athena@fftw.org>
15128 Date: Sat Jan 11 14:45:56 2003 -0500
15129
15130 Implemented print_plan()
15131
15132 commit 83d6f1227a7413bf1cee8e8fda10b15569e6391f
15133 Author: Steven G. Johnson <stevenj@fftw.org>
15134 Date: Sat Jan 11 13:12:01 2003 -0500
15135
15136 changed the OOP-like plan_destroy to the more-grammatical destroy_plan
15137
15138 commit 7f9077eb88fc4deb6d8c1457988ad518ab450a92
15139 Author: Steven G. Johnson <stevenj@fftw.org>
15140 Date: Sat Jan 11 12:58:04 2003 -0500
15141
15142 added guru execute_dft
15143
15144 commit eb4083006537a4a3dc5ee3d202d1bc9c07909a3b
15145 Author: Steven G. Johnson <stevenj@fftw.org>
15146 Date: Sat Jan 11 12:38:40 2003 -0500
15147
15148 allow for malloc errors in wisdom string, since non-fftw-malloc
15149
15150 commit a84ffa432d7e480e83d87090ed763a8ba8deefc1
15151 Author: Steven G. Johnson <stevenj@fftw.org>
15152 Date: Sat Jan 11 12:16:05 2003 -0500
15153
15154 cleanup should reset plnr to zero so that fftw can be restarted
15155
15156 commit 5c64b4a2e584e795861b00a8c2683f1ab740c5f4
15157 Author: Steven G. Johnson <stevenj@fftw.org>
15158 Date: Sat Jan 11 12:13:18 2003 -0500
15159
15160 NO_UGLY is an internal planner flag
15161
15162 commit f9e7b4ae52caaf33854eeab2f49cc98c0ed76431
15163 Author: Matteo Frigo <athena@fftw.org>
15164 Date: Sat Jan 11 11:23:13 2003 -0500
15165
15166 Written 1d api in terms of generic n-d api. The code is less compact
15167 but easier to test
15168
15169 commit 96c701ecb75dbd0236023c61f59a0cde3f0f330d
15170 Author: Matteo Frigo <athena@fftw.org>
15171 Date: Sat Jan 11 11:07:25 2003 -0500
15172
15173 Added wisdom to header file, made scanners/printer static. stdio.h
15174 no longer needed in fftw.h, removed. Probably the printer_file
15175 should be reintroduced in a separate file if we ever want to
15176 print plans...
15177
15178 commit ea3e4d45a1aec83b6e5534b2f0fbdd8271601ebd
15179 Author: Matteo Frigo <athena@fftw.org>
15180 Date: Sat Jan 11 09:49:30 2003 -0500
15181
15182 Implemented more APIs
15183
15184 commit 41044feee9e55eb6ff29128fca2ad7458087146b
15185 Author: Matteo Frigo <athena@fftw.org>
15186 Date: Sat Jan 11 09:21:53 2003 -0500
15187
15188 Added cleanup() to API
15189
15190 commit 125c89f921354d7d4e18aa61700b2d2ce8704e5f
15191 Author: Matteo Frigo <athena@fftw.org>
15192 Date: Sat Jan 11 09:17:34 2003 -0500
15193
15194 Started new bench.c. I had to rename plan_destroy ->
15195 plan_destroy_internal to avoid conflicts with API
15196
15197 commit f315b29db425d56e3daffc4a5710b8e6542a0c91
15198 Author: Steven G. Johnson <stevenj@fftw.org>
15199 Date: Sat Jan 11 02:45:39 2003 -0500
15200
15201 fix types
15202
15203 commit 9419d5287867213b7dec8bbb7e594a3f77157be2
15204 Author: Steven G. Johnson <stevenj@fftw.org>
15205 Date: Sat Jan 11 02:13:25 2003 -0500
15206
15207 whoops
15208
15209 commit 8a271133e0891ed171ae642860ef03dff81e4bce
15210 Author: Steven G. Johnson <stevenj@fftw.org>
15211 Date: Sat Jan 11 02:10:50 2003 -0500
15212
15213 added wisdom api
15214
15215 commit ce93efb2d481b23ccb261df25cb2021dd38b5668
15216 Author: Steven G. Johnson <stevenj@fftw.org>
15217 Date: Sat Jan 11 01:01:17 2003 -0500
15218
15219 grammar
15220
15221 commit faefac80f41e5203c91c356619f97c3c1cdf8b13
15222 Author: Steven G. Johnson <stevenj@fftw.org>
15223 Date: Sat Jan 11 00:54:54 2003 -0500
15224
15225 slight change
15226
15227 commit c01969dd0125889865e81c33fff6f5a0055f71b5
15228 Author: Steven G. Johnson <stevenj@fftw.org>
15229 Date: Sat Jan 11 00:52:04 2003 -0500
15230
15231 implemented api/mapflags
15232
15233 commit fb2e4c252410f4b6d3e26ce97ca17083ca45a773
15234 Author: Steven G. Johnson <stevenj@fftw.org>
15235 Date: Sat Jan 11 00:48:27 2003 -0500
15236
15237 IMPATIENT is an api issue
15238
15239 commit 21879988984f816cbd2ff5250d85b004a7dac217
15240 Author: Steven G. Johnson <stevenj@fftw.org>
15241 Date: Fri Jan 10 01:57:41 2003 -0500
15242
15243 removed un-needed headers
15244
15245 commit d0d8c732879727d7af40c9301c58d661c4c62343
15246 Author: Steven G. Johnson <stevenj@fftw.org>
15247 Date: Fri Jan 10 01:56:59 2003 -0500
15248
15249 mkplanner initializes nthr to 1 already
15250
15251 commit e0b0e74169c6b2ee44abc01b035e356b5ab1aaa8
15252 Author: Steven G. Johnson <stevenj@fftw.org>
15253 Date: Thu Jan 9 18:53:09 2003 -0500
15254
15255 boilerplate
15256
15257 commit f90417638448166e44f56b0f7bcc61f0263c40b7
15258 Author: Steven G. Johnson <stevenj@fftw.org>
15259 Date: Thu Jan 9 18:16:39 2003 -0500
15260
15261 fold vecloop into r{e,o}dft apply function to share buffer, etcetera
15262
15263 commit aa1101d19e86b64d4753f8bf562df5db7ea5de73
15264 Author: Steven G. Johnson <stevenj@fftw.org>
15265 Date: Thu Jan 9 18:10:19 2003 -0500
15266
15267 whoops, bugfix in impulse test for vecn > 1
15268
15269 commit d70526c96f5f1959cf5fa3df3e15ff71a8e66487
15270 Author: Steven G. Johnson <stevenj@fftw.org>
15271 Date: Thu Jan 9 14:23:51 2003 -0500
15272
15273 bugfix, grr
15274
15275 commit 6c4923f6c3d24b14b644dea8a85adaddfb165ef5
15276 Author: Steven G. Johnson <stevenj@fftw.org>
15277 Date: Thu Jan 9 14:21:16 2003 -0500
15278
15279 fixed signed-ness enum problem
15280
15281 commit 656713c6b00d9f53d81820fd4675fe568a204088
15282 Author: Matteo Frigo <athena@fftw.org>
15283 Date: Thu Jan 9 14:12:42 2003 -0500
15284
15285 Explicit cast
15286
15287 commit 06f32cbb5be575b9880ff2b1a0e4031fa9be68d1
15288 Author: Matteo Frigo <athena@fftw.org>
15289 Date: Thu Jan 9 13:41:51 2003 -0500
15290
15291 Added configure_planner(). mkplan() behaves properly when plan is null.
15292
15293 commit 0c9627b61142790be11d642e3348808cbfa7cd5e
15294 Author: Matteo Frigo <athena@fftw.org>
15295 Date: Thu Jan 9 06:48:53 2003 -0500
15296
15297 More API work
15298
15299 commit e21443ac067af4615dc8513d68d880f78801b983
15300 Author: Matteo Frigo <athena@fftw.org>
15301 Date: Thu Jan 9 05:40:34 2003 -0500
15302
15303 First skeleton of API infrastructure
15304
15305 commit 8c1212b04af0632d827194223919a73133593c54
15306 Author: Steven G. Johnson <stevenj@fftw.org>
15307 Date: Thu Jan 9 03:19:35 2003 -0500
15308
15309 unsigned strikes again
15310
15311 commit d9142b307e261d5d50a1b2086eef9012e2c36602
15312 Author: Steven G. Johnson <stevenj@fftw.org>
15313 Date: Thu Jan 9 01:51:45 2003 -0500
15314
15315 put rdft2_inplace_strides and rdft2_tensor_max_index in their own files for tighter linking
15316
15317 commit 7c048dc37ce30e18367fc3e84ec7759a2c2f0b7e
15318 Author: Steven G. Johnson <stevenj@fftw.org>
15319 Date: Thu Jan 9 01:43:13 2003 -0500
15320
15321 added rdft2_tensor_max_index...incorrect use of tensor_max_index was preventing proper loop ordering for rnk > 2 rdft2
15322
15323 commit 561ca9cb4f10d1710cea9126fc0fa63366814127
15324 Author: Steven G. Johnson <stevenj@fftw.org>
15325 Date: Thu Jan 9 00:44:45 2003 -0500
15326
15327 arbitrary spltrnk in rdft2 rank-geq2
15328
15329 commit f17e0e00c61ac65b9353fc879a5e33f185bc8f36
15330 Author: Steven G. Johnson <stevenj@fftw.org>
15331 Date: Thu Jan 9 00:40:17 2003 -0500
15332
15333 don't mention wisdom when non-verbose
15334
15335 commit be48b68a4776f2add565a8ff0b0b0c4b8095518e
15336 Author: Steven G. Johnson <stevenj@fftw.org>
15337 Date: Thu Jan 9 00:02:35 2003 -0500
15338
15339 bug fix: printing %T should pass tensor *, not tensor **
15340
15341 commit 13e8d5776b965f625f836ffb3ed0541c5ec1c3b4
15342 Author: Steven G. Johnson <stevenj@fftw.org>
15343 Date: Wed Jan 8 23:40:48 2003 -0500
15344
15345 correct(?) normalization for rodft00 ... all of the even/odd transforms should be normalized according to the expanded'' DFT of ~twice the length
15346
15347 commit 08581922580b63f9723d7bd0da7e341d49b0225a
15348 Author: Steven G. Johnson <stevenj@fftw.org>
15349 Date: Wed Jan 8 23:18:23 2003 -0500
15350
15351 fixed tests for n=1
15352
15353 commit cd3f97118a39ef25691a86f62df1a53abfe3f15b
15354 Author: Steven G. Johnson <stevenj@fftw.org>
15355 Date: Wed Jan 8 22:10:08 2003 -0500
15356
15357 fixed bug in vector tests for rdft(2)
15358
15359 commit 81b7636d1db4f7c33fa315720b91077f0c189f22
15360 Author: Steven G. Johnson <stevenj@fftw.org>
15361 Date: Wed Jan 8 20:12:00 2003 -0500
15362
15363 fixed handling when first rnk-1 dimensions compress to nothing (ugh)
15364
15365 commit a1150e27e85473748f0705407bb3858272d25bca
15366 Author: Steven G. Johnson <stevenj@fftw.org>
15367 Date: Wed Jan 8 20:02:35 2003 -0500
15368
15369 fixed incorrect/missing rdft2 rank-0 handling
15370
15371 commit 77ab86cd9b8adef254ae54ee9f5f1355efb82b6f
15372 Author: Steven G. Johnson <stevenj@fftw.org>
15373 Date: Wed Jan 8 19:49:05 2003 -0500
15374
15375 bug fix: for rnk > 1, must compress rnk-1 dims separately (ugh)
15376
15377 commit cba19ba921fb1d660ea71804cd40ba3d14fac750
15378 Author: Steven G. Johnson <stevenj@fftw.org>
15379 Date: Wed Jan 8 17:39:14 2003 -0500
15380
15381 added trailing newline
15382
15383 commit 925276da406dd1908a70b57c584cab6719dfb44b
15384 Author: Steven G. Johnson <stevenj@fftw.org>
15385 Date: Wed Jan 8 17:38:02 2003 -0500
15386
15387 updated
15388
15389 commit 3740fe7538b1f9e0c2776a305f1c46dde0e12082
15390 Author: Steven G. Johnson <stevenj@fftw.org>
15391 Date: Wed Jan 8 16:53:16 2003 -0500
15392
15393 got rid of compiler warning
15394
15395 commit 2dfda812b6ddde932b9dd627cfbc2677ec4caeb0
15396 Author: Steven G. Johnson <stevenj@fftw.org>
15397 Date: Wed Jan 8 16:49:48 2003 -0500
15398
15399 whoops, test r2hc and not rodft00 by default
15400
15401 commit 12f2eb610a61a32de3a2d961676f005a3c7bc0c9
15402 Author: Steven G. Johnson <stevenj@fftw.org>
15403 Date: Wed Jan 8 16:46:24 2003 -0500
15404
15405 got rid of real_n...use physical n everywhere in rdft; fixed rdft sz compression; fixed rodft00 verify bug
15406
15407 commit 17233aac9a159de06ecf2dec334205094e3e0a03
15408 Author: Matteo Frigo <athena@fftw.org>
15409 Date: Wed Jan 8 07:20:47 2003 -0500
15410
15411 icc-6.0 bug workaround
15412
15413 commit 8490d0c5c383dcfe1910afc3e006557fb7c9aa76
15414 Author: Matteo Frigo <athena@fftw.org>
15415 Date: Wed Jan 8 04:21:40 2003 -0500
15416
15417 Reclaimed the fftw_real identifier, because I need it for the API
15418
15419 commit 82c0ab6a22809a05739960cb8c06c9d14d5e7968
15420 Author: Matteo Frigo <athena@fftw.org>
15421 Date: Wed Jan 8 04:14:55 2003 -0500
15422
15423 Use recommended AC_OUTPUT syntax
15424
15425 commit 38010c2e123c85caeb3c0827f769f304b8f77c87
15426 Author: Matteo Frigo <athena@fftw.org>
15427 Date: Wed Jan 8 04:00:22 2003 -0500
15428
15429 Removed FFTW(foo) as a synonym for X(foo). This is an API issue.
15430
15431 commit 863cf56f79b7eac7b70f307d24f431d71bfbdd52
15432 Author: Steven G. Johnson <stevenj@fftw.org>
15433 Date: Tue Jan 7 17:45:52 2003 -0500
15434
15435 get rid of warning
15436
15437 commit fbc87e15fead24d239286af63e298620ac46b30b
15438 Author: Matteo Frigo <athena@fftw.org>
15439 Date: Tue Jan 7 16:22:39 2003 -0500
15440
15441 Renamed conflicting files */codelet.h into dft/codelet-dft.h and
15442 rdft/codelet-rdft.h
15443
15444 commit 683c665e1da6396f9b2c2dc8ecc749b90e666907
15445 Author: Steven G. Johnson <stevenj@fftw.org>
15446 Date: Tue Jan 7 16:21:16 2003 -0500
15447
15448 updated
15449
15450 commit 13ef7881b1b28e1772271d54f92e7f7d96059c25
15451 Author: Matteo Frigo <athena@fftw.org>
15452 Date: Tue Jan 7 15:47:24 2003 -0500
15453
15454 Silence warnings
15455
15456 commit f35b6c4c226aa4cba7f2a0b30b5493cc94517e13
15457 Author: Steven G. Johnson <stevenj@fftw.org>
15458 Date: Tue Jan 7 15:00:14 2003 -0500
15459
15460 fftw2 used spltrnk=1
15461
15462 commit 9a9b9463c83f021eeefa0743fd50b9e11c008103
15463 Author: Matteo Frigo <athena@fftw.org>
15464 Date: Tue Jan 7 14:32:06 2003 -0500
15465
15466 Silence warning
15467
15468 commit 86d050e48df435dd7091a75e4ee9647cc31d65e0
15469 Author: Steven G. Johnson <stevenj@fftw.org>
15470 Date: Tue Jan 7 12:13:50 2003 -0500
15471
15472 noted deficiency
15473
15474 commit 97269b487afae721bc3efc07d4510284d184500e
15475 Author: Matteo Frigo <athena@fftw.org>
15476 Date: Tue Jan 7 07:18:51 2003 -0500
15477
15478 Strengthened conditions for a problem to be POSSIBLY_UNALIGNED
15479
15480 commit d135e51da8af9610080ca861eec8a12f04e33617
15481 Author: Matteo Frigo <athena@fftw.org>
15482 Date: Tue Jan 7 05:09:42 2003 -0500
15483
15484 Strengthened conditions for a plan to be POSSIBLY_UNALIGNED
15485
15486 commit 41d4363cc830c074d8e602a4046fcfb361714aa3
15487 Author: Steven G. Johnson <stevenj@fftw.org>
15488 Date: Sun Jan 5 02:43:45 2003 -0500
15489
15490 added copyright todo
15491
15492 commit 81f531aeaa2fb148c7f8b5519a792c7e226060dd
15493 Author: Steven G. Johnson <stevenj@fftw.org>
15494 Date: Sun Jan 5 02:37:31 2003 -0500
15495
15496 modified comment
15497
15498 commit e17581aca74e377a94b5506199a6f3c0d95dd218
15499 Author: Steven G. Johnson <stevenj@fftw.org>
15500 Date: Sun Jan 5 02:34:36 2003 -0500
15501
15502 fixed comment
15503
15504 commit f33e50cd3dedd8472c0b37116e337749dd80efa8
15505 Author: Steven G. Johnson <stevenj@fftw.org>
15506 Date: Sun Jan 5 02:31:56 2003 -0500
15507
15508 implemented rdft2 verify
15509
15510 commit 352eadf383e28c25c7132ace3c4179e561c54aa8
15511 Author: Steven G. Johnson <stevenj@fftw.org>
15512 Date: Sat Jan 4 16:20:42 2003 -0500
15513
15514 fix --enable-single
15515
15516 commit 3cd824b965de4c51a977683e83bfaa1f2d8b37ab
15517 Author: Steven G. Johnson <stevenj@fftw.org>
15518 Date: Wed Oct 23 12:59:12 2002 -0400
15519
15520 slight fixes
15521
15522 commit 64f0f3180cf46058053d0a452152f3fb7e4d5363
15523 Author: Steven G. Johnson <stevenj@fftw.org>
15524 Date: Wed Oct 23 12:42:39 2002 -0400
15525
15526 typo
15527
15528 commit b6cffe0e74206ccd7ae7726181a361bea4d94986
15529 Author: Matteo Frigo <athena@fftw.org>
15530 Date: Tue Oct 1 09:32:56 2002 -0400
15531
15532 Experimental stuff
15533
15534 commit b92e96518b5b9ac3275a6f7194d5e1ec49b36e7d
15535 Author: Matteo Frigo <athena@fftw.org>
15536 Date: Sat Sep 28 13:03:53 2002 -0400
15537
15538 Experimental Franz mode
15539
15540 commit fd2ac8fb21fc75eccec5c5352069388b52ab00ea
15541 Author: Matteo Frigo <athena@fftw.org>
15542 Date: Thu Sep 26 15:14:38 2002 -0400
15543
15544 const-correct
15545
15546 commit ec5733489ef85cbe78e5253358fdb320be5b2642
15547 Author: Matteo Frigo <athena@fftw.org>
15548 Date: Thu Sep 26 15:06:38 2002 -0400
15549
15550 Reuse dimcmp routine for other purposes
15551
15552 commit 6fa12bfc6f9ac208da72478981473011a292f57d
15553 Author: Matteo Frigo <athena@fftw.org>
15554 Date: Wed Sep 25 07:37:38 2002 -0400
15555
15556 Use tornk1 correctly.
15557
15558 commit 97b84fbe4c90ade6b9cad6ac2efba9b6fb305412
15559 Author: Matteo Frigo <athena@fftw.org>
15560 Date: Wed Sep 25 07:36:38 2002 -0400
15561
15562 Hmm... I thought I had fixed this before...
15563
15564 commit 69de6d4b5d66e405c267001886d8a7ae9e84224b
15565 Author: Matteo Frigo <athena@fftw.org>
15566 Date: Tue Sep 24 21:27:49 2002 -0400
15567
15568 Collect more common idioms
15569
15570 commit 1bbba9625dca12e70a6e26402ba1a2262b7ca984
15571 Author: Matteo Frigo <athena@fftw.org>
15572 Date: Tue Sep 24 21:15:57 2002 -0400
15573
15574 Still collecting common idioms...
15575
15576 commit 01a7139392f8170c8563510d0c489bfd91687520
15577 Author: Matteo Frigo <athena@fftw.org>
15578 Date: Tue Sep 24 21:13:00 2002 -0400
15579
15580 More garbage collection.
15581
15582 commit 45bb1a6c49ce1569ebc75896da0ed42b0b03ee59
15583 Author: Matteo Frigo <athena@fftw.org>
15584 Date: Tue Sep 24 21:08:19 2002 -0400
15585
15586 More compact code
15587
15588 commit eed5c4ed8045a26be389b99e1492aedc5017f448
15589 Author: Matteo Frigo <athena@fftw.org>
15590 Date: Tue Sep 24 20:54:43 2002 -0400
15591
15592 Collect common pattern if (foo) free(foo) ==> free0(foo)
15593
15594 commit e7d2657d2d3bb77eb2403856e102678d865de742
15595 Author: Matteo Frigo <athena@fftw.org>
15596 Date: Tue Sep 24 20:08:44 2002 -0400
15597
15598 Collect some common code in */buffered*.c
15599
15600 commit 61cd95889228f7a100d853c42e461780fd01dd92
15601 Author: Steven G. Johnson <stevenj@fftw.org>
15602 Date: Tue Sep 24 19:39:22 2002 -0400
15603
15604 use STRUCT_HACK #define to determing rdft kind[] allocation
15605
15606 commit 337af322b345f45b275182f7bc8f5949794ea140
15607 Author: Steven G. Johnson <stevenj@fftw.org>
15608 Date: Tue Sep 24 17:21:09 2002 -0400
15609
15610 report total pcost of measured/estimated plans...epcost is especially useful to estimate the effects of various impatience flags on planning time for large transforms
15611
15612 commit 5cbf8b44eabe724a226d58fbeac341b7f3c13e49
15613 Author: Matteo Frigo <athena@fftw.org>
15614 Date: Mon Sep 23 18:49:10 2002 -0400
15615
15616 Prevent unwanted inlining
15617
15618 commit 7342f004be53b759052eaf9a01a9a574dc64631f
15619 Author: Matteo Frigo <athena@fftw.org>
15620 Date: Mon Sep 23 18:37:59 2002 -0400
15621
15622 Space compaction
15623
15624 commit d8299eef074631210e64b01453a7602dad45d6b8
15625 Author: Matteo Frigo <athena@fftw.org>
15626 Date: Mon Sep 23 11:49:32 2002 -0400
15627
15628 Still reducing size
15629
15630 commit 5df9269dc8d95153c138fd44e41effd6ed1f58e2
15631 Author: Matteo Frigo <athena@fftw.org>
15632 Date: Sun Sep 22 16:03:30 2002 -0400
15633
15634 Saved another 5KB by redesigning opcnt protocol. (gasp!)
15635
15636 commit 074344d84ab955d0ad7efdc9b58f8414952a0372
15637 Author: Matteo Frigo <athena@fftw.org>
15638 Date: Sun Sep 22 15:00:59 2002 -0400
15639
15640 More code compression
15641
15642 commit 7e2e90935398c3d3d50cc2bbcab66d4b188bf757
15643 Author: Matteo Frigo <athena@fftw.org>
15644 Date: Sun Sep 22 13:27:46 2002 -0400
15645
15646 Smaller code size.
15647
15648 commit 1da75a085efd3348694dafb0905fb59e2c6cee27
15649 Author: Matteo Frigo <athena@fftw.org>
15650 Date: Sun Sep 22 12:50:36 2002 -0400
15651
15652 Started unification of rader
15653
15654 commit e0cb464fbac3602192afd97211885e814674d246
15655 Author: Matteo Frigo <athena@fftw.org>
15656 Date: Sun Sep 22 12:35:30 2002 -0400
15657
15658 Typo
15659
15660 commit 363f9b3b1a6bbf78e371c46a74645b55281ec0ca
15661 Author: Matteo Frigo <athena@fftw.org>
15662 Date: Sun Sep 22 12:25:20 2002 -0400
15663
15664 Changed protocol for destroy_plan so as to save space.
15665
15666 commit daf930d4450cc9caa5d528b631f964bfbf16a208
15667 Author: Matteo Frigo <athena@fftw.org>
15668 Date: Sun Sep 22 11:08:57 2002 -0400
15669
15670 Introduced convenient function X(mkplan_d)
15671
15672 commit e74d86afcd19e77f275c86c916449ae2b82310be
15673 Author: Matteo Frigo <athena@fftw.org>
15674 Date: Sun Sep 22 10:21:36 2002 -0400
15675
15676 Split tensor/md5 into separate files to allow independent linking
15677 and/or prevent undesidred inlining
15678
15679 commit 249329f66447c68d67536d4a868ac589b264a9ff
15680 Author: Matteo Frigo <athena@fftw.org>
15681 Date: Sun Sep 22 09:49:09 2002 -0400
15682
15683 Treat all tensors as dynamically allocated objects. They were
15684 dynamically allocated in part anyway, so there is no point in
15685 complicating the object code with the clumsy calling conventions
15686 for by-value structs.
15687
15688 commit 53cf5c7cab96e0657153327e660e787279e77c4f
15689 Author: Steven G. Johnson <stevenj@fftw.org>
15690 Date: Sat Sep 21 18:24:55 2002 -0400
15691
15692 typo
15693
15694 commit e36da5f9b63af8a62dab370b005e2472e5edc33f
15695 Author: Matteo Frigo <athena@fftw.org>
15696 Date: Sat Sep 21 18:10:07 2002 -0400
15697
15698 Avoid generating NaN when n = 0.
15699
15700 commit a49b921ea278fcb353b2be6338d04daf3b0a72dc
15701 Author: Matteo Frigo <athena@fftw.org>
15702 Date: Sat Sep 21 18:04:05 2002 -0400
15703
15704 Saved more.
15705
15706 commit 2008afba6889d6f2b9d3f00dcbcf0bc9edd8c7c2
15707 Author: Matteo Frigo <athena@fftw.org>
15708 Date: Sat Sep 21 17:47:36 2002 -0400
15709
15710 Save 1200 bytes of object code. Do not pass structs by value whenever
15711 practical, because the calling protocol generates clumsy code.
15712
15713 commit 8dbaef7c3531ccca29ae4f52528ed11c5089700d
15714 Author: Matteo Frigo <athena@fftw.org>
15715 Date: Sat Sep 21 12:10:21 2002 -0400
15716
15717 Do not allocate buffers for rader omegas. Let the planner do it
15718 if necessary.
15719
15720 commit 0cd3107a7fe058042f7e23b73658bacf82d08805
15721 Author: Matteo Frigo <athena@fftw.org>
15722 Date: Sat Sep 21 12:03:46 2002 -0400
15723
15724 Check rank *before* reading kind[0], which may be undefined if rnk < 1
15725
15726 commit ffab113d0748937a80de8e046d5d971a7cfde97f
15727 Author: Matteo Frigo <athena@fftw.org>
15728 Date: Sat Sep 21 11:48:50 2002 -0400
15729
15730 Second step towards rader unification.
15731
15732 commit 054daf75a708d4b060c35b13a48ee8e8b1732cc1
15733 Author: Matteo Frigo <athena@fftw.org>
15734 Date: Sat Sep 21 11:37:06 2002 -0400
15735
15736 First step towards unification of Rader code
15737
15738 commit fc97f7d9567238bd1930e63614352160ff2bc202
15739 Author: Matteo Frigo <athena@fftw.org>
15740 Date: Sat Sep 21 07:58:11 2002 -0400
15741
15742 Fix ugliness condition for cooley-tukey.
15743
15744 commit 28fe4962b2e634dc302c3fba3853b87788b411ad
15745 Author: Matteo Frigo <athena@fftw.org>
15746 Date: Fri Sep 20 16:53:45 2002 -0400
15747
15748 Removed RADER_MIN_GOOD and associated machinery
15749
15750 commit dc40093700e7a00e3808b606108137c7ce5cb592
15751 Author: Matteo Frigo <athena@fftw.org>
15752 Date: Fri Sep 20 14:49:12 2002 -0400
15753
15754 Proper cast
15755
15756 commit 2eec2b720ae866f16db023e3815f27875f572a56
15757 Author: Matteo Frigo <athena@fftw.org>
15758 Date: Fri Sep 20 14:45:54 2002 -0400
15759
15760 Typo
15761
15762 commit d55f46a0acf7e75a5c216964aa0016166254876f
15763 Author: Matteo Frigo <athena@fftw.org>
15764 Date: Fri Sep 20 14:38:13 2002 -0400
15765
15766 Implemented NO_LARGE_GENERIC
15767
15768 commit 535ecb44b8e4450306cf760afb294431e5595ae6
15769 Author: Matteo Frigo <athena@fftw.org>
15770 Date: Thu Sep 19 07:48:25 2002 -0400
15771
15772 Consistent macroization of NO_DHT_R2HC
15773
15774 commit fe02be9d79515c92b53d929977c270b46a8b7fdd
15775 Author: Matteo Frigo <athena@fftw.org>
15776 Date: Wed Sep 18 21:47:17 2002 -0400
15777
15778 NO_DHT_R2HC is a planner flag, otherwise the EXHAUSTIVE planner loops.
15779
15780 commit 20e70850bb3d2cd4590c9bfce7777b8a2f9a80fc
15781 Author: Matteo Frigo <athena@fftw.org>
15782 Date: Wed Sep 18 20:47:31 2002 -0400
15783
15784 Resurrected NO_EXHAUSTIVE
15785
15786 commit 4e477d8e68603cc899c8d0104fc6897817fd74d9
15787 Author: Steven G. Johnson <stevenj@fftw.org>
15788 Date: Wed Sep 18 19:31:57 2002 -0400
15789
15790 au revoir, score()
15791
15792 commit c3f01031fa05a9088d18e643a9b3476fa6a6437d
15793 Author: Steven G. Johnson <stevenj@fftw.org>
15794 Date: Wed Sep 18 19:31:05 2002 -0400
15795
15796 eliminated unused
15797
15798 commit 25e32538394211412f3aac06baa6677ae148ea03
15799 Author: Steven G. Johnson <stevenj@fftw.org>
15800 Date: Wed Sep 18 18:28:44 2002 -0400
15801
15802 capitalize and parenthesize SUBSUMES
15803
15804 commit 7115ad27ce3a4390e6c81800126315f757abbdb5
15805 Author: Steven G. Johnson <stevenj@fftw.org>
15806 Date: Wed Sep 18 18:26:58 2002 -0400
15807
15808 comment
15809
15810 commit 3ec48dd0fd8e9cc88fd85a1b7b74f9ec5ef1789d
15811 Author: Matteo Frigo <athena@fftw.org>
15812 Date: Wed Sep 18 18:03:18 2002 -0400
15813
15814 Use flags from wisdom if wisdom is applicable.
15815
15816 commit e16b332f900b1872044fe195f7e40ae15e5ed5e6
15817 Author: Matteo Frigo <athena@fftw.org>
15818 Date: Wed Sep 18 17:16:17 2002 -0400
15819
15820 Removed score() machinery
15821
15822 commit bc4041b9adab2d69de986123e38bee24f480eb3a
15823 Author: Matteo Frigo <athena@fftw.org>
15824 Date: Wed Sep 18 14:12:21 2002 -0400
15825
15826 Revised planner hack
15827
15828 commit 4f3717ebf2eca24ac5e8017eaf8856bf5270020c
15829 Author: Matteo Frigo <athena@fftw.org>
15830 Date: Wed Sep 18 10:14:41 2002 -0400
15831
15832 Fix warning
15833
15834 commit b627b00f2f1adf8c8839b27618ac1765064c0b78
15835 Author: Matteo Frigo <athena@fftw.org>
15836 Date: Tue Sep 17 17:54:07 2002 -0400
15837
15838 Type qualifiers.
15839
15840 commit 48fc716d339ceb08432ab2a6704e79de578ad5fc
15841 Author: Matteo Frigo <athena@fftw.org>
15842 Date: Tue Sep 17 16:17:55 2002 -0400
15843
15844 ESTIMATE is no longer subsumed by everything else.
15845
15846 commit 1c6447f56fe864b172d70f8940dc9de74a15a499
15847 Author: Matteo Frigo <athena@fftw.org>
15848 Date: Tue Sep 17 10:55:15 2002 -0400
15849
15850 NO_BUFFERING is a planner flag, not a problem flag
15851
15852 commit 458afba08480c2115e585e898153352ca125ff39
15853 Author: Matteo Frigo <athena@fftw.org>
15854 Date: Tue Sep 17 09:36:16 2002 -0400
15855
15856 Maintain flags in canonical form.
15857
15858 commit 1a01c050c68d0ffa9380d7bd780194509c75a31e
15859 Author: Matteo Frigo <athena@fftw.org>
15860 Date: Tue Sep 17 09:09:57 2002 -0400
15861
15862 In dramatic break with tradition, SUBSUME is now a partial order. I
15863 swear.
15864
15865 commit 7c1f9aafa59ca2c68f98f1b2f88ca8b029506e09
15866 Author: Matteo Frigo <athena@fftw.org>
15867 Date: Tue Sep 17 07:29:00 2002 -0400
15868
15869 Added comment
15870
15871 commit 8b8f6515fa6ddcc9ac579c80062a9b9aa55917c1
15872 Author: Matteo Frigo <athena@fftw.org>
15873 Date: Tue Sep 17 07:27:17 2002 -0400
15874
15875 Inverted ESTIMATE flag, renamed USE_SCORE for consistency with the
15876 convention that 0 subsumes 1.
15877
15878 commit 1fd38e50ba038d57947daa7c999bab9da4a33836
15879 Author: Steven G. Johnson <stevenj@fftw.org>
15880 Date: Tue Sep 17 02:50:15 2002 -0400
15881
15882 NO_INDIRECT -> NO_INDIRECT_OP (out-of-place only)
15883
15884 commit ff2617c02989df82c99fd064ec298e107afe627e
15885 Author: Steven G. Johnson <stevenj@fftw.org>
15886 Date: Tue Sep 17 00:40:04 2002 -0400
15887
15888 hpux needs -D_REENTRANT (thanks to Clinton Roy for the bug report)
15889
15890 commit ef127fa967046516cf5658be72eb70c93b817120
15891 Author: Matteo Frigo <athena@fftw.org>
15892 Date: Mon Sep 16 23:54:34 2002 -0400
15893
15894 Oops.
15895
15896 commit 70546cbffe33ede1657b54f626e133039ba26528
15897 Author: Matteo Frigo <athena@fftw.org>
15898 Date: Mon Sep 16 23:44:47 2002 -0400
15899
15900 Yet another attempt at getting the planner right.
15901
15902 commit ac2a09b8c81db49fcc9c770b94723577beee286c
15903 Author: Matteo Frigo <athena@fftw.org>
15904 Date: Mon Sep 16 21:56:14 2002 -0400
15905
15906 Better coding.
15907
15908 commit a0a3d5520d53b44194f63fe2873207b57a07d544
15909 Author: Matteo Frigo <athena@fftw.org>
15910 Date: Mon Sep 16 21:51:06 2002 -0400
15911
15912 NO_UGLY is no longer a flag, but a separate planner field that does not
15913 interfere with wisdom.
15914
15915 commit 69253431765ca3b9cfce2c4a56c846512f6c9968
15916 Author: Matteo Frigo <athena@fftw.org>
15917 Date: Mon Sep 16 19:04:41 2002 -0400
15918
15919 Did not compile without FFTW_DEBUG
15920
15921 commit 43a0347e3daa0fd854eec1d7ded5c6f45ce727e4
15922 Author: Matteo Frigo <athena@fftw.org>
15923 Date: Mon Sep 16 18:37:06 2002 -0400
15924
15925 Changed scoring mechanism.
15926
15927 commit e4f00711d6784b6f4196859738a039ae1f7b9edd
15928 Author: Matteo Frigo <athena@fftw.org>
15929 Date: Mon Sep 16 17:13:45 2002 -0400
15930
15931 Count infeasible plans
15932
15933 commit 18299388527442d1dfc7b7a5748da0d987c019bc
15934 Author: Matteo Frigo <athena@fftw.org>
15935 Date: Mon Sep 16 16:36:12 2002 -0400
15936
15937 curse subsumed plans before export
15938
15939 commit fb22a4fc3b6fa45b0f46f605ed1c94eba5960359
15940 Author: Steven G. Johnson <stevenj@fftw.org>
15941 Date: Mon Sep 16 15:40:46 2002 -0400
15942
15943 removed ESTIMATE_BIT vs. ESTIMATE... ESTIMATE | IMPATIENT is a UI issue
15944
15945 commit 548808e1fefe66c9b882d332d70488986e3b073d
15946 Author: Steven G. Johnson <stevenj@fftw.org>
15947 Date: Mon Sep 16 15:31:39 2002 -0400
15948
15949 cleanup
15950
15951 commit 14a42333af6152472262413b8d1a97207a1aff59
15952 Author: Steven G. Johnson <stevenj@fftw.org>
15953 Date: Mon Sep 16 15:28:47 2002 -0400
15954
15955 use CONSERVE_MEMORY flag to prevent buffered for large sizes
15956
15957 commit 688cb6fee87d6ba5ed14e9e9899ba46c96eaddbb
15958 Author: Steven G. Johnson <stevenj@fftw.org>
15959 Date: Mon Sep 16 15:16:16 2002 -0400
15960
15961 moved NO_DHT_R2HC back into planner flags: there's no reason we would want this flag to block plan reuse
15962
15963 commit b06ee447ad1ee0f95af06c2d91092db1475f44a5
15964 Author: Steven G. Johnson <stevenj@fftw.org>
15965 Date: Mon Sep 16 14:59:14 2002 -0400
15966
15967 whoops, commas
15968
15969 commit 396a6523178fa8aa79f3b716e6a14577bb83c337
15970 Author: Steven G. Johnson <stevenj@fftw.org>
15971 Date: Mon Sep 16 14:58:26 2002 -0400
15972
15973 problem_flags == checked in applicable, planner_flags == checked in score
15974
15975 commit b7ef5ad344bcd298e14a30b30bd2d6f2b3c7442f
15976 Author: Steven G. Johnson <stevenj@fftw.org>
15977 Date: Mon Sep 16 14:53:16 2002 -0400
15978
15979 ESTIMATE should not *include* all impatience flags, even if it subsumes them; some impatience flags, like NO_INDIRECT, might make a problem unsolvable
15980
15981 commit 81a60e6002c427a15cbb298654f954c09954c9a4
15982 Author: Steven G. Johnson <stevenj@fftw.org>
15983 Date: Mon Sep 16 00:56:29 2002 -0400
15984
15985 quotatio marks
15986
15987 commit 0833118f7818c740e7387c607c320e79e088c6be
15988 Author: Steven G. Johnson <stevenj@fftw.org>
15989 Date: Sun Sep 15 23:55:44 2002 -0400
15990
15991 delete blank line
15992
15993 commit 4cbe17440ce2d074a4c0a0d3245d25c63dd469fb
15994 Author: Steven G. Johnson <stevenj@fftw.org>
15995 Date: Sun Sep 15 23:51:14 2002 -0400
15996
15997 substitution
15998
15999 commit 3963051622d435d96083c0d753dcd8f503bac2f5
16000 Author: Steven G. Johnson <stevenj@fftw.org>
16001 Date: Sun Sep 15 23:49:50 2002 -0400
16002
16003 note that we are not GNUlly correct
16004
16005 commit ec9b8c84419f5dd8cd533eca7b07391696019046
16006 Author: Steven G. Johnson <stevenj@fftw.org>
16007 Date: Sun Sep 15 23:41:01 2002 -0400
16008
16009 indenting
16010
16011 commit bb5f5581a5d05566bf679da7ed67a2e59e68781e
16012 Author: Steven G. Johnson <stevenj@fftw.org>
16013 Date: Sun Sep 15 23:37:46 2002 -0400
16014
16015 more jokes
16016
16017 commit 0db38cc3a3f7215cdd2e9c308fa9d88c0422024e
16018 Author: Steven G. Johnson <stevenj@fftw.org>
16019 Date: Sun Sep 15 23:20:14 2002 -0400
16020
16021 NONTHREADED_ICKYP includes nthr > 1 check
16022
16023 commit a1900e4f7fdc5bc663fe60ec30d99f342ac06d34
16024 Author: Steven G. Johnson <stevenj@fftw.org>
16025 Date: Sun Sep 15 22:56:44 2002 -0400
16026
16027 use md5sig
16028
16029 commit 7f2631f48f2874827ca50e2c9ee4d59ddf861ba3
16030 Author: Steven G. Johnson <stevenj@fftw.org>
16031 Date: Sun Sep 15 22:55:41 2002 -0400
16032
16033 md5sig typedef
16034
16035 commit c83d9aa4a856e2b34011a4285df02dc43937d982
16036 Author: Steven G. Johnson <stevenj@fftw.org>
16037 Date: Sun Sep 15 22:35:13 2002 -0400
16038
16039 updated
16040
16041 commit 849fd22c4bdead7cab04a20c1b63966946b2355a
16042 Author: Steven G. Johnson <stevenj@fftw.org>
16043 Date: Sun Sep 15 22:30:26 2002 -0400
16044
16045 partially-ordered impatience
16046
16047 commit f811a39af185c82590b34fd1439901b8cbf32d03
16048 Author: Matteo Frigo <athena@fftw.org>
16049 Date: Sat Sep 14 19:47:56 2002 -0400
16050
16051 Removed all that planner inheritance crap.
16052
16053 commit 74cf5ca97fc18b5d64c869c64575c0095f8b81c2
16054 Author: Steven G. Johnson <stevenj@fftw.org>
16055 Date: Sat Sep 14 16:35:28 2002 -0400
16056
16057 string.h is used for more than strlen
16058
16059 commit 7f974585ea055241b1339d303ffdb472305c7d75
16060 Author: Matteo Frigo <athena@fftw.org>
16061 Date: Sat Sep 14 12:19:13 2002 -0400
16062
16063 Reduced hashtable size by 1/6 (on 32-bit machines) at the expense
16064 of messier planner.
16065
16066 commit 8b1efa0ba0e2a490fc04c66900ad41248a55c86c
16067 Author: Matteo Frigo <athena@fftw.org>
16068 Date: Sat Sep 14 08:31:29 2002 -0400
16069
16070 Only print wisdom if verbose > 3
16071
16072 commit abd7a17545150645bb864c140559ba794257a897
16073 Author: Matteo Frigo <athena@fftw.org>
16074 Date: Sat Sep 14 07:56:56 2002 -0400
16075
16076 Changed syntax of temporaries to avoid shadowing library functions
16077 (which is harmless but I hate the warning)
16078
16079 commit a120b53fd271fad4f9b879ff6247840764061813
16080 Author: Steven G. Johnson <stevenj@fftw.org>
16081 Date: Fri Sep 13 23:07:39 2002 -0400
16082
16083 only add warnings in debug/maintainer mode, and add a few more warning flags; eliminate more warnings; add support for posix_memalign (broken in glibc, grrr)
16084
16085 commit 7832eabf884004c42c3e4089fe637e205f47732e
16086 Author: Matteo Frigo <athena@fftw.org>
16087 Date: Fri Sep 13 21:57:50 2002 -0400
16088
16089 Explicit cast
16090
16091 commit d5127e37db1b557049933fe9aff91d9c3b0a1dc0
16092 Author: Matteo Frigo <athena@fftw.org>
16093 Date: Fri Sep 13 21:54:50 2002 -0400
16094
16095 Use double-hashing. This allows a slightly higher load factor
16096 at the expense of a messier computation of the hashtable size.
16097
16098 commit e689e22a6e1b981c379989a760186035fa18939c
16099 Author: Steven G. Johnson <stevenj@fftw.org>
16100 Date: Fri Sep 13 17:53:13 2002 -0400
16101
16102 typo
16103
16104 commit 1d2a159b2078ef8c6063fad80d7358fd30bd4f9d
16105 Author: Matteo Frigo <athena@fftw.org>
16106 Date: Fri Sep 13 15:36:07 2002 -0400
16107
16108 Slight change in hash table growth functions.
16109
16110 commit 9e1d9f0454bc70a807bcdb0f9ff25ed18a7c9903
16111 Author: Matteo Frigo <athena@fftw.org>
16112 Date: Fri Sep 13 14:58:22 2002 -0400
16113
16114 More statistics.
16115
16116 commit e1049bcf9446871a4ed34cebaae6b5b542dbca53
16117 Author: Matteo Frigo <athena@fftw.org>
16118 Date: Fri Sep 13 10:13:02 2002 -0400
16119
16120 Clearer logic.
16121
16122 commit 4dda68614273939d7843da329ab6c8b4da2e7bb6
16123 Author: Matteo Frigo <athena@fftw.org>
16124 Date: Fri Sep 13 10:11:10 2002 -0400
16125
16126 Oops.
16127
16128 commit 223f36a95fc7bd42e3b2d4bac8ad506cc2e4c8d9
16129 Author: Matteo Frigo <athena@fftw.org>
16130 Date: Fri Sep 13 09:31:46 2002 -0400
16131
16132 Cleaned up
16133
16134 commit c78314bd598dfb1c7e54f18fc2d050240910de4c
16135 Author: Matteo Frigo <athena@fftw.org>
16136 Date: Fri Sep 13 09:16:07 2002 -0400
16137
16138 Deal properly with infeasible problems.
16139
16140 commit 875f159755baff40c2dd02f462c6bc36c49fbc59
16141 Author: Matteo Frigo <athena@fftw.org>
16142 Date: Fri Sep 13 07:15:06 2002 -0400
16143
16144 Redundantly initialize hash table to prevent valgrind warnings.
16145
16146 commit b7047a11d0b3e41e53e1890f73135be6f2ce3b2c
16147 Author: Matteo Frigo <athena@fftw.org>
16148 Date: Thu Sep 12 19:00:22 2002 -0400
16149
16150 Removed relics from past.
16151
16152 commit 4cae827eaf456e69f3155183afd52e4c0216c980
16153 Author: Matteo Frigo <athena@fftw.org>
16154 Date: Thu Sep 12 18:53:44 2002 -0400
16155
16156 md5hash a problem only once.
16157
16158 commit a1ef1699bff263e0141cd43801c7a4ff3431389e
16159 Author: Matteo Frigo <athena@fftw.org>
16160 Date: Thu Sep 12 16:33:49 2002 -0400
16161
16162 Renamed k7 codelets
16163
16164 commit c4367d998eeed60d4618b8a5b54162d500b84271
16165 Author: Steven G. Johnson <stevenj@fftw.org>
16166 Date: Thu Sep 12 16:32:03 2002 -0400
16167
16168 FORBID_DHT_R2HC -> DHT_R2HC_VERBOTEN for consistency
16169
16170 commit 39a9858e45ca542695b9419c09ec6b61b09a6004
16171 Author: Steven G. Johnson <stevenj@fftw.org>
16172 Date: Thu Sep 12 16:28:43 2002 -0400
16173
16174 removed obsolete macro
16175
16176 commit bd1d1de9ba94e111921e911a49de82fe4ff2d16e
16177 Author: Matteo Frigo <athena@fftw.org>
16178 Date: Thu Sep 12 16:20:39 2002 -0400
16179
16180 Split flags in SIMD code.
16181
16182 commit b9fbfffc3ee26e56c4c16448ced8db523670de55
16183 Author: Matteo Frigo <athena@fftw.org>
16184 Date: Thu Sep 12 16:18:51 2002 -0400
16185
16186 Forgot to fix threads
16187
16188 commit 1d3447ab63c27d4bd97beb41882ca34addd0df18
16189 Author: Matteo Frigo <athena@fftw.org>
16190 Date: Thu Sep 12 16:10:05 2002 -0400
16191
16192 Split flags into planner_flags and problem_flags
16193
16194 commit 075ff4047c6c5a98bd268a3bae692df6a9ec1d84
16195 Author: Steven G. Johnson <stevenj@fftw.org>
16196 Date: Thu Sep 12 15:46:56 2002 -0400
16197
16198 tetrameter
16199
16200 commit ff7f0235dd4460a5e3c332725151037107514954
16201 Author: Matteo Frigo <athena@fftw.org>
16202 Date: Thu Sep 12 15:11:21 2002 -0400
16203
16204 Overwrite less impatient solutions properly.
16205
16206 commit b470f419700398ec14357990abeb69aa6eb4d857
16207 Author: Matteo Frigo <athena@fftw.org>
16208 Date: Thu Sep 12 11:29:16 2002 -0400
16209
16210 Oops.
16211
16212 commit 1ae2a65b2895b51b43f316fa11fcc932ed127ae2
16213 Author: Matteo Frigo <athena@fftw.org>
16214 Date: Thu Sep 12 10:58:56 2002 -0400
16215
16216 Keep less impatient solution in case of conflict. Paranoid
16217 cast to uint in certain places.
16218
16219 commit 640b1f4df72028daa4293c304e53af0da7f31c36
16220 Author: Matteo Frigo <athena@fftw.org>
16221 Date: Thu Sep 12 10:02:51 2002 -0400
16222
16223 Complete reimplementation of planner hash table.
16224
16225 commit 40f47f4111154bd1e17e44f87908228ede39af18
16226 Author: Matteo Frigo <athena@fftw.org>
16227 Date: Thu Sep 12 07:58:45 2002 -0400
16228
16229 planner->cnt was not properly decremented.
16230
16231 commit fda67f21284b158043d7ba171a81a933a3891e1a
16232 Author: Steven G. Johnson <stevenj@fftw.org>
16233 Date: Wed Sep 11 17:52:39 2002 -0400
16234
16235 typo
16236
16237 commit ebe84b30659823364a95bfd646512b387bef4629
16238 Author: Matteo Frigo <athena@fftw.org>
16239 Date: Mon Sep 9 17:10:45 2002 -0400
16240
16241 Simplified
16242
16243 commit 230458a658da6fa62fac4ccd66918f38442df00b
16244 Author: Matteo Frigo <athena@fftw.org>
16245 Date: Mon Sep 9 17:03:32 2002 -0400
16246
16247 Always overwrite old wisdom with new, in case the old is
16248 corrupt/conclicting.
16249
16250 commit 2d91c8d00acc06eb228d7ba5492e8f6ec7ee24d9
16251 Author: Steven G. Johnson <stevenj@fftw.org>
16252 Date: Mon Sep 9 16:56:03 2002 -0400
16253
16254 added quote/joke
16255
16256 commit 0173e3dc140cec9b061b4cf0cc0a626e41105e1f
16257 Author: Matteo Frigo <athena@fftw.org>
16258 Date: Mon Sep 9 15:04:47 2002 -0400
16259
16260 Completed wisdom import
16261
16262 commit dee4de2b0b7a9c60d9501d67e5ab17c5e828e474
16263 Author: Matteo Frigo <athena@fftw.org>
16264 Date: Mon Sep 9 10:14:22 2002 -0400
16265
16266 Slight cleanup of md5 interface.
16267
16268 commit b990a36ddb7c8ec04d248fcbbbc4a135827cf7b2
16269 Author: Matteo Frigo <athena@fftw.org>
16270 Date: Tue Sep 3 22:32:43 2002 -0400
16271
16272 More consistent protocol between planner and inferior.
16273
16274 commit fbf287fea9e51a6eb2a62030a115aea58ef2f630
16275 Author: Matteo Frigo <athena@fftw.org>
16276 Date: Tue Sep 3 21:08:30 2002 -0400
16277
16278 I can't think of any situation where saving infeasible problems would
16279 be desirable. Removed relevant code.
16280
16281 commit c194f7f7a34d6909408bcd55e543f4cbf7a60a2f
16282 Author: Matteo Frigo <athena@fftw.org>
16283 Date: Tue Sep 3 20:57:03 2002 -0400
16284
16285 Encoder registrar's names in wisdom. Remove export_conf, since
16286 a separate program can now generate it.
16287
16288 commit e9a30d633c905ac3eba878af7839ad73f153dd06
16289 Author: Matteo Frigo <athena@fftw.org>
16290 Date: Tue Sep 3 15:11:06 2002 -0400
16291
16292 Fixed typo
16293
16294 commit 51b8ddee6eda85459d68909df089b7e251fb65ca
16295 Author: Matteo Frigo <athena@fftw.org>
16296 Date: Tue Sep 3 14:52:45 2002 -0400
16297
16298 Fixed broken trochaic meter.
16299
16300 commit eb531c7d3242141b4603cca8f270d88bab0f48e3
16301 Author: Matteo Frigo <athena@fftw.org>
16302 Date: Tue Sep 3 09:49:50 2002 -0400
16303
16304 Initialize planner->score. It is correct to leave it uninitialized,
16305 but I don't want people to send reports about purify complaining.
16306
16307 commit 6a000fc379ab96b4ea9310e76f5391af7d6131a8
16308 Author: Matteo Frigo <athena@fftw.org>
16309 Date: Tue Sep 3 09:03:46 2002 -0400
16310
16311 More latin silliness
16312
16313 commit 3b9fecd5d0365958954cc149251fed5b9ce07ddc
16314 Author: Steven G. Johnson <stevenj@fftw.org>
16315 Date: Mon Sep 2 17:57:32 2002 -0400
16316
16317 updated
16318
16319 commit 28a40bce8ba8e91b240d4f6e7ddcf55b68f05e77
16320 Author: Steven G. Johnson <stevenj@fftw.org>
16321 Date: Mon Sep 2 17:33:49 2002 -0400
16322
16323 added clock() getseconds timer
16324
16325 commit c004f7f51d23ac8f1c6220ff4a18e83d2e4fe7cf
16326 Author: Matteo Frigo <athena@fftw.org>
16327 Date: Mon Sep 2 16:16:58 2002 -0400
16328
16329 Oops
16330
16331 commit 3f227ec57b346fe8688fbf2e08dfcf6cc3c3c955
16332 Author: Matteo Frigo <athena@fftw.org>
16333 Date: Mon Sep 2 15:58:19 2002 -0400
16334
16335 Experimental INDIRECT_VERBOTEN flag (not used)
16336
16337 commit 802f348a8a8c0bd97e15ed827e8092ab358abbe2
16338 Author: Matteo Frigo <athena@fftw.org>
16339 Date: Mon Sep 2 15:36:21 2002 -0400
16340
16341 Do not allow buffering in children of indirect solvers.
16342
16343 commit f081fc5e202141350664e3d9adbe947d5331ab9f
16344 Author: Matteo Frigo <athena@fftw.org>
16345 Date: Mon Sep 2 15:02:11 2002 -0400
16346
16347 Oops
16348
16349 commit 08826857c28146b6366770565a9971eb4bdd9505
16350 Author: Matteo Frigo <athena@fftw.org>
16351 Date: Mon Sep 2 14:32:28 2002 -0400
16352
16353 Hash sizeof(R) as part of wisdom.
16354
16355 commit ff803ad22f9a5a980be0ab10aebd18ab210557de
16356 Author: Steven G. Johnson <stevenj@fftw.org>
16357 Date: Mon Sep 2 13:47:57 2002 -0400
16358
16359 added --enable-float synonym for --enable-single (since with have --enable-long-double)
16360
16361 commit 99672a129c0032eeb3c99424d16f16547e1fff5d
16362 Author: Matteo Frigo <athena@fftw.org>
16363 Date: Mon Sep 2 13:46:08 2002 -0400
16364
16365 zerotens is now in its own file, so it does not cause dft to be linked
16366 in if only rdft is used.
16367
16368 commit fe35f517845e4692b46077037dc40b155c9fa500
16369 Author: Matteo Frigo <athena@fftw.org>
16370 Date: Mon Sep 2 11:56:37 2002 -0400
16371
16372 Removed unused var.
16373
16374 commit 2a4e8a9a1121f4adb852256865ae2b52743d6f40
16375 Author: Matteo Frigo <athena@fftw.org>
16376 Date: Mon Sep 2 11:55:33 2002 -0400
16377
16378 Split insert() in preparation for wisdom import
16379
16380 commit fc1cf1dfa9a72fe8968426c4e694b7336926a03d
16381 Author: Matteo Frigo <athena@fftw.org>
16382 Date: Mon Sep 2 11:46:57 2002 -0400
16383
16384 Moved debugging infrastructure to test directory so that it is not
16385 linked into the shared library.
16386
16387 commit 07a825b37e850981bc9fa18460538346cc7dd137
16388 Author: Matteo Frigo <athena@fftw.org>
16389 Date: Mon Sep 2 11:04:54 2002 -0400
16390
16391 Reactivated wisdom export
16392
16393 commit dfcc8fd2b155015d11c95762e4384ae139f922c6
16394 Author: Matteo Frigo <athena@fftw.org>
16395 Date: Sun Sep 1 21:30:58 2002 -0400
16396
16397 Dump errors to stderr, not stdout.
16398
16399 commit 44e1a88d3527239c405ca268888b3695c902c807
16400 Author: Matteo Frigo <athena@fftw.org>
16401 Date: Sun Sep 1 21:26:38 2002 -0400
16402
16403 Removed traverse.c.
16404 traverse.c is no longer need for plan blessing. I figured out
16405 a way to avoid using it in planner-score.c, so the file is
16406 now redundant.
16407
16408 commit 1c9ef6ccf7c373d274215c83bbede0fea30682c7
16409 Author: Matteo Frigo <athena@fftw.org>
16410 Date: Sun Sep 1 19:51:50 2002 -0400
16411
16412 Removed code made obsolete by new MD5 scheme: problem equality
16413 tests, scanners, and associated list of problem kinds.
16414
16415 commit 726b571dc2949d3369fc09237b41f99ef8ce058b
16416 Author: Matteo Frigo <athena@fftw.org>
16417 Date: Sun Sep 1 19:22:54 2002 -0400
16418
16419 Started md5 implementation
16420
16421 commit d89348364f45c8f635356d8ae1047f6cb8508158
16422 Author: Matteo Frigo <athena@fftw.org>
16423 Date: Sat Aug 31 14:00:04 2002 -0400
16424
16425 Keep track of hit rate
16426
16427 commit 971b014a7698a2b54a6dec16b486b7953a1f41e0
16428 Author: Matteo Frigo <athena@fftw.org>
16429 Date: Sat Aug 31 12:44:04 2002 -0400
16430
16431 Only dump when verbose > 4
16432
16433 commit 018df5704e37547209aeaecadc50811defcf5f2b
16434 Author: Matteo Frigo <athena@fftw.org>
16435 Date: Sat Aug 31 09:55:57 2002 -0400
16436
16437 Debugging infrastructure
16438
16439 commit 837cecb7a386caabb14f3b41518083f18b364fc7
16440 Author: Matteo Frigo <athena@fftw.org>
16441 Date: Sat Aug 31 09:21:48 2002 -0400
16442
16443 Use debug infrastructure to dump planner.
16444
16445 commit dfaf407162a50f7a77ef3496dbaf754b27551029
16446 Author: Matteo Frigo <athena@fftw.org>
16447 Date: Fri Aug 30 21:29:10 2002 -0400
16448
16449 Do not store plans in planner, plus general planner cleanup.
16450
16451 commit e74dd299a89b62e7d0e51be3293163325b5044ea
16452 Author: Steven G. Johnson <stevenj@fftw.org>
16453 Date: Fri Aug 30 18:07:52 2002 -0400
16454
16455 renamed IN_DHT_R2HC to the more general FORBID_DHT_R2HC
16456
16457 commit 904ff75e31a716b0c9d97f7e4efd425bd4309c06
16458 Author: Steven G. Johnson <stevenj@fftw.org>
16459 Date: Fri Aug 30 18:07:21 2002 -0400
16460
16461 eliminated unused var
16462
16463 commit 60f3382238de7ce933a192a923f06657900e4853
16464 Author: Matteo Frigo <athena@fftw.org>
16465 Date: Fri Aug 30 12:09:48 2002 -0400
16466
16467 Score planner was not working correctly when using wisdom. Fixed.
16468
16469 commit 0522d2fcf8b00ec9f1f3cdbd38cfa03d764e1154
16470 Author: Matteo Frigo <athena@fftw.org>
16471 Date: Fri Aug 30 08:20:48 2002 -0400
16472
16473 Use hash table in debug malloc
16474
16475 commit e451f6d74620eefd71304a543d0eb48ab9ea953d
16476 Author: Steven G. Johnson <stevenj@fftw.org>
16477 Date: Fri Aug 30 02:45:15 2002 -0400
16478
16479 listed some good stuff
16480
16481 commit 4d5aeb7a8917367942f1e798bd19d5c3be2feaf1
16482 Author: Steven G. Johnson <stevenj@fftw.org>
16483 Date: Fri Aug 30 02:17:30 2002 -0400
16484
16485 timed planner
16486
16487 commit 3bb76589f0d1efc68b0a82eeecbdf30748a991fd
16488 Author: Steven G. Johnson <stevenj@fftw.org>
16489 Date: Fri Aug 30 02:07:00 2002 -0400
16490
16491 fma?
16492
16493 commit e231f879031ab34c3a8fa8a8da0fbf642cd88a0b
16494 Author: Steven G. Johnson <stevenj@fftw.org>
16495 Date: Fri Aug 30 02:05:55 2002 -0400
16496
16497 update
16498
16499 commit 1f29de7940d8c29acc6b608deec341cd982cc706
16500 Author: Steven G. Johnson <stevenj@fftw.org>
16501 Date: Fri Aug 30 01:31:47 2002 -0400
16502
16503 rader-dht -> dht-rader
16504
16505 commit 888439dcea7af2d64300c776238afa7c5c18a372
16506 Author: Steven G. Johnson <stevenj@fftw.org>
16507 Date: Fri Aug 30 01:21:37 2002 -0400
16508
16509 add DHT solver, and break up rader-dht and r2hc-hc2r
16510
16511 commit df668dba33c6181cb6feb58dba6f649c89d73fe6
16512 Author: Steven G. Johnson <stevenj@fftw.org>
16513 Date: Thu Aug 29 23:20:35 2002 -0400
16514
16515 another option
16516
16517 commit 213d66b5bcf73e5525c97bb6dc9461808600d483
16518 Author: Steven G. Johnson <stevenj@fftw.org>
16519 Date: Thu Aug 29 22:55:29 2002 -0400
16520
16521 generalized indirect solvers for fftw2-like buffering and more
16522
16523 commit 795353001d9c3db1d30d5def55b8671cb4eb67b0
16524 Author: Steven G. Johnson <stevenj@fftw.org>
16525 Date: Thu Aug 29 18:08:16 2002 -0400
16526
16527 tensor_max_index and tensor_min_stride are now both unsigned
16528
16529 commit d59c4e92144b248504c9c01cae0ea5d3f4e0aa60
16530 Author: Steven G. Johnson <stevenj@fftw.org>
16531 Date: Thu Aug 29 17:58:35 2002 -0400
16532
16533 added iabs.c, and tensor_min_stride returns min absolute value
16534
16535 commit 9247f8665076f514844f3fd4a0478f9988313251
16536 Author: Steven G. Johnson <stevenj@fftw.org>
16537 Date: Thu Aug 29 17:31:39 2002 -0400
16538
16539 bug fix in cldrest hc2c/c2hc copy loops
16540
16541 commit c8d575230e1d18331b0a1d8fe22d6c8fcfd70ce4
16542 Author: Matteo Frigo <athena@fftw.org>
16543 Date: Thu Aug 29 13:45:08 2002 -0400
16544
16545 Added things to do.
16546
16547 commit c8b62313d7952baa412a1c18427473c010451303
16548 Author: Steven G. Johnson <stevenj@fftw.org>
16549 Date: Thu Aug 29 13:10:04 2002 -0400
16550
16551 added automake prereq
16552
16553 commit 3a6be2745802ae618bbb0521fe5e54e17e1eecb2
16554 Author: Matteo Frigo <athena@fftw.org>
16555 Date: Thu Aug 29 08:36:36 2002 -0400
16556
16557 Use indexed addressing
16558
16559 commit b27567a442018af7ec7cf782f117bfc9f5476e08
16560 Author: Matteo Frigo <athena@fftw.org>
16561 Date: Thu Aug 29 08:20:55 2002 -0400
16562
16563 Ooops
16564
16565 commit dc19f8daf30d11be571d8856cb10e8d8a9046b6c
16566 Author: Matteo Frigo <athena@fftw.org>
16567 Date: Thu Aug 29 07:45:37 2002 -0400
16568
16569 Oops
16570
16571 commit ee4bb3eb29224fe9ef1e5c3c8416256b04a22599
16572 Author: Steven G. Johnson <stevenj@fftw.org>
16573 Date: Thu Aug 29 02:32:13 2002 -0400
16574
16575 updates to win32 threads code (ick)
16576
16577 commit 6cfa2e60b0f2831342f21a72eb3732bf80366250
16578 Author: Steven G. Johnson <stevenj@fftw.org>
16579 Date: Thu Aug 29 01:44:33 2002 -0400
16580
16581 added threaded version
16582
16583 commit 8cc323cbe02b7c270bb664e2c8acedce4ddf48b5
16584 Author: Steven G. Johnson <stevenj@fftw.org>
16585 Date: Wed Aug 28 19:47:21 2002 -0400
16586
16587 fix make dist
16588
16589 commit 43fa7922084aae1bdb1b69aff7109aed56e1f025
16590 Author: Steven G. Johnson <stevenj@fftw.org>
16591 Date: Wed Aug 28 15:09:03 2002 -0400
16592
16593 whoops, bugfix for inverse
16594
16595 commit b3136883e3f02c5bbb68338e01d134aa2b2a25eb
16596 Author: Matteo Frigo <athena@fftw.org>
16597 Date: Wed Aug 28 14:50:34 2002 -0400
16598
16599 Use C9x convention for naming (fftwf etc.). Removed installable header
16600 files since they will be part of the API.
16601
16602 commit ed3b5e17a932fe32d1a9397642c6e043eb3dbc40
16603 Author: Steven G. Johnson <stevenj@fftw.org>
16604 Date: Tue Aug 27 23:34:00 2002 -0400
16605
16606 allow _1 variants to accept rnk 0 (sz 1) problems
16607
16608 commit 004227a749ea2b1990047e29b15826437335239f
16609 Author: Steven G. Johnson <stevenj@fftw.org>
16610 Date: Tue Aug 27 15:56:09 2002 -0400
16611
16612 updated
16613
16614 commit ca46171fc03dc63c4a93462abded63a039acdd82
16615 Author: Matteo Frigo <athena@fftw.org>
16616 Date: Mon Aug 26 20:14:56 2002 -0400
16617
16618 Loop unroll is useless
16619
16620 commit 6528250479b8700bc9082f776d5f3c340080175a
16621 Author: Matteo Frigo <athena@fftw.org>
16622 Date: Mon Aug 26 20:00:41 2002 -0400
16623
16624 Use indexed addressing
16625
16626 commit 8f4d60a4abc3e10d5e4e2739119422babe433a1d
16627 Author: Matteo Frigo <athena@fftw.org>
16628 Date: Mon Aug 26 19:46:46 2002 -0400
16629
16630 Use indexed addressing in transpose routines. (Seems to be
16631 slightly better on athlon.)
16632
16633 commit aac3c6a8800ddbc174774e9eeeb32f054c8af6a6
16634 Author: Steven G. Johnson <stevenj@fftw.org>
16635 Date: Mon Aug 26 12:59:44 2002 -0400
16636
16637 added comment about stability
16638
16639 commit bdaced931410f8e984ac5c3a833e842d6ffa8965
16640 Author: Matteo Frigo <athena@fftw.org>
16641 Date: Mon Aug 26 07:43:53 2002 -0400
16642
16643 Approximate opcount
16644
16645 commit 46c5151b696b0d6f0ff98f952d8a13283d95877b
16646 Author: Matteo Frigo <athena@fftw.org>
16647 Date: Mon Aug 26 06:38:49 2002 -0400
16648
16649 Finished rdft2 via dft/rdft
16650
16651 commit c9122c8dbfcac3ae13893442c0ad348e410b646b
16652 Author: Steven G. Johnson <stevenj@fftw.org>
16653 Date: Mon Aug 26 00:15:59 2002 -0400
16654
16655 some updates
16656
16657 commit b049bb9502bd3c00a3a8f1ff3cfd3c5596e9e7c0
16658 Author: Steven G. Johnson <stevenj@fftw.org>
16659 Date: Mon Aug 26 00:05:53 2002 -0400
16660
16661 rdft kind is now per-dimension, added rdft/rank-geq2
16662
16663 commit 32db021f7eabd57af68c88e1e6266589a828df35
16664 Author: Steven G. Johnson <stevenj@fftw.org>
16665 Date: Sun Aug 25 22:45:38 2002 -0400
16666
16667 added note
16668
16669 commit e174f61162d8e897e181f1ae8f01b5c8ba4122d8
16670 Author: Steven G. Johnson <stevenj@fftw.org>
16671 Date: Sun Aug 25 22:28:12 2002 -0400
16672
16673 must zero real sz
16674
16675 commit 7881bf396852115443bd3ce1dbdce177d8d64b6e
16676 Author: Steven G. Johnson <stevenj@fftw.org>
16677 Date: Sun Aug 25 22:06:52 2002 -0400
16678
16679 unified pickdim funcs
16680
16681 commit 9b588fdbd50ab5d47cb936aae0569b6f9b54fc4c
16682 Author: fftw <none>
16683 Date: Sun Aug 25 14:10:55 2002 -0400
16684
16685 silence warnings
16686
16687 commit f58dff38cc5c75f8c508e971a1ffd286be572f87
16688 Author: Matteo Frigo <athena@fftw.org>
16689 Date: Sun Aug 25 13:16:49 2002 -0400
16690
16691 I had to add another planner flag to record whether pointers could
16692 become unaligned because of vrank-geq1 solvers (these solvers only
16693 plan the first element of a vector problem, but the second element
16694 may have a different alignment). This addition is ugly, but I don't
16695 see any way around it.
16696
16697 commit 3633f42453ac103289d0c471630892680f1b0625
16698 Author: Matteo Frigo <athena@fftw.org>
16699 Date: Sun Aug 25 10:18:25 2002 -0400
16700
16701 Added thoughts
16702
16703 commit fb9c1acef1a3499a8629190b172a1ec0430260b4
16704 Author: Matteo Frigo <athena@fftw.org>
16705 Date: Sun Aug 25 10:08:59 2002 -0400
16706
16707 Implemented rdft2 via vector rdft + radix2 step
16708
16709 commit 8bc1aed075f15afc6de9d82adc44d6ab8b5e50f6
16710 Author: Matteo Frigo <athena@fftw.org>
16711 Date: Sat Aug 24 17:43:54 2002 -0400
16712
16713 Stylistic changes
16714
16715 commit 188add2600049e4313ba1e77c1976b887544ae90
16716 Author: Matteo Frigo <athena@fftw.org>
16717 Date: Sat Aug 24 11:19:30 2002 -0400
16718
16719 Simplified mktwiddle interface
16720
16721 commit 1c91434a8fea606141e28014376c2d2c9937f1b7
16722 Author: Matteo Frigo <athena@fftw.org>
16723 Date: Sat Aug 24 11:05:08 2002 -0400
16724
16725 Unification of certain vector computations. rdft2-dft is now a
16726 vector transform.
16727
16728 commit f9311503a90a428a78350116e1bf47c6ffefddcc
16729 Author: Matteo Frigo <athena@fftw.org>
16730 Date: Fri Aug 23 20:21:25 2002 -0400
16731
16732 Intel compiler seems to be still buggy
16733
16734 commit de1bb9192bc2740a6fbe70bbac497a1ac34450f0
16735 Author: Matteo Frigo <athena@fftw.org>
16736 Date: Fri Aug 23 16:07:12 2002 -0400
16737
16738 Streamlined twiddle protocol
16739
16740 commit e2a28ed96b7b40db5f3fe6b72852acf550cdaca4
16741 Author: Matteo Frigo <athena@fftw.org>
16742 Date: Fri Aug 23 13:22:17 2002 -0400
16743
16744 Implemented rdft2 via dft (forward only for now)
16745
16746 commit 17d57ef85db79c55dcd5c77260618e798833e1d0
16747 Author: Matteo Frigo <athena@fftw.org>
16748 Date: Thu Aug 22 11:29:29 2002 -0400
16749
16750 More cleanup of verify
16751
16752 commit 0eb03788a7c1c13953638a19182235738511b77a
16753 Author: Matteo Frigo <athena@fftw.org>
16754 Date: Thu Aug 22 11:16:03 2002 -0400
16755
16756 Changed error criterion because old one was too strict
16757
16758 commit e97f092fbcd955e08b36522352e0e9b94cfd473e
16759 Author: Matteo Frigo <athena@fftw.org>
16760 Date: Thu Aug 22 11:15:17 2002 -0400
16761
16762 Disable shared
16763
16764 commit f611df2e683eea128367d652cf12e2c4a2b3dfb1
16765 Author: Matteo Frigo <athena@fftw.org>
16766 Date: Thu Aug 22 09:19:12 2002 -0400
16767
16768 Added thoughts
16769
16770 commit 6ad63b2082094c83de1fe5a01400423c249564a1
16771 Author: Matteo Frigo <athena@fftw.org>
16772 Date: Thu Aug 22 09:17:28 2002 -0400
16773
16774 Oops
16775
16776 commit 42381c1bcded2b7d1854300ff5de0addfca36575
16777 Author: Matteo Frigo <athena@fftw.org>
16778 Date: Thu Aug 22 09:11:34 2002 -0400
16779
16780 Do not use inline. Minor changes.
16781
16782 commit b9b2448db23e3d5d0d6d10b4bf3fe1858a847a05
16783 Author: Steven G. Johnson <stevenj@fftw.org>
16784 Date: Wed Aug 21 16:23:26 2002 -0400
16785
16786 more commented flags
16787
16788 commit 1c316981c3ed81a4550d6ba9bfa733745532bcf2
16789 Author: Steven G. Johnson <stevenj@fftw.org>
16790 Date: Tue Aug 20 19:44:43 2002 -0400
16791
16792 added DCT-IV and DST-IV
16793
16794 commit c15e995b01901e957e42c369b5341b6dbeaf3ac2
16795 Author: Matteo Frigo <athena@fftw.org>
16796 Date: Tue Aug 20 16:01:36 2002 -0400
16797
16798 Slight improvement in twiddle scheme
16799
16800 commit 8ba1ef4db7a3866fae35bd1825a5a5c35ae5673f
16801 Author: Steven G. Johnson <stevenj@fftw.org>
16802 Date: Tue Aug 20 15:31:54 2002 -0400
16803
16804 name fix
16805
16806 commit 5b56bb057b02f41413a9d5436a3d9d1c50a0e7f5
16807 Author: Steven G. Johnson <stevenj@fftw.org>
16808 Date: Tue Aug 20 15:16:48 2002 -0400
16809
16810 removed extraneous variable
16811
16812 commit d8b1080be08abcfa55a88f38d7bc677d99a9c2d9
16813 Author: Matteo Frigo <athena@fftw.org>
16814 Date: Tue Aug 20 11:46:29 2002 -0400
16815
16816 Oops
16817
16818 commit b500a0d285f5b95a9b88952b8830aa8423be9332
16819 Author: Matteo Frigo <athena@fftw.org>
16820 Date: Tue Aug 20 08:37:45 2002 -0400
16821
16822 Still playing around
16823
16824 commit 7a44ac35618394bd3715c928e9dc0b3a7a149f0e
16825 Author: Matteo Frigo <athena@fftw.org>
16826 Date: Mon Aug 19 19:56:29 2002 -0400
16827
16828 Playing around with addition chain
16829
16830 commit ac8dfff733ce38c8b013523ff4e9fc9888456989
16831 Author: Steven G. Johnson <stevenj@fftw.org>
16832 Date: Mon Aug 19 19:48:56 2002 -0400
16833
16834 comments
16835
16836 commit 175b3b2cec3441b1a0e34d03343e9f581f0e030e
16837 Author: Steven G. Johnson <stevenj@fftw.org>
16838 Date: Mon Aug 19 19:45:35 2002 -0400
16839
16840 comment fixes
16841
16842 commit 0b6386c1ef38de51383f1306c82e7966b0db0d52
16843 Author: Steven G. Johnson <stevenj@fftw.org>
16844 Date: Mon Aug 19 19:40:18 2002 -0400
16845
16846 added reodft stuff
16847
16848 commit 8d4aef3c5738367c010a1bfd3004c94f73281950
16849 Author: Matteo Frigo <athena@fftw.org>
16850 Date: Sun Aug 18 19:44:14 2002 -0400
16851
16852 Sync with nbenchfft
16853
16854 commit 6ec9197550f61b20dad2a8e238bd00da3bf2cf23
16855 Author: Matteo Frigo <athena@fftw.org>
16856 Date: Sun Aug 18 16:02:37 2002 -0400
16857
16858 Economy of thought
16859
16860 commit 70610d2a45fcebc6b9c3c61e5dd6caa96d292b4f
16861 Author: Steven G. Johnson <stevenj@fftw.org>
16862 Date: Sat Aug 17 15:52:05 2002 -0400
16863
16864 distribute addchain.c
16865
16866 commit 2fea59351e2abaeec9bb1ea094d06097282bdf7e
16867 Author: Matteo Frigo <athena@fftw.org>
16868 Date: Sat Aug 17 14:09:11 2002 -0400
16869
16870 Nothing serious
16871
16872 commit c5ef4a2ddba0963a8c9a388edf050c5ee2fbbb00
16873 Author: Matteo Frigo <athena@fftw.org>
16874 Date: Sat Aug 17 10:47:59 2002 -0400
16875
16876 New twiddle policy (disabled for now)
16877
16878 commit bf62c3f3bb4be6257869db7d46f69b694c7a2688
16879 Author: Steven G. Johnson <stevenj@fftw.org>
16880 Date: Fri Aug 16 23:44:28 2002 -0400
16881
16882 bug fix for hc2r (must use inverse dft)
16883
16884 commit e7434c44d6c3f77e761da5e7a8e850f48c6fb872
16885 Author: Matteo Frigo <athena@fftw.org>
16886 Date: Fri Aug 16 20:27:10 2002 -0400
16887
16888 New log3 twiddle policy
16889
16890 commit d0f1857c45c12d35cbd9fded016c3b7ceac70aa7
16891 Author: Matteo Frigo <athena@fftw.org>
16892 Date: Fri Aug 16 18:10:33 2002 -0400
16893
16894 More verify cleanup
16895
16896 commit c8f750da8aab093581b6be29ff8d781906ca771b
16897 Author: Matteo Frigo <athena@fftw.org>
16898 Date: Fri Aug 16 16:31:19 2002 -0400
16899
16900 Oops
16901
16902 commit eae86b4ff97b783a93ebd6f7b0a6352cea48359c
16903 Author: Matteo Frigo <athena@fftw.org>
16904 Date: Fri Aug 16 15:22:36 2002 -0400
16905
16906 Economy of thought (and code)
16907
16908 commit d7bdf2e9b5a011b19bb16a9d12d5d763a3196c2a
16909 Author: Matteo Frigo <athena@fftw.org>
16910 Date: Fri Aug 16 14:05:45 2002 -0400
16911
16912 Added comment
16913
16914 commit 4bec01a2c6ea089d18a81b8d7d3ce649cbe80fe8
16915 Author: Matteo Frigo <athena@fftw.org>
16916 Date: Fri Aug 16 12:57:43 2002 -0400
16917
16918 Cleaner rounding algorithm
16919
16920 commit d91cc0e5f23a61e226b2a575c23f35c79ec3ca06
16921 Author: Matteo Frigo <athena@fftw.org>
16922 Date: Fri Aug 16 11:27:43 2002 -0400
16923
16924 Can get away with shorter length in bluestein (I think).
16925
16926 commit 56113aa7d008511b8387a1d1652e03d9fd8844e7
16927 Author: Matteo Frigo <athena@fftw.org>
16928 Date: Fri Aug 16 11:08:09 2002 -0400
16929
16930 Portability improvements
16931
16932 commit b58468b7ecd1e0ff7b9a2b1236d64e357627d8a0
16933 Author: Matteo Frigo <athena@fftw.org>
16934 Date: Fri Aug 16 08:06:31 2002 -0400
16935
16936 Optionally average accuracy test over many rounds
16937
16938 commit 21b850aeaafa046e663e6bc5a42a9538c9571180
16939 Author: Matteo Frigo <athena@fftw.org>
16940 Date: Fri Aug 16 07:50:24 2002 -0400
16941
16942 More accurate formula for trig tables
16943
16944 commit ce0241125c235817e2132e938e8c9dcd3166773f
16945 Author: Matteo Frigo <athena@fftw.org>
16946 Date: Fri Aug 16 06:42:02 2002 -0400
16947
16948 Implemented accuracy test for all integers
16949
16950 commit db374e203e4d37c399e6b3d877da8cdf192ec649
16951 Author: Matteo Frigo <athena@fftw.org>
16952 Date: Thu Aug 15 18:54:44 2002 -0400
16953
16954 inv, neg: make static
16955
16956 commit 79f1c53641c0cec5612621c1f72726a81d56144e
16957 Author: Matteo Frigo <athena@fftw.org>
16958 Date: Thu Aug 15 17:25:37 2002 -0400
16959
16960 Verify was not complete for real transforms
16961
16962 commit c60e8fcdedd600b93f30f098ca49f794375e8377
16963 Author: Matteo Frigo <athena@fftw.org>
16964 Date: Thu Aug 15 16:30:03 2002 -0400
16965
16966 Oops
16967
16968 commit 688a0ef88f8ef6a8d060ad2b04ce51b4d94870b7
16969 Author: Matteo Frigo <athena@fftw.org>
16970 Date: Thu Aug 15 16:29:16 2002 -0400
16971
16972 Fixed hb codelets
16973
16974 commit 8a4d71183c0b5cd62b6f9f53f41cfd68a8b602fc
16975 Author: Matteo Frigo <athena@fftw.org>
16976 Date: Thu Aug 15 14:10:45 2002 -0400
16977
16978 Changed twiddle policy
16979
16980 commit 9905db7579db957d5ebc9f472847910d24b65e10
16981 Author: Steven G. Johnson <stevenj@fftw.org>
16982 Date: Thu Aug 15 13:32:24 2002 -0400
16983
16984 whoops
16985
16986 commit 59c9d170edb4001d3f37b64cfb2d8d48e9cb9b7d
16987 Author: Matteo Frigo <athena@fftw.org>
16988 Date: Thu Aug 15 11:01:04 2002 -0400
16989
16990 No point in libbench being a shared library
16991
16992 commit b75824c63085764eb1fbf97b83961eb0411bd969
16993 Author: Matteo Frigo <athena@fftw.org>
16994 Date: Thu Aug 15 09:48:37 2002 -0400
16995
16996 Moved accuracy test to libbench
16997
16998 commit ebac0dde6d77f268c45cfc7ba17230c547e60800
16999 Author: Matteo Frigo <athena@fftw.org>
17000 Date: Wed Aug 14 19:48:23 2002 -0400
17001
17002 Modified accuracy test
17003
17004 commit d5e2c4a63b8f9b195e7812f817cefc61617accf9
17005 Author: Matteo Frigo <athena@fftw.org>
17006 Date: Wed Aug 14 08:34:26 2002 -0400
17007
17008 Fixes for long double
17009
17010 commit 41c23eb9e18add9786e959871bcba7d1ffc44bb6
17011 Author: Matteo Frigo <athena@fftw.org>
17012 Date: Wed Aug 14 08:17:57 2002 -0400
17013
17014 Normalize input
17015
17016 commit d83e36740eaf0cd2d8ffecb25d38ffdcd6412bcb
17017 Author: Matteo Frigo <athena@fftw.org>
17018 Date: Wed Aug 14 07:26:41 2002 -0400
17019
17020 Oops
17021
17022 commit 0d312034a4b8a8ece11903c0b81aa4ce57151783
17023 Author: Matteo Frigo <athena@fftw.org>
17024 Date: Wed Aug 14 07:25:34 2002 -0400
17025
17026 Also compute relative error
17027
17028 commit 10c281df8a8195c0eb497cd3b73955807c64f06e
17029 Author: Matteo Frigo <athena@fftw.org>
17030 Date: Wed Aug 14 07:08:20 2002 -0400
17031
17032 Loop over N
17033
17034 commit 588a70753f53ef9fe7801fd3c0cd1b1f2c5da7fc
17035 Author: Matteo Frigo <athena@fftw.org>
17036 Date: Wed Aug 14 06:54:50 2002 -0400
17037
17038 simple-minded accuracy test
17039
17040 commit b25380fae97bb3af2b38f592f5393b10be1ff430
17041 Author: Steven G. Johnson <stevenj@fftw.org>
17042 Date: Wed Aug 14 03:26:06 2002 -0400
17043
17044 whoops
17045
17046 commit d32e62c62857ed17fdf4a9fa7ebb12007c8e32bc
17047 Author: Matteo Frigo <athena@fftw.org>
17048 Date: Tue Aug 13 11:42:41 2002 -0400
17049
17050 fma() stuff is too nonportable, removed
17051
17052 commit 583c58e086a592a198619d6c36fcb6137b4ea068
17053 Author: Steven G. Johnson <stevenj@fftw.org>
17054 Date: Mon Aug 12 14:07:44 2002 -0400
17055
17056 slight fix
17057
17058 commit 2be67d85e7e8c8b4db5644bdeca6cfa1a0211959
17059 Author: Steven G. Johnson <stevenj@fftw.org>
17060 Date: Mon Aug 12 14:07:18 2002 -0400
17061
17062 use table for rdft_kind_str
17063
17064 commit 331ca343e551313e04bc1c88ae8c8cd3e1dfb4fd
17065 Author: Steven G. Johnson <stevenj@fftw.org>
17066 Date: Mon Aug 12 13:43:08 2002 -0400
17067
17068 slight fixes
17069
17070 commit 8bf7bf1145ef67937cf020d64f0e9913aef84d58
17071 Author: Steven G. Johnson <stevenj@fftw.org>
17072 Date: Mon Aug 12 13:31:37 2002 -0400
17073
17074 multidimensional rdft2
17075
17076 commit 4457a7cf6bf60cff0e842bfd127e22e7b3de55e5
17077 Author: Steven G. Johnson <stevenj@fftw.org>
17078 Date: Sat Aug 10 19:33:23 2002 -0400
17079
17080 use tensor_copy_inplace
17081
17082 commit 5e370a1a072a67b940639f311e296a97150acf1c
17083 Author: Steven G. Johnson <stevenj@fftw.org>
17084 Date: Sat Aug 10 19:32:03 2002 -0400
17085
17086 bugfix, use tensor_copy_inplace
17087
17088 commit 92f280c99e002d9ee78e42967ee81bb4fcf84d2b
17089 Author: Steven G. Johnson <stevenj@fftw.org>
17090 Date: Sat Aug 10 19:30:39 2002 -0400
17091
17092 use tensor_copy_inplace
17093
17094 commit 55ee1b50c140e81f41abc05975f01393c8bd4cbd
17095 Author: Steven G. Johnson <stevenj@fftw.org>
17096 Date: Sat Aug 10 19:28:07 2002 -0400
17097
17098 added tensor_copy_inplace
17099
17100 commit ce8083b65d5ae7952d40c253896ae0e6759e73e8
17101 Author: Steven G. Johnson <stevenj@fftw.org>
17102 Date: Sat Aug 10 19:25:50 2002 -0400
17103
17104 fixed trig-function table type
17105
17106 commit 9b354635204711389328f487a058a54604d58e0a
17107 Author: Matteo Frigo <athena@fftw.org>
17108 Date: Sat Aug 10 14:41:04 2002 -0400
17109
17110 Improved trig scheme
17111
17112 commit 466d2a03411d082ab673c73582a08842f12f6846
17113 Author: Matteo Frigo <athena@fftw.org>
17114 Date: Fri Aug 9 21:05:01 2002 -0400
17115
17116 Allow for testing using long double instead of pari
17117
17118 commit 14b243d1d509236a5b19e8783570989cdfda6333
17119 Author: Matteo Frigo <athena@fftw.org>
17120 Date: Fri Aug 9 20:49:32 2002 -0400
17121
17122 Yet another trig scheme.
17123
17124 commit 361e112752a93e14cab74d86d92fccb88686fed1
17125 Author: Matteo Frigo <athena@fftw.org>
17126 Date: Fri Aug 9 20:38:07 2002 -0400
17127
17128 Yet another scheme
17129
17130 commit b3ca7c941515736b0ebd97c7d1195cd736d2b8d8
17131 Author: Matteo Frigo <athena@fftw.org>
17132 Date: Fri Aug 9 20:31:16 2002 -0400
17133
17134 Careful with overflow
17135
17136 commit c1af0a91c6bbcd3482427d1be4a812a0c061d879
17137 Author: Matteo Frigo <athena@fftw.org>
17138 Date: Fri Aug 9 20:16:23 2002 -0400
17139
17140 Avoid overflow
17141
17142 commit f06cb59c469661f10f65f220b91d79e8d98097f7
17143 Author: Matteo Frigo <athena@fftw.org>
17144 Date: Fri Aug 9 19:26:57 2002 -0400
17145
17146 New(er) trig routines
17147
17148 commit ba6e2f6487663745c402856288f95441c6191fe8
17149 Author: Matteo Frigo <athena@fftw.org>
17150 Date: Fri Aug 9 19:25:44 2002 -0400
17151
17152 Oops
17153
17154 commit 267f53395f5e34f83a0664c9405e4d7b17583695
17155 Author: Matteo Frigo <athena@fftw.org>
17156 Date: Fri Aug 9 18:49:04 2002 -0400
17157
17158 New file
17159
17160 commit cc25b36b4369f7fd773b614e416185078bc3e20c
17161 Author: Matteo Frigo <athena@fftw.org>
17162 Date: Fri Aug 9 13:04:00 2002 -0400
17163
17164 Commented about likely gcc bug
17165
17166 commit 745572695256ffc140f9b3bd828b561f56bea1a5
17167 Author: Matteo Frigo <athena@fftw.org>
17168 Date: Fri Aug 9 13:01:49 2002 -0400
17169
17170 Improved accuracy of twiddle factors
17171
17172 commit b90ec91c045668caabc583c27da9400331fc34cc
17173 Author: Matteo Frigo <athena@fftw.org>
17174 Date: Thu Aug 8 06:36:23 2002 -0400
17175
17176 Wrong comment
17177
17178 commit 01653dbd957c931c5e562c6cdf727c26a4570680
17179 Author: Matteo Frigo <athena@fftw.org>
17180 Date: Wed Aug 7 17:14:09 2002 -0400
17181
17182 Experimental 3dnow port using gcc, to compare it with Stefan's stuff.
17183
17184 commit 9716316af3a8a84ac9888e8b184fad1f8b34279d
17185 Author: Matteo Frigo <athena@fftw.org>
17186 Date: Wed Aug 7 12:58:10 2002 -0400
17187
17188 End of AREF experiment
17189
17190 commit 03365b937b905ad6dd6dad3ec0044f010f2cec51
17191 Author: Matteo Frigo <athena@fftw.org>
17192 Date: Wed Aug 7 07:47:19 2002 -0400
17193
17194 Oops
17195
17196 commit 00d1519ee07579c41da9738b4bd0d9e130c252df
17197 Author: Matteo Frigo <athena@fftw.org>
17198 Date: Wed Aug 7 07:46:38 2002 -0400
17199
17200 Pathetic attempt to reduce size of configure script
17201
17202 commit 882c809b6257b73377a20a807a20a61f5cc5a655
17203 Author: Matteo Frigo <athena@fftw.org>
17204 Date: Tue Aug 6 20:38:11 2002 -0400
17205
17206 Changed array syntax for experiments.
17207
17208 commit 06bf9f0b7d08eb0a66a07b4b517fede0514a4a2c
17209 Author: Matteo Frigo <athena@fftw.org>
17210 Date: Tue Aug 6 19:58:20 2002 -0400
17211
17212 Fix warning
17213
17214 commit dd2b973d27111516233a46e5d44734f2d1cea503
17215 Author: Matteo Frigo <athena@fftw.org>
17216 Date: Tue Aug 6 13:35:28 2002 -0400
17217
17218 Move nonportable stuff in one place.
17219
17220 commit 3a3a36d48074544b746b464bd194f93a371615b9
17221 Author: Matteo Frigo <athena@fftw.org>
17222 Date: Tue Aug 6 10:32:53 2002 -0400
17223
17224 Economy of thought: I didn't like having two algorithms for removing
17225 solutions, both correct. At least now we have the same algorithm
17226 copied twice.
17227
17228 commit e0cf8fd96853061b2160a99ed871b621a69bacbe
17229 Author: Matteo Frigo <athena@fftw.org>
17230 Date: Tue Aug 6 09:12:21 2002 -0400
17231
17232 Added things to do
17233
17234 commit f96ded332986cff7099c0dd6bf2cff07d3e59217
17235 Author: Steven G. Johnson <stevenj@fftw.org>
17236 Date: Mon Aug 5 19:54:31 2002 -0400
17237
17238 improved interaction of planner with patience flags
17239
17240 commit f37ad7a0a0a7009a6c29c02ff53b06440f12e846
17241 Author: Steven G. Johnson <stevenj@fftw.org>
17242 Date: Mon Aug 5 14:17:58 2002 -0400
17243
17244 set up for real-even/odd DFTs, where n is not the size of the data
17245
17246 commit 1a2ea854fa6156b907c817752dc47a1c07ef5c2e
17247 Author: Steven G. Johnson <stevenj@fftw.org>
17248 Date: Sun Aug 4 23:57:51 2002 -0400
17249
17250 DESTROY_INPUT flag
17251
17252 commit 18483232ce3afae0412e565222de6c48891700d7
17253 Author: Steven G. Johnson <stevenj@fftw.org>
17254 Date: Sun Aug 4 22:50:19 2002 -0400
17255
17256 CLASSIC -> IMPATIENT
17257
17258 commit 0fee1c8d39ed87aaab3387028cc3ff4422261a41
17259 Author: Matteo Frigo <athena@fftw.org>
17260 Date: Sun Aug 4 19:05:43 2002 -0400
17261
17262 Require make maintainer-clean to remove the generator, as opposed
17263 to make clean. In this way we can type make clean without regenerating
17264 all codelets.
17265
17266 commit b633708685610bf42bb69bbe71f31f0fd849aff5
17267 Author: Steven G. Johnson <stevenj@fftw.org>
17268 Date: Sun Aug 4 17:34:04 2002 -0400
17269
17270 ESTIMATE plans are not blessed
17271
17272 commit 17f106f814fd30121f7fcc2de65cc78f77a6448d
17273 Author: Steven G. Johnson <stevenj@fftw.org>
17274 Date: Sun Aug 4 17:24:37 2002 -0400
17275
17276 use flags in wisdom
17277
17278 commit 342928973eaf98429367ce537b088761c391505c
17279 Author: Steven G. Johnson <stevenj@fftw.org>
17280 Date: Sun Aug 4 17:03:45 2002 -0400
17281
17282 score now takes plnr, not flags, as arg
17283
17284 commit 5ef96008dcfb0e7428716122ea8ea56d0637898a
17285 Author: Steven G. Johnson <stevenj@fftw.org>
17286 Date: Sun Aug 4 16:37:46 2002 -0400
17287
17288 align initial stack in alignment check, which should now pass for gcc 3.1.1
17289
17290 commit ce14480bda337274a988627272fbe696bcaf5589
17291 Author: Matteo Frigo <athena@fftw.org>
17292 Date: Sat Aug 3 20:04:57 2002 -0400
17293
17294 Detect ultrasparc (sort of)
17295
17296 commit 946e964b908a9fcd9b98345a5f525049b8143cce
17297 Author: Steven G. Johnson <stevenj@fftw.org>
17298 Date: Sat Aug 3 19:38:17 2002 -0400
17299
17300 added solvtab_rdft_r2r placeholder
17301
17302 commit db8c63ea924d244e0c207d514dd425bfab39f2b6
17303 Author: Matteo Frigo <athena@fftw.org>
17304 Date: Sat Aug 3 19:34:49 2002 -0400
17305
17306 Damn solaris
17307
17308 commit 6f4f2a31d28db1040f796b703d9b6c9fd7b4052d
17309 Author: Steven G. Johnson <stevenj@fftw.org>
17310 Date: Sat Aug 3 17:55:44 2002 -0400
17311
17312 use E extended precision in solvers
17313
17314 commit eb1a98695f9827716943ddc0ca00475c2d61d9c2
17315 Author: Steven G. Johnson <stevenj@fftw.org>
17316 Date: Sat Aug 3 17:53:29 2002 -0400
17317
17318 an alternative notation for D{C,S}T: DXTio, where i/o are {0,1}
17319 according to whether the input/output are shifted, respectively.
17320 Alternatively, io is the binary representation of the usual
17321 DXT-{I,II,III,IV} nomenclature, minus 1.
17322
17323 commit 24b13985e810f08cbef3c5dac739433c5ac0161a
17324 Author: Steven G. Johnson <stevenj@fftw.org>
17325 Date: Sat Aug 3 17:49:11 2002 -0400
17326
17327 use E extended precision in solvers
17328
17329 commit 46b2fc024b187b4356bf6a7977d508a4c4ba22c1
17330 Author: Matteo Frigo <athena@fftw.org>
17331 Date: Sat Aug 3 15:39:49 2002 -0400
17332
17333 More portability fixes, compiler bugs workarounds, etc.
17334
17335 commit ca88f96aed7b0399f4d2199342c5287639e51d3b
17336 Author: Matteo Frigo <athena@fftw.org>
17337 Date: Sat Aug 3 15:09:56 2002 -0400
17338
17339 More portability work
17340
17341 commit 3cfd742c2225f91d295d75af9e6ddc46cd4c39f4
17342 Author: Matteo Frigo <athena@fftw.org>
17343 Date: Sat Aug 3 14:33:40 2002 -0400
17344
17345 Improved portability, removed gnu make dependencies
17346
17347 commit ac8aa3edbc9864af3b3e3e8d753cc2388b80732c
17348 Author: Matteo Frigo <athena@fftw.org>
17349 Date: Sat Aug 3 13:48:53 2002 -0400
17350
17351 Remember to thank XXX
17352
17353 commit 807dc0e147fedfa044a4ae2a03dbff426e155136
17354 Author: Matteo Frigo <athena@fftw.org>
17355 Date: Fri Aug 2 17:38:18 2002 -0400
17356
17357 Multiplication on altivec requires FMA with -0.0 to be IEEE754 compliant.
17358
17359 commit dfa0ebdb72edd084c82b682b62fffdbd8f9a7611
17360 Author: Matteo Frigo <athena@fftw.org>
17361 Date: Fri Aug 2 15:26:37 2002 -0400
17362
17363 Allow for extended precision in codelets
17364
17365 commit 2eee7899ea3308e919dbeafffeee423dd0c810b5
17366 Author: Matteo Frigo <athena@fftw.org>
17367 Date: Fri Aug 2 08:52:04 2002 -0400
17368
17369 Shortened names
17370
17371 commit 239f0f6f2197b4761abad5f8ac2f1da6736a5ccd
17372 Author: Steven G. Johnson <stevenj@fftw.org>
17373 Date: Fri Aug 2 03:49:09 2002 -0400
17374
17375 added infrastructure for future r2r transforms
17376
17377 commit 4f64527883bd151d5f597abec9870dc9e6d0c8b7
17378 Author: Matteo Frigo <athena@fftw.org>
17379 Date: Thu Aug 1 21:29:14 2002 -0400
17380
17381 Version info
17382
17383 commit 1f6a7039b9fe3a439d6aa9fa83d179fb864ab920
17384 Author: Matteo Frigo <athena@fftw.org>
17385 Date: Thu Aug 1 21:06:22 2002 -0400
17386
17387 Listened to one customer and added radix-12. Added radix-15 for
17388 consistency (whatever that is)
17389
17390 commit ece6187a35d44322c45b0fc946187615d8d3bebd
17391 Author: Steven G. Johnson <stevenj@fftw.org>
17392 Date: Thu Aug 1 19:50:53 2002 -0400
17393
17394 whoops again, fixed the wrong line
17395
17396 commit 53c48f4c8eb4f39a1bcea9b47a2cf78c669e2dd2
17397 Author: Steven G. Johnson <stevenj@fftw.org>
17398 Date: Thu Aug 1 19:50:16 2002 -0400
17399
17400 whoops
17401
17402 commit afb281f39223c26fe968873928fd8ca0c69c1fe7
17403 Author: Steven G. Johnson <stevenj@fftw.org>
17404 Date: Thu Aug 1 16:01:15 2002 -0400
17405
17406 use new AC_INIT and add VERSION to wisdom
17407
17408 commit 1d4b7a029734d0948b44713fb94429ffd4ce40d4
17409 Author: Steven G. Johnson <stevenj@fftw.org>
17410 Date: Thu Aug 1 14:56:45 2002 -0400
17411
17412 mygetR -> getR
17413
17414 commit 010ffe455949d901be083a52aeb485e933d4c252
17415 Author: Steven G. Johnson <stevenj@fftw.org>
17416 Date: Thu Aug 1 14:56:02 2002 -0400
17417
17418 scanner cleanups: just return 0/1, simplify integer reads
17419
17420 commit 052184d84276b884548c95a76e89d5f2ccd124d2
17421 Author: Matteo Frigo <athena@fftw.org>
17422 Date: Thu Aug 1 08:04:01 2002 -0400
17423
17424 Reverted back to casting pointer to ulong
17425
17426 commit c61b1e4aa77a06a1565d2f816bc2b6a22c82f6d8
17427 Author: Matteo Frigo <athena@fftw.org>
17428 Date: Thu Aug 1 08:03:46 2002 -0400
17429
17430 Cast to unsigned long, not long
17431
17432 commit bc2a8794eec9dbdd2eaa2d10070974ab1cdcc3bf
17433 Author: Steven G. Johnson <stevenj@fftw.org>
17434 Date: Thu Aug 1 03:14:50 2002 -0400
17435
17436 additional comment
17437
17438 commit 72bc55e7f202b4d772bc8a50263870f1434becb0
17439 Author: Steven G. Johnson <stevenj@fftw.org>
17440 Date: Thu Aug 1 03:12:37 2002 -0400
17441
17442 added comment
17443
17444 commit 980a9e749d1361de03ea2256209ee0216942a6aa
17445 Author: Steven G. Johnson <stevenj@fftw.org>
17446 Date: Thu Aug 1 03:03:18 2002 -0400
17447
17448 added wisdom import
17449
17450 commit b9bcf9486c742271f7c9fa64f41791666cf16cb6
17451 Author: Steven G. Johnson <stevenj@fftw.org>
17452 Date: Wed Jul 31 23:12:05 2002 -0400
17453
17454 whoops
17455
17456 commit 183a8a7311c571981db4ef087608b599de96b062
17457 Author: Steven G. Johnson <stevenj@fftw.org>
17458 Date: Wed Jul 31 22:06:46 2002 -0400
17459
17460 use %u for alignment_of
17461
17462 commit f9cc3f2e326569214e7ac246b5dacabe10f9f4aa
17463 Author: Steven G. Johnson <stevenj@fftw.org>
17464 Date: Wed Jul 31 21:47:15 2002 -0400
17465
17466 ptrdiff_t form
17467
17468 commit 26346129bd45ff91529e18e5770220025ae5cc8c
17469 Author: Matteo Frigo <athena@fftw.org>
17470 Date: Wed Jul 31 21:33:35 2002 -0400
17471
17472 Cast to avoid warning from C++ compiler
17473
17474 commit dc8c0c64365fd7f14a579a730f50107f4c01839e
17475 Author: Matteo Frigo <athena@fftw.org>
17476 Date: Wed Jul 31 18:57:04 2002 -0400
17477
17478 Make problem equality depend on alignments.
17479
17480 commit 185babf3691983eb1fc109f4d2864ea80070319f
17481 Author: Matteo Frigo <athena@fftw.org>
17482 Date: Wed Jul 31 15:45:31 2002 -0400
17483
17484 Shorter names
17485
17486 commit d0a23f2a7ca0ef90c893e1bc9fe38562bf4b97c4
17487 Author: Matteo Frigo <athena@fftw.org>
17488 Date: Wed Jul 31 14:38:00 2002 -0400
17489
17490 Oops
17491
17492 commit db553c5b6c9be77013e5e6862aecb074abd05daf
17493 Author: Matteo Frigo <athena@fftw.org>
17494 Date: Wed Jul 31 14:37:19 2002 -0400
17495
17496 Fix warning
17497
17498 commit 20ce4a31106f745c8765cafa87b94df7b152ba01
17499 Author: Matteo Frigo <athena@fftw.org>
17500 Date: Wed Jul 31 07:52:53 2002 -0400
17501
17502 Removed silly abstraction barrier. Also, cons() terminology was
17503 no longer appropriate.
17504
17505 commit 6e519e71ee2bff45a45acc9860e6688b5a2ac0ca
17506 Author: Steven G. Johnson <stevenj@fftw.org>
17507 Date: Tue Jul 30 22:35:24 2002 -0400
17508
17509 removed register_registrar and solvtab_exec_reverse hacks
17510
17511 commit 3bb2201fd6c0b2a0e2e6e1cb07849fc640c23fe4
17512 Author: Steven G. Johnson <stevenj@fftw.org>
17513 Date: Tue Jul 30 19:54:41 2002 -0400
17514
17515 register_registrar doesn't search whole solver list (maybe we should change register_solver instead)
17516
17517 commit acf987d04a520c14c0d452f2036338e4d89e91a0
17518 Author: Steven G. Johnson <stevenj@fftw.org>
17519 Date: Tue Jul 30 19:36:37 2002 -0400
17520
17521 credit
17522
17523 commit 1ae9a399e262ce07b3733a11fcb23ea08541bd45
17524 Author: Steven G. Johnson <stevenj@fftw.org>
17525 Date: Tue Jul 30 19:34:16 2002 -0400
17526
17527 added HP/UX ia64 support, courtesy of Teresa L. Johnson
17528
17529 commit 76ce2ea38a0a18376e316ee3348e8ffd069aebe1
17530 Author: Matteo Frigo <athena@fftw.org>
17531 Date: Tue Jul 30 13:28:33 2002 -0400
17532
17533 Fixed alignment checks
17534
17535 commit 7356d1bc11f552e41d0de8df8fc9e0ef4f83b1a0
17536 Author: Steven G. Johnson <stevenj@fftw.org>
17537 Date: Tue Jul 30 01:20:11 2002 -0400
17538
17539 ugh, wisdom id fixes in exprt_conf
17540
17541 commit 110cfd3d5abb89da042f3953d99179c04fcb6839
17542 Author: Steven G. Johnson <stevenj@fftw.org>
17543 Date: Tue Jul 30 00:41:15 2002 -0400
17544
17545 exprt_registrars -> exprt_conf, added missing SOLVTAB_END
17546
17547 commit 331b32dd8322273182a47c852416afaac4f6007b
17548 Author: Steven G. Johnson <stevenj@fftw.org>
17549 Date: Tue Jul 30 00:36:26 2002 -0400
17550
17551 exprt_registrars should output self-contained configuration
17552
17553 commit ddd63d9b49d333a58f352f4f561a6ff1fbe17a5a
17554 Author: Steven G. Johnson <stevenj@fftw.org>
17555 Date: Mon Jul 29 23:52:07 2002 -0400
17556
17557 added exprt_registrars
17558
17559 commit 691ba278639460f94cfd6ff45e14e10007d4f62c
17560 Author: Steven G. Johnson <stevenj@fftw.org>
17561 Date: Mon Jul 29 23:42:27 2002 -0400
17562
17563 whoops
17564
17565 commit ebcd431d564b1f5f86f3bb274ed123971d449415
17566 Author: Matteo Frigo <athena@fftw.org>
17567 Date: Mon Jul 29 21:24:51 2002 -0400
17568
17569 More stringent requirements on strides for SIMD codelets
17570
17571 commit 4fa11627e55b15059ce9b91dce1383c29040f2bb
17572 Author: Steven G. Johnson <stevenj@fftw.org>
17573 Date: Mon Jul 29 21:05:49 2002 -0400
17574
17575 remove warning
17576
17577 commit 30f4b2f2ca2fd97ae591c98d812ec38546a1cd8b
17578 Author: Steven G. Johnson <stevenj@fftw.org>
17579 Date: Mon Jul 29 20:51:19 2002 -0400
17580
17581 use %td for ptrdiff_t and %T for tensors
17582
17583 commit 33c7a10abb7b7b1e3250654481f536b6e33de824
17584 Author: Matteo Frigo <athena@fftw.org>
17585 Date: Mon Jul 29 16:17:11 2002 -0400
17586
17587 Fix for SIMD
17588
17589 commit 1688dda0ec01678ac3d2e16af154c4898a56b568
17590 Author: Matteo Frigo <athena@fftw.org>
17591 Date: Mon Jul 29 15:40:53 2002 -0400
17592
17593 Missing lfftw_mkstride and lfftw_stride_destroy
17594
17595 commit 2e84b7c68c4270593cc2a1c152520b6f55e3c0c9
17596 Author: Matteo Frigo <athena@fftw.org>
17597 Date: Mon Jul 29 14:34:46 2002 -0400
17598
17599 Implement LDA/STA
17600
17601 commit 385b21d8dc7b1c465acbb83b5414caefa80960d2
17602 Author: Matteo Frigo <athena@fftw.org>
17603 Date: Mon Jul 29 14:19:21 2002 -0400
17604
17605 More SIMD work
17606
17607 commit 00e43e5facae3c33e901ca12dd57cf5905c8508d
17608 Author: Matteo Frigo <athena@fftw.org>
17609 Date: Mon Jul 29 13:16:12 2002 -0400
17610
17611 Cleanup
17612
17613 commit 6fb8177180cf59f95bc37163f4e8d4c68b1657e8
17614 Author: Steven G. Johnson <stevenj@fftw.org>
17615 Date: Mon Jul 29 13:02:38 2002 -0400
17616
17617 update
17618
17619 commit 8354486a52f87afe52440aa3316acec7c768ac75
17620 Author: Matteo Frigo <athena@fftw.org>
17621 Date: Mon Jul 29 12:45:33 2002 -0400
17622
17623 Also check strides in SIMD codelets
17624
17625 commit 7b48f56b4e18bd9799c46214829e7b15531e5244
17626 Author: Matteo Frigo <athena@fftw.org>
17627 Date: Mon Jul 29 11:26:08 2002 -0400
17628
17629 Minor changes, mostly for consistency with the big-endian processor
17630
17631 commit ec8f6e4c58d50603587e0bba533ec2086e6174b8
17632 Author: Steven G. Johnson <stevenj@fftw.org>
17633 Date: Mon Jul 29 00:50:06 2002 -0400
17634
17635 added comment
17636
17637 commit a7cc792884a9acb1d81a346cdab1d9b07e9b2bdf
17638 Author: Steven G. Johnson <stevenj@fftw.org>
17639 Date: Sun Jul 28 21:19:35 2002 -0400
17640
17641 added code for icc's _mm_malloc (memalign replacement)
17642
17643 commit d1398d4a205bae587e99b40049dd6a301c1f58f9
17644 Author: Steven G. Johnson <stevenj@fftw.org>
17645 Date: Sun Jul 28 17:33:07 2002 -0400
17646
17647 slight fixes
17648
17649 commit 5f21f0a04a242174ff85c63925c88e15e6ff101e
17650 Author: Steven G. Johnson <stevenj@fftw.org>
17651 Date: Sun Jul 28 16:28:43 2002 -0400
17652
17653 whoops
17654
17655 commit d5256b19914cddf9b241ebce04f10042f4837e9b
17656 Author: Matteo Frigo <athena@fftw.org>
17657 Date: Sun Jul 28 16:13:19 2002 -0400
17658
17659 Use vec_xor to change sign
17660
17661 commit ec0a29c8d03cbed27c09a96fcb3f022bfc9f647f
17662 Author: Steven G. Johnson <stevenj@fftw.org>
17663 Date: Sun Jul 28 16:10:59 2002 -0400
17664
17665 added rdft2
17666
17667 commit 516c9c1117a0811dba416bfa1ba20a5c93e91532
17668 Author: Matteo Frigo <athena@fftw.org>
17669 Date: Sun Jul 28 15:45:54 2002 -0400
17670
17671 Optimized
17672
17673 commit 8619a2039d6723004a1fef760203e5d6f33f9469
17674 Author: Matteo Frigo <athena@fftw.org>
17675 Date: Sun Jul 28 15:11:14 2002 -0400
17676
17677 Changed ALIGNMENT
17678
17679 commit 37c7c1fd79835b212e94e565fb3abe0352243919
17680 Author: Matteo Frigo <athena@fftw.org>
17681 Date: Sun Jul 28 15:09:40 2002 -0400
17682
17683 alignment := 8
17684
17685 commit 27b891f615494d0f1996ed1acf0665eb386704e6
17686 Author: Matteo Frigo <athena@fftw.org>
17687 Date: Sun Jul 28 14:57:22 2002 -0400
17688
17689 Avoid warning
17690
17691 commit fd53f4d5bdfc8c8daf0126fab34270b09cf49aa2
17692 Author: Matteo Frigo <athena@fftw.org>
17693 Date: Sun Jul 28 14:53:03 2002 -0400
17694
17695 Oops
17696
17697 commit 8b749b4406276bb4b4d6e3b4c78486d0fea38fff
17698 Author: Matteo Frigo <athena@fftw.org>
17699 Date: Sun Jul 28 14:50:09 2002 -0400
17700
17701 New altivec experiment
17702
17703 commit 87bd001083f039c6728a3a19d03b7e14eac11666
17704 Author: Matteo Frigo <athena@fftw.org>
17705 Date: Sun Jul 28 13:48:20 2002 -0400
17706
17707 Nothing
17708
17709 commit 3a5876fd4582a075560988801d7c958b0ca75a74
17710 Author: Matteo Frigo <athena@fftw.org>
17711 Date: Sun Jul 28 13:47:50 2002 -0400
17712
17713 Oops
17714
17715 commit 551ad6c0e199fcd5fce5defd470ce7d975dcacb4
17716 Author: Matteo Frigo <athena@fftw.org>
17717 Date: Sun Jul 28 13:44:28 2002 -0400
17718
17719 Nothing
17720
17721 commit a13f42aa3c37a3065a08a59220529d5292683ac9
17722 Author: Matteo Frigo <athena@fftw.org>
17723 Date: Sun Jul 28 10:38:10 2002 -0400
17724
17725 Constants are now in separate file.
17726
17727 commit 94226e68396c790ce6bfbbf8db0c299fed32e2f9
17728 Author: Matteo Frigo <athena@fftw.org>
17729 Date: Sun Jul 28 07:58:37 2002 -0400
17730
17731 More precise comment
17732
17733 commit 4009a4d5579eb5520346c956632ef0c2df5273d2
17734 Author: Matteo Frigo <athena@fftw.org>
17735 Date: Sun Jul 28 07:56:40 2002 -0400
17736
17737 gcc-3.1 bug workaround
17738
17739 commit 092830f99bf3fd15390980b4e441d4c7d1a9826c
17740 Author: Steven G. Johnson <stevenj@fftw.org>
17741 Date: Sun Jul 28 01:39:54 2002 -0400
17742
17743 slight optimization, and exported zerotens functions
17744
17745 commit e3797dbb5984f5f1272b452c7005c775badb6fb2
17746 Author: Steven G. Johnson <stevenj@fftw.org>
17747 Date: Sun Jul 28 00:54:59 2002 -0400
17748
17749 should be a plan_dft, not a plan_rdft
17750
17751 commit ab69981af2f5c80981e7f1432560cbdaae08770c
17752 Author: Matteo Frigo <athena@fftw.org>
17753 Date: Sat Jul 27 21:36:46 2002 -0400
17754
17755 Optimizations. Make it work with vanilla non-Apple gcc.
17756
17757 commit 9a7ad02a4bfebfa91a4afe01756023a3a74f5d8b
17758 Author: Steven G. Johnson <stevenj@fftw.org>
17759 Date: Sat Jul 27 19:20:09 2002 -0400
17760
17761 whoops
17762
17763 commit 4aac8a4d98395b964b16b1251d8d52410fc232f8
17764 Author: Steven G. Johnson <stevenj@fftw.org>
17765 Date: Sat Jul 27 18:54:01 2002 -0400
17766
17767 added hc2r (dif)
17768
17769 commit abe907208a2a3e7ff558b3f12bb0b254768d670a
17770 Author: Steven G. Johnson <stevenj@fftw.org>
17771 Date: Sat Jul 27 18:31:43 2002 -0400
17772
17773 add hc2r (dif) case
17774
17775 commit b933474c3373bdca65dd9cce3b16272c2b197ee8
17776 Author: Matteo Frigo <athena@fftw.org>
17777 Date: Sat Jul 27 15:09:40 2002 -0400
17778
17779 Altivec port
17780
17781 commit 0884acf4e8fc2cd9ec4144877e5a0879bbf779e6
17782 Author: Matteo Frigo <athena@fftw.org>
17783 Date: Sat Jul 27 15:06:21 2002 -0400
17784
17785 Fixed signed/unsigned bug.
17786
17787 commit 11508c3160c5d3a404a58eb143139d9088a213e5
17788 Author: Matteo Frigo <athena@fftw.org>
17789 Date: Thu Jul 25 20:11:26 2002 -0400
17790
17791 Make rank0 unapplicable to in-place problems.
17792
17793 commit 81a49b1e405be525a9ee5476ddfa16e8c70ef702
17794 Author: Steven G. Johnson <stevenj@fftw.org>
17795 Date: Thu Jul 25 17:10:52 2002 -0400
17796
17797 only works for r odd
17798
17799 commit 2b54747fb0e87bbd03b3c7b04ed1cb752a470796
17800 Author: Matteo Frigo <athena@fftw.org>
17801 Date: Thu Jul 25 15:30:06 2002 -0400
17802
17803 Reinserted much better timing-avoidance heuristic
17804
17805 commit 171716115f0f318397186964ecc341ac9268fd84
17806 Author: Matteo Frigo <athena@fftw.org>
17807 Date: Thu Jul 25 15:21:13 2002 -0400
17808
17809 Score is now a property of the plan, not of the solver.
17810 Revised representation of closures.
17811
17812 commit 67c69e319a7ca8ac6c81a45a1d0f6dde9efc2e12
17813 Author: Matteo Frigo <athena@fftw.org>
17814 Date: Thu Jul 25 06:36:51 2002 -0400
17815
17816 Cosmetic changes. Added hc2r_128.c
17817
17818 commit 0a22b8dd9629f62d1a682af581c17d6dc71e244a
17819 Author: Steven G. Johnson <stevenj@fftw.org>
17820 Date: Thu Jul 25 01:37:53 2002 -0400
17821
17822 added hc2r
17823
17824 commit 22bad3aea85c62120134db4652c6ac990c8607e2
17825 Author: Steven G. Johnson <stevenj@fftw.org>
17826 Date: Thu Jul 25 00:51:45 2002 -0400
17827
17828 added hc2hc-difbuf
17829
17830 commit aac8e9d03008ccbe1c244717e404e283c03eabe1
17831 Author: Steven G. Johnson <stevenj@fftw.org>
17832 Date: Thu Jul 25 00:25:06 2002 -0400
17833
17834 added rdft-dif
17835
17836 commit 39d632acade375e06e60dc11cd0b693ed29bbf07
17837 Author: Steven G. Johnson <stevenj@fftw.org>
17838 Date: Thu Jul 25 00:22:36 2002 -0400
17839
17840 whoops, hc2r must be conjugated to have right sign
17841
17842 commit ebc9e7b4083f1d545cc47032a7bffbcc5d5a26ce
17843 Author: Steven G. Johnson <stevenj@fftw.org>
17844 Date: Wed Jul 24 23:27:45 2002 -0400
17845
17846 slight change
17847
17848 commit 6c5a0b11d3a86a418e02108a90472ff19d97bae0
17849 Author: Steven G. Johnson <stevenj@fftw.org>
17850 Date: Wed Jul 24 23:24:24 2002 -0400
17851
17852 whoops
17853
17854 commit 28adebe469b82ee53e436f33389b459d8707a603
17855 Author: Steven G. Johnson <stevenj@fftw.org>
17856 Date: Wed Jul 24 22:46:39 2002 -0400
17857
17858 support hc2r codelets
17859
17860 commit af7b3ec85871349e26698fb5edf95c6a1e96bbbf
17861 Author: Steven G. Johnson <stevenj@fftw.org>
17862 Date: Wed Jul 24 22:01:53 2002 -0400
17863
17864 use vector plan for r/i instead of two separate plans
17865
17866 commit b31e3e7d86ef1ab3aa58145768cc801979ba5cd6
17867 Author: Steven G. Johnson <stevenj@fftw.org>
17868 Date: Wed Jul 24 20:36:34 2002 -0400
17869
17870 hack to allow rader/generic to work in-place for small prime sizes, instead of always using buffered
17871
17872 commit cddf15b3b7c1d3baec98982550f18344c3361216
17873 Author: Steven G. Johnson <stevenj@fftw.org>
17874 Date: Wed Jul 24 18:04:41 2002 -0400
17875
17876 added rdft-generic
17877
17878 commit 76637f738e056d7e4fcba907ffd4ab52db457fed
17879 Author: Steven G. Johnson <stevenj@fftw.org>
17880 Date: Wed Jul 24 17:27:34 2002 -0400
17881
17882 fixed add count
17883
17884 commit 7c1f6a8f3b35a5034daacc521a10c06424144047
17885 Author: Steven G. Johnson <stevenj@fftw.org>
17886 Date: Wed Jul 24 14:52:26 2002 -0400
17887
17888 again
17889
17890 commit ab910c9e4a7fc66e0a19e1b9557669e896ac465b
17891 Author: Steven G. Johnson <stevenj@fftw.org>
17892 Date: Wed Jul 24 14:51:58 2002 -0400
17893
17894 slight fix
17895
17896 commit 2169c91de93a2c096765218e2b25e32e6f2d47f0
17897 Author: Steven G. Johnson <stevenj@fftw.org>
17898 Date: Wed Jul 24 14:51:07 2002 -0400
17899
17900 fixed comment
17901
17902 commit b6ed79694396f04555b0009027b94355c81a4019
17903 Author: Steven G. Johnson <stevenj@fftw.org>
17904 Date: Wed Jul 24 14:41:24 2002 -0400
17905
17906 whoops
17907
17908 commit 10fabba80f177e1ee4bfca04ac09836c798998ef
17909 Author: Steven G. Johnson <stevenj@fftw.org>
17910 Date: Wed Jul 24 14:38:15 2002 -0400
17911
17912 added rader-hc2hc
17913
17914 commit 3015fea221f119cf88e68c12087c0ca8fbb508a9
17915 Author: Steven G. Johnson <stevenj@fftw.org>
17916 Date: Wed Jul 24 00:07:59 2002 -0400
17917
17918 whoops, initialize W
17919
17920 commit d48486c4715a0db6bb2653a34d868f5f52732f66
17921 Author: Steven G. Johnson <stevenj@fftw.org>
17922 Date: Tue Jul 23 23:03:09 2002 -0400
17923
17924 strides should not be unsigned
17925
17926 commit 7d6e7cacd21c97ef1622d681de2543e71ac2171d
17927 Author: Steven G. Johnson <stevenj@fftw.org>
17928 Date: Tue Jul 23 23:02:08 2002 -0400
17929
17930 more stride sign fixes
17931
17932 commit b967fadc107addb8cec4effc1f0e7ae7d6ce1f86
17933 Author: Steven G. Johnson <stevenj@fftw.org>
17934 Date: Tue Jul 23 23:01:04 2002 -0400
17935
17936 strides should not be unsigned!
17937
17938 commit 0ad85517c669d39fcf0ac6f77e73ed8c2fa80e89
17939 Author: Steven G. Johnson <stevenj@fftw.org>
17940 Date: Tue Jul 23 14:55:25 2002 -0400
17941
17942 added comment
17943
17944 commit 5d278e1ac3640bc39cd6b7e19aaa5563cd319de4
17945 Author: Steven G. Johnson <stevenj@fftw.org>
17946 Date: Tue Jul 23 14:52:04 2002 -0400
17947
17948 another fix to op count
17949
17950 commit 9260aed8161a66eb5de14e68c932d11bc113cd56
17951 Author: Steven G. Johnson <stevenj@fftw.org>
17952 Date: Tue Jul 23 14:51:01 2002 -0400
17953
17954 whoops
17955
17956 commit 3f42b7510d2c0f2b1e7bc34342041f8123667897
17957 Author: Steven G. Johnson <stevenj@fftw.org>
17958 Date: Tue Jul 23 14:49:43 2002 -0400
17959
17960 slight fix to op counts
17961
17962 commit 1288dec288612070c531c98067255cf3de3d90b1
17963 Author: Steven G. Johnson <stevenj@fftw.org>
17964 Date: Tue Jul 23 14:09:19 2002 -0400
17965
17966 added dft-r2hc
17967
17968 commit ad4bf834d8b55b38d2766779e5d00c4f61e30dbe
17969 Author: Steven G. Johnson <stevenj@fftw.org>
17970 Date: Tue Jul 23 02:50:12 2002 -0400
17971
17972 better comment and var. name
17973
17974 commit f1ab8ef1b9cf77432f6bb627a5c3ec2f586ebcd9
17975 Author: Steven G. Johnson <stevenj@fftw.org>
17976 Date: Tue Jul 23 02:39:11 2002 -0400
17977
17978 fixed tests for hc2r, and added r2hc-hc2r
17979
17980 commit d3b91945fd199f6bb99711479972b7074c00b352
17981 Author: Steven G. Johnson <stevenj@fftw.org>
17982 Date: Tue Jul 23 00:45:23 2002 -0400
17983
17984 added rader-dht
17985
17986 commit 57036068d38970156c0bcf5d4edd72cdb20a09fd
17987 Author: Matteo Frigo <athena@fftw.org>
17988 Date: Mon Jul 22 21:05:12 2002 -0400
17989
17990 Added r2hc_128, what the hell.
17991
17992 commit d82c1c99be202e2cc55851a4bd406b4682cb0b4a
17993 Author: Matteo Frigo <athena@fftw.org>
17994 Date: Mon Jul 22 20:48:59 2002 -0400
17995
17996 Added codelets that compute twiddle factors
17997
17998 commit f98ad798168562c0da5714110eb0c37972178728
17999 Author: Steven G. Johnson <stevenj@fftw.org>
18000 Date: Mon Jul 22 19:57:16 2002 -0400
18001
18002 added rdft-buffered
18003
18004 commit 50b0158abe60a9e62698baf54e31623bf29a34f9
18005 Author: Steven G. Johnson <stevenj@fftw.org>
18006 Date: Mon Jul 22 19:43:39 2002 -0400
18007
18008 added hc2hc-ditbuf
18009
18010 commit 4b7abfd7514cb4d98a0c87746c25fcafe6d263b3
18011 Author: Steven G. Johnson <stevenj@fftw.org>
18012 Date: Mon Jul 22 14:29:04 2002 -0400
18013
18014 use STACK_MALLOC (alloca), since generic radix is always small
18015
18016 commit d083d389c40a363c4b90a6ca2efd202c52b81713
18017 Author: Steven G. Johnson <stevenj@fftw.org>
18018 Date: Mon Jul 22 14:22:43 2002 -0400
18019
18020 small cleanup
18021
18022 commit 851d792b2de11df3620f32093e02632f78aeef6e
18023 Author: Matteo Frigo <athena@fftw.org>
18024 Date: Mon Jul 22 07:42:13 2002 -0400
18025
18026 What the hell was I thinking?
18027
18028 commit 7237f72026e6aad4325427a52b0fb683ec4b2e0d
18029 Author: Matteo Frigo <athena@fftw.org>
18030 Date: Mon Jul 22 07:37:12 2002 -0400
18031
18032 Reduced code size by using table instead of switch statement.
18033
18034 commit f253821d2c79215c87e18cf134e218e02d0235ed
18035 Author: Matteo Frigo <athena@fftw.org>
18036 Date: Mon Jul 22 07:27:06 2002 -0400
18037
18038 Changed hash function to avoid collisions with DFT.
18039
18040 commit 602ef947b9122139e2b55fca3e007ca6bcda4bbf
18041 Author: Steven G. Johnson <stevenj@fftw.org>
18042 Date: Mon Jul 22 01:37:06 2002 -0400
18043
18044 added missing file, whoops
18045
18046 commit 6b3144d456eb3c0caee53880e7fe60ddbd2c48d5
18047 Author: Steven G. Johnson <stevenj@fftw.org>
18048 Date: Mon Jul 22 01:24:17 2002 -0400
18049
18050 whoops, generate enough twiddles for odd m
18051
18052 commit 4738a6cbbc5206c3fdc7b0bf7cdc481609439497
18053 Author: Steven G. Johnson <stevenj@fftw.org>
18054 Date: Mon Jul 22 01:10:21 2002 -0400
18055
18056 don't try to verify R2HCII or HC2RIII plans
18057
18058 commit ec9e9517ca4ac29008a9b1b8f79f4543ef4ae90a
18059 Author: Steven G. Johnson <stevenj@fftw.org>
18060 Date: Mon Jul 22 01:05:00 2002 -0400
18061
18062 recursive case now works, I think
18063
18064 commit 7ebf4c56ae4cc7861840cb8ee5d8a482c5e3f64a
18065 Author: Steven G. Johnson <stevenj@fftw.org>
18066 Date: Mon Jul 22 01:04:40 2002 -0400
18067
18068 add extra impulse test for debugging
18069
18070 commit 7dacfd5778747c8ae3b803ddf37d7921eeab713f
18071 Author: Steven G. Johnson <stevenj@fftw.org>
18072 Date: Mon Jul 22 01:02:38 2002 -0400
18073
18074 whoops, multiply ios offset by stride (and rename to ioffset)
18075
18076 commit ca3c5bf3c6de8946f1caf40e779487110e5b59ce
18077 Author: Steven G. Johnson <stevenj@fftw.org>
18078 Date: Mon Jul 22 00:22:02 2002 -0400
18079
18080 whoops
18081
18082 commit e40381e0407f8570c076968fb7c7138ffebe9ae2
18083 Author: Steven G. Johnson <stevenj@fftw.org>
18084 Date: Sun Jul 21 23:58:14 2002 -0400
18085
18086 whoops
18087
18088 commit 030d0f7f52cbc000070d885b815768bfadb86649
18089 Author: Steven G. Johnson <stevenj@fftw.org>
18090 Date: Sun Jul 21 23:43:03 2002 -0400
18091
18092 added hc2hc-dit
18093
18094 commit c1c28b632b9cc24c542610dbdb3bf424eb740810
18095 Author: Steven G. Johnson <stevenj@fftw.org>
18096 Date: Sun Jul 21 23:15:12 2002 -0400
18097
18098 twiddles can be shared with smaller m's
18099
18100 commit cbb0b11b1a8aa023f1d81dba688278012451de8e
18101 Author: Steven G. Johnson <stevenj@fftw.org>
18102 Date: Sun Jul 21 22:34:28 2002 -0400
18103
18104 preparing for recursive rdft...
18105
18106 commit 8f48e0e3caf86690c7328cd128cc981364c9026f
18107 Author: Steven G. Johnson <stevenj@fftw.org>
18108 Date: Sun Jul 21 19:31:22 2002 -0400
18109
18110 slight fix, to match libbench/verify.c
18111
18112 commit d9aec187c49dbc272df30d040d4acfc160220b07
18113 Author: Steven G. Johnson <stevenj@fftw.org>
18114 Date: Sun Jul 21 18:43:12 2002 -0400
18115
18116 r2hcII has imag parts offset by n-1, not n. We can also allocate fewer strides.
18117
18118 commit 00e3acce93c910450482c37155200244adfc51b4
18119 Author: Steven G. Johnson <stevenj@fftw.org>
18120 Date: Sun Jul 21 18:27:09 2002 -0400
18121
18122 delete unused var
18123
18124 commit 469254570eda6c6851c8c76ac2ce631c7e160d40
18125 Author: Steven G. Johnson <stevenj@fftw.org>
18126 Date: Sun Jul 21 02:06:53 2002 -0400
18127
18128 added some rdft solvers
18129
18130 commit c267ad079a4ef7cb7a9fdbe4556c89121137be02
18131 Author: Steven G. Johnson <stevenj@fftw.org>
18132 Date: Sun Jul 21 01:52:54 2002 -0400
18133
18134 pass identifier in FFTW() through another macro so that the mangled name
18135 can itself be a preprocessor symbol
18136
18137 commit cf660c4cf10b80d7ec37cd99825c9663738d77e7
18138 Author: Steven G. Johnson <stevenj@fftw.org>
18139 Date: Sun Jul 21 01:05:21 2002 -0400
18140
18141 fix in comment
18142
18143 commit 14081a9d216ccc757b9ce46631d956f5135628ea
18144 Author: Steven G. Johnson <stevenj@fftw.org>
18145 Date: Sun Jul 21 00:47:03 2002 -0400
18146
18147 bench tests rdft plans
18148
18149 commit 61ed41f792df937cc80b9fa0c643871ab7449968
18150 Author: Steven G. Johnson <stevenj@fftw.org>
18151 Date: Sun Jul 21 00:22:14 2002 -0400
18152
18153 make rdft.h and dft.h compatible
18154
18155 commit d314a5c84e70803b32075884ee96c0099c695d9a
18156 Author: Steven G. Johnson <stevenj@fftw.org>
18157 Date: Sun Jul 21 00:12:19 2002 -0400
18158
18159 first-draft rdft verify
18160
18161 commit 01403979be858145b4f1f61f03c9f1f98c59587d
18162 Author: Steven G. Johnson <stevenj@fftw.org>
18163 Date: Sat Jul 20 22:09:15 2002 -0400
18164
18165 got rid of annoying warnings
18166
18167 commit 710e4e4687092d0d823f7fe442c0bc981d99a598
18168 Author: Steven G. Johnson <stevenj@fftw.org>
18169 Date: Sat Jul 20 22:07:37 2002 -0400
18170
18171 added stub codelet registration for linking purposes
18172
18173 commit 9b9775415f67f53910d95e1ac963f1bed389ff9b
18174 Author: Steven G. Johnson <stevenj@fftw.org>
18175 Date: Sat Jul 20 21:46:03 2002 -0400
18176
18177 basic rdft stuff
18178
18179 commit 9c7a553bedb1f7f2fce816ae284d4867ffc0924d
18180 Author: Steven G. Johnson <stevenj@fftw.org>
18181 Date: Sat Jul 20 21:06:50 2002 -0400
18182
18183 rdft codelets now compile
18184
18185 commit fb7686cdfd1674f03c35ed523fcc2d11db157ecb
18186 Author: Matteo Frigo <athena@fftw.org>
18187 Date: Sat Jul 20 18:40:31 2002 -0400
18188
18189 Oops, was generating rdfts instead of hdfts
18190
18191 commit f82dcb63a673b994a4677ed9f8d065766c79c31c
18192 Author: Matteo Frigo <athena@fftw.org>
18193 Date: Sat Jul 20 18:25:47 2002 -0400
18194
18195 Added hc2r codelets
18196
18197 commit d8127083d80d0f0b9de30e6e3c9ae1b90f92a90d
18198 Author: Matteo Frigo <athena@fftw.org>
18199 Date: Sat Jul 20 17:54:39 2002 -0400
18200
18201 return W in hc2hc codelets
18202
18203 commit 354e28470103a92db21d621263a687a6bf437595
18204 Author: Matteo Frigo <athena@fftw.org>
18205 Date: Sat Jul 20 17:51:06 2002 -0400
18206
18207 Some work on rdft codelets
18208
18209 commit 8a7b5a3242b8bd823c8d70e1b04e9492d6d65d43
18210 Author: Matteo Frigo <athena@fftw.org>
18211 Date: Tue Jul 16 13:55:50 2002 -0400
18212
18213 fix const
18214
18215 commit 6a3576889b8683e9ee15d2f95fb76f6fef645667
18216 Author: Matteo Frigo <athena@fftw.org>
18217 Date: Tue Jul 16 07:00:10 2002 -0400
18218
18219 Separate CFLAGS in codelets. Fix const in certain places.
18220
18221 commit 7870f6dff402e655def77265bc4ac0225608f677
18222 Author: Steven G. Johnson <stevenj@fftw.org>
18223 Date: Mon Jul 15 21:10:42 2002 -0400
18224
18225 note buffering problem
18226
18227 commit 0bd6af885007a6f0561577c521d4999c903f27df
18228 Author: Matteo Frigo <athena@fftw.org>
18229 Date: Mon Jul 15 20:27:51 2002 -0400
18230
18231 Removed unpredictable branch from inner loop
18232
18233 commit 8a40f059239add905fa4c0abd6c20a40644559fa
18234 Author: Steven G. Johnson <stevenj@fftw.org>
18235 Date: Mon Jul 15 19:35:04 2002 -0400
18236
18237 update
18238
18239 commit 45bb25aa64ce46c8821c9717770a28a5ab60e492
18240 Author: Steven G. Johnson <stevenj@fftw.org>
18241 Date: Mon Jul 15 19:31:39 2002 -0400
18242
18243 optimization
18244
18245 commit 526958106e6a43bfc1d4a7cab335fc3df41a7d9f
18246 Author: Steven G. Johnson <stevenj@fftw.org>
18247 Date: Mon Jul 15 19:28:30 2002 -0400
18248
18249 added generic dit
18250
18251 commit aebc10cb69074f33b3370de5aff7bc20b684800b
18252 Author: Steven G. Johnson <stevenj@fftw.org>
18253 Date: Mon Jul 15 17:03:53 2002 -0400
18254
18255 whoops, mksolver should be static
18256
18257 commit e2b6303fa6575e6796c2834f222b77d221e1a77e
18258 Author: Matteo Frigo <athena@fftw.org>
18259 Date: Mon Jul 15 16:46:36 2002 -0400
18260
18261 First implementation of gen_hc2hc, probably still buggy.
18262
18263 commit 0105f03531806f86cc1c0e89c18b91947b15cb10
18264 Author: Steven G. Johnson <stevenj@fftw.org>
18265 Date: Mon Jul 15 16:40:23 2002 -0400
18266
18267 don't count loading of twiddle factors in ops.other, since it isn't
18268 counted for the codelets
18269
18270 commit 47f3220441f5da7ee844e0abd36f41f32b4bc17e
18271 Author: Steven G. Johnson <stevenj@fftw.org>
18272 Date: Mon Jul 15 15:13:19 2002 -0400
18273
18274 plan_destroy puts plan to sleep before deallocating it, to eliminate duplicate free calls in solvers
18275
18276 commit 90347b282680ec2b611ededef7ab7272beb2857a
18277 Author: Steven G. Johnson <stevenj@fftw.org>
18278 Date: Mon Jul 15 15:07:41 2002 -0400
18279
18280 fftw2-like vector recursion flag
18281
18282 commit df45d5d1588019d57e80aee326c92e5ffb49715f
18283 Author: Matteo Frigo <athena@fftw.org>
18284 Date: Sun Jul 14 21:01:44 2002 -0400
18285
18286 More jokes
18287
18288 commit 5efd22c7d5499d7bad84216e526ec11551fb81f0
18289 Author: Matteo Frigo <athena@fftw.org>
18290 Date: Sun Jul 14 20:36:01 2002 -0400
18291
18292 Bless plan for testing purposes
18293
18294 commit dd45761d063a5473473f44d5800a55b35794c8a6
18295 Author: Matteo Frigo <athena@fftw.org>
18296 Date: Sun Jul 14 20:35:49 2002 -0400
18297
18298 Canonical linked-list deletion (hope it is right)
18299
18300 commit 04cbcbfe2eb171da6ee678d000f1cf7aa2435f5d
18301 Author: Steven G. Johnson <stevenj@fftw.org>
18302 Date: Sun Jul 14 18:26:19 2002 -0400
18303
18304 use estimating planner for cld_omega
18305
18306 commit c2e125a60dc8101c25c1f08debd9a4b1661b1658
18307 Author: Steven G. Johnson <stevenj@fftw.org>
18308 Date: Sun Jul 14 18:10:56 2002 -0400
18309
18310 better internal naming
18311
18312 commit fac5147b9b14fe2997cde8bbd5a39c956f577eaf
18313 Author: Steven G. Johnson <stevenj@fftw.org>
18314 Date: Sun Jul 14 18:10:01 2002 -0400
18315
18316 printing should really be fixed now, grrr
18317
18318 commit 8dbd07648153ea12bd52c12aad39b58adc479140
18319 Author: Steven G. Johnson <stevenj@fftw.org>
18320 Date: Sun Jul 14 17:57:12 2002 -0400
18321
18322 print all distinct child plans
18323
18324 commit af0c968546d0c39197e3c7925e21bf1897f1b5ab
18325 Author: Steven G. Johnson <stevenj@fftw.org>
18326 Date: Sun Jul 14 17:49:21 2002 -0400
18327
18328 whoops
18329
18330 commit af601a5405861e68cedd4314f70b677b6c36e640
18331 Author: Steven G. Johnson <stevenj@fftw.org>
18332 Date: Sun Jul 14 17:45:54 2002 -0400
18333
18334 whoops, destroy should delete twiddle/omega from list
18335
18336 commit a20712e3a4b5d2364f092fd222b540cbc8c2df44
18337 Author: Steven G. Johnson <stevenj@fftw.org>
18338 Date: Sun Jul 14 17:33:02 2002 -0400
18339
18340 whoops
18341
18342 commit a43e6c2aeb20b20987891fa7461cc6a2898d1785
18343 Author: Steven G. Johnson <stevenj@fftw.org>
18344 Date: Sun Jul 14 17:12:14 2002 -0400
18345
18346 added plan_bless and FORGET_ACCURSED
18347
18348 commit 8da186b0e85df747bbd0a91db772c869e9b35e3c
18349 Author: Steven G. Johnson <stevenj@fftw.org>
18350 Date: Sun Jul 14 16:15:43 2002 -0400
18351
18352 further cleanup
18353
18354 commit 255479f4ad3175722fe32fd4a2b7cefa858b3b35
18355 Author: Steven G. Johnson <stevenj@fftw.org>
18356 Date: Sun Jul 14 16:14:15 2002 -0400
18357
18358 slight cleanup
18359
18360 commit d5346f1dfc7154d9a4fbade8fba1dcce90c7bec5
18361 Author: Steven G. Johnson <stevenj@fftw.org>
18362 Date: Sun Jul 14 16:09:17 2002 -0400
18363
18364 added traverse_plan via print (ugh)
18365
18366 commit 1edcc5b2fb3cf8741aec7b32042453803a1eb145
18367 Author: Steven G. Johnson <stevenj@fftw.org>
18368 Date: Sun Jul 14 15:08:29 2002 -0400
18369
18370 added TW_FULL, and additional n parameter for twiddles
18371
18372 commit c300c4c9e119ee5e657fe52fa48ce8251321f8a2
18373 Author: Steven G. Johnson <stevenj@fftw.org>
18374 Date: Sun Jul 14 15:03:51 2002 -0400
18375
18376 whoops
18377
18378 commit 8eb08032b56dac1d0b4200c2a1e17e6a33674395
18379 Author: Steven G. Johnson <stevenj@fftw.org>
18380 Date: Sun Jul 14 13:49:20 2002 -0400
18381
18382 save flags before invoking solver mkplan
18383
18384 commit 68d1b66d54458eb685bee1a95bd4433421a68f58
18385 Author: Matteo Frigo <athena@fftw.org>
18386 Date: Sun Jul 14 09:28:37 2002 -0400
18387
18388 [empty commit message]
18389
18390 commit 8f335f455b54a35089073c690ecd93c7380c1b95
18391 Author: Steven G. Johnson <stevenj@fftw.org>
18392 Date: Sat Jul 13 22:17:29 2002 -0400
18393
18394 added support for UNICOS _rtc() real-time-clock intrinsic function
18395
18396 commit e0550777d2519623392bd1678c39e7491fd3d38c
18397 Author: Steven G. Johnson <stevenj@fftw.org>
18398 Date: Sat Jul 13 22:06:35 2002 -0400
18399
18400 fixed typo: HAVE_TIME_H should include time.h, not sys/time.h
18401
18402 commit fcff09d063384ac24b87c16cfed1c246de45623f
18403 Author: Steven G. Johnson <stevenj@fftw.org>
18404 Date: Sat Jul 13 21:46:02 2002 -0400
18405
18406 support AIX read_real_time timer
18407
18408 commit ca89737634be3d5de4851c1f3fbc19d900cf22b0
18409 Author: Steven G. Johnson <stevenj@fftw.org>
18410 Date: Sat Jul 13 17:02:51 2002 -0400
18411
18412 use && instead of the (sigh) unportable -a
18413
18414 commit 769cf9267df8b75c3e2849a171e995136bacd4af
18415 Author: Steven G. Johnson <stevenj@fftw.org>
18416 Date: Sat Jul 13 16:38:18 2002 -0400
18417
18418 use AC_HELP_STRING
18419
18420 commit 6600ee1ae97f1919117e4c3877092249443c545b
18421 Author: Steven G. Johnson <stevenj@fftw.org>
18422 Date: Sat Jul 13 16:05:43 2002 -0400
18423
18424 support long-double precision
18425
18426 commit d7aff35e1553f8735b56597fd524c5b52d8e475f
18427 Author: Steven G. Johnson <stevenj@fftw.org>
18428 Date: Sat Jul 13 15:48:10 2002 -0400
18429
18430 whoops whoops
18431
18432 commit 9a20964a145ceef9018cf8bf0977be7ba63ecb6e
18433 Author: Steven G. Johnson <stevenj@fftw.org>
18434 Date: Sat Jul 13 15:47:39 2002 -0400
18435
18436 whoops
18437
18438 commit d040c7ef353abc5accf76a9953a26feb2d11fc0c
18439 Author: Steven G. Johnson <stevenj@fftw.org>
18440 Date: Sat Jul 13 14:13:42 2002 -0400
18441
18442 buffered solver strides have been fixed
18443
18444 commit 6bcbee663a0b8b8b23b70a180e1ca12ee1141724
18445 Author: Steven G. Johnson <stevenj@fftw.org>
18446 Date: Sat Jul 13 13:48:13 2002 -0400
18447
18448 convention
18449
18450 commit 4d3d49e4b447b49a45b803fea4ff4d23a31288a0
18451 Author: Steven G. Johnson <stevenj@fftw.org>
18452 Date: Sat Jul 13 12:50:06 2002 -0400
18453
18454 share twiddle arrays in Rader
18455
18456 commit 91dbf0b319de38c0b67df70aa4c39ccac0b523da
18457 Author: Steven G. Johnson <stevenj@fftw.org>
18458 Date: Sat Jul 13 12:48:10 2002 -0400
18459
18460 call done() after verify
18461
18462 commit b5b07111cda5f2b5b1130829d05b698575f4a5f8
18463 Author: Steven G. Johnson <stevenj@fftw.org>
18464 Date: Fri Jul 12 15:42:04 2002 -0400
18465
18466 output planner time with -v
18467
18468 commit b71bd73584d1e960018fbda1b8f078fa4e2ea542
18469 Author: Steven G. Johnson <stevenj@fftw.org>
18470 Date: Fri Jul 12 15:40:14 2002 -0400
18471
18472 support double outputs
18473
18474 commit e808db8fbfe2b7d4afbabe558d5a757379c49dd8
18475 Author: Steven G. Johnson <stevenj@fftw.org>
18476 Date: Fri Jul 12 15:09:19 2002 -0400
18477
18478 removed extraneous parens
18479
18480 commit b1ca74610947a0007932fb0eb65c794868f15977
18481 Author: Steven G. Johnson <stevenj@fftw.org>
18482 Date: Fri Jul 12 15:08:13 2002 -0400
18483
18484 increase maxbufsz to 64k; makes a big difference for large 2d transforms
18485
18486 commit 92dfa732c944f37774e1b4b9b889ba64a7621ccb
18487 Author: Matteo Frigo <athena@fftw.org>
18488 Date: Fri Jul 12 05:59:26 2002 -0400
18489
18490 Fix
18491
18492 commit fdae83d7830d6df98ac417066e0c5ea8bc254d35
18493 Author: Steven G. Johnson <stevenj@fftw.org>
18494 Date: Fri Jul 12 01:22:38 2002 -0400
18495
18496 fix comment
18497
18498 commit 8b316634377ad2f829c26d6d107005638c6ab8ba
18499 Author: Steven G. Johnson <stevenj@fftw.org>
18500 Date: Fri Jul 12 00:59:29 2002 -0400
18501
18502 fix in comment
18503
18504 commit efb8ce2f3a2e518f02245f8eb12425a30bb420c0
18505 Author: Steven G. Johnson <stevenj@fftw.org>
18506 Date: Fri Jul 12 00:13:13 2002 -0400
18507
18508 updated
18509
18510 commit 21a94bd1783b4cde2728d54932cdf1ecf2485a21
18511 Author: Steven G. Johnson <stevenj@fftw.org>
18512 Date: Thu Jul 11 23:39:27 2002 -0400
18513
18514 buffered malloc's buffers
18515
18516 commit 2cec064ce9f3fd0ccd891651557a5739409c19c3
18517 Author: Steven G. Johnson <stevenj@fftw.org>
18518 Date: Thu Jul 11 23:30:26 2002 -0400
18519
18520 share more code between apply and apply_dit in Rader
18521
18522 commit afd5fe37e6c3060145530115b6c2f2d676ddfe37
18523 Author: Matteo Frigo <athena@fftw.org>
18524 Date: Mon Jul 8 12:30:34 2002 -0400
18525
18526 Polished
18527
18528 commit 71ae7be079984537f7770d1b70280b77ad23c722
18529 Author: Matteo Frigo <athena@fftw.org>
18530 Date: Mon Jul 8 09:47:11 2002 -0400
18531
18532 [empty commit message]
18533
18534 commit a5760afe5aed6838383937fad0a3243528ce15fc
18535 Author: Matteo Frigo <athena@fftw.org>
18536 Date: Mon Jul 8 09:42:08 2002 -0400
18537
18538 SIMD/FMA stuff
18539
18540 commit ec76a60088a86df970b3cbf4005506ade4570040
18541 Author: Matteo Frigo <athena@fftw.org>
18542 Date: Mon Jul 8 07:43:51 2002 -0400
18543
18544 Avoid code duplication
18545
18546 commit ffce0587abc26960f1bffb08b99f61280176d25b
18547 Author: Matteo Frigo <athena@fftw.org>
18548 Date: Sun Jul 7 20:56:15 2002 -0400
18549
18550 Fixes for FMA+SIMD
18551
18552 commit cd1278e203d5014ee55026d00eef0c5cd87091a7
18553 Author: Matteo Frigo <athena@fftw.org>
18554 Date: Sun Jul 7 20:32:01 2002 -0400
18555
18556 Major changes in SIMD fftw
18557
18558 commit 47b31e4f895a8385d29297182fd4ab3cbe756486
18559 Author: Matteo Frigo <athena@fftw.org>
18560 Date: Fri Jul 5 17:32:09 2002 -0400
18561
18562 Use unpck instructions instead of shuffles
18563
18564 commit 8390c4b680fa05c264d6308d70aeb8b69e97b44a
18565 Author: Matteo Frigo <athena@fftw.org>
18566 Date: Fri Jul 5 15:49:14 2002 -0400
18567
18568 Minor tweaks
18569
18570 commit 9939d14df8ec43f0f3724eccce6907f723ae7bcd
18571 Author: Matteo Frigo <athena@fftw.org>
18572 Date: Fri Jul 5 15:02:54 2002 -0400
18573
18574 Use score planner
18575
18576 commit db780c34509c8cc70385f63815249dbb982371ab
18577 Author: Matteo Frigo <athena@fftw.org>
18578 Date: Fri Jul 5 14:49:59 2002 -0400
18579
18580 Added verifier
18581
18582 commit a4c35fbcefcca25a0e31431dcdabb0d44a2bfb98
18583 Author: Matteo Frigo <athena@fftw.org>
18584 Date: Wed Jul 3 20:32:28 2002 -0400
18585
18586 More simd codelets
18587
18588 commit 0b41b3e8c38d89cca050b1b0df6110056a55463e
18589 Author: Matteo Frigo <athena@fftw.org>
18590 Date: Tue Jul 2 16:18:09 2002 -0400
18591
18592 Oops
18593
18594 commit 4aa14927597947c2f2c0c38064e92ce29850f3eb
18595 Author: Matteo Frigo <athena@fftw.org>
18596 Date: Tue Jul 2 16:13:24 2002 -0400
18597
18598 Fixed classic mode
18599
18600 commit b32c4fa8b6fddb6a4af23a7d2794adb53733fc2d
18601 Author: Matteo Frigo <athena@fftw.org>
18602 Date: Tue Jul 2 15:38:36 2002 -0400
18603
18604 Use LDK for constants so that we can play games.
18605
18606 commit 38505faa2d20e4d958d80dce05620dbf20420822
18607 Author: Matteo Frigo <athena@fftw.org>
18608 Date: Tue Jul 2 13:15:58 2002 -0400
18609
18610 Improved support for fixed strides
18611
18612 commit 2c99260bbd5e86361b09120817f07543384fc5e0
18613 Author: Matteo Frigo <athena@fftw.org>
18614 Date: Tue Jul 2 10:30:58 2002 -0400
18615
18616 Changed accounting of flops
18617
18618 commit ae3999cb3d0ec0d5140c9dead499de0cf4318e5e
18619 Author: Matteo Frigo <athena@fftw.org>
18620 Date: Tue Jul 2 08:51:38 2002 -0400
18621
18622 Wrong code in non-fma mode
18623
18624 commit 55015bd78bfbcbffb833554b7df558efd1a826cc
18625 Author: Matteo Frigo <athena@fftw.org>
18626 Date: Mon Jul 1 23:17:06 2002 -0400
18627
18628 sse2 stuff
18629
18630 commit 021b59968903662e9727f7833c19c613f1b192b7
18631 Author: Matteo Frigo <athena@fftw.org>
18632 Date: Mon Jul 1 14:05:56 2002 -0400
18633
18634 Identify CPUs for special codelets
18635
18636 commit f304f0151ac1ad333b9450a6d78c8cd8f8724d1a
18637 Author: Matteo Frigo <athena@fftw.org>
18638 Date: Mon Jul 1 09:26:42 2002 -0400
18639
18640 Change split problem syntax
18641
18642 commit 48a37449fcbd51779bb3dde3f3b8c2d02bbc323d
18643 Author: Matteo Frigo <athena@fftw.org>
18644 Date: Mon Jul 1 09:11:39 2002 -0400
18645
18646 Removed -fma flag
18647
18648 commit 38d63d20ab1bd900f5f89914ca7b7f90191d866f
18649 Author: Matteo Frigo <athena@fftw.org>
18650 Date: Sun Jun 30 20:08:26 2002 -0400
18651
18652 Work around gcc bug
18653
18654 commit 6b96cea114710b35caa1d65a669f92a46e20f27f
18655 Author: Matteo Frigo <athena@fftw.org>
18656 Date: Sun Jun 30 18:34:06 2002 -0400
18657
18658 New simd stuff
18659
18660 commit 5dd26fcef247d6776f4b5b587b15a1b317a97431
18661 Author: Matteo Frigo <athena@fftw.org>
18662 Date: Sun Jun 30 17:00:09 2002 -0400
18663
18664 Added altivec support
18665
18666 commit a81146d09b6762b1c82b9f998720454245ee5e25
18667 Author: Matteo Frigo <athena@fftw.org>
18668 Date: Sun Jun 30 14:47:47 2002 -0400
18669
18670 Forgot file
18671
18672 commit 734f270fddd3a03066eb4323706090f99c82bf9c
18673 Author: Matteo Frigo <athena@fftw.org>
18674 Date: Sun Jun 30 14:37:55 2002 -0400
18675
18676 Progress towards simd implementation
18677
18678 commit 05dc59aa43296d7fb6b79edf5decf65e9a100401
18679 Author: Matteo Frigo <athena@fftw.org>
18680 Date: Tue Jun 25 20:23:29 2002 -0400
18681
18682 Add 128- codelet
18683
18684 commit a94cde7e798f7da510f20b25d1a4bd4aea4dc58b
18685 Author: Matteo Frigo <athena@fftw.org>
18686 Date: Sat Jun 22 20:47:28 2002 -0400
18687
18688 More simd changes. Ensure proper stack alignment in k7 codelets.
18689
18690 commit c4ef1c53884a0a7fee4587ef0b1f4317ae83a644
18691 Author: Matteo Frigo <athena@fftw.org>
18692 Date: Sat Jun 22 13:01:33 2002 -0400
18693
18694 Fixed prototypes
18695
18696 commit 5383095f6dd63b1db544695c4b0f7f244344d698
18697 Author: Matteo Frigo <athena@fftw.org>
18698 Date: Sat Jun 22 12:53:26 2002 -0400
18699
18700 Sparc cycle counter requires v9
18701
18702 commit a25e9ee31d663307683038fbf703f0ed60a502e3
18703 Author: Matteo Frigo <athena@fftw.org>
18704 Date: Sat Jun 22 11:45:48 2002 -0400
18705
18706 Minor fixes
18707
18708 commit 01922e916a7428cc0f7f188518720710b101e9e6
18709 Author: Matteo Frigo <athena@fftw.org>
18710 Date: Sat Jun 22 11:11:46 2002 -0400
18711
18712 Fixed ev67 detection
18713
18714 commit ff1e337f46f9f1bbdcc32756bcdaa0e86566df2e
18715 Author: Matteo Frigo <athena@fftw.org>
18716 Date: Sat Jun 22 10:19:11 2002 -0400
18717
18718 Print flops
18719
18720 commit 3f2d94c9ccabcf93d7f8b1230c5b2f97ac6cc4d2
18721 Author: Matteo Frigo <athena@fftw.org>
18722 Date: Sat Jun 22 09:36:47 2002 -0400
18723
18724 Nothing really
18725
18726 commit 8843a01025a26b7bb5a3f26b94c46243332cca25
18727 Author: Matteo Frigo <athena@fftw.org>
18728 Date: Fri Jun 21 22:19:20 2002 -0400
18729
18730 More simd work
18731
18732 commit 3a71fc73cd6c17ba8df8d7aad29fa1bf5ad71a96
18733 Author: Matteo Frigo <athena@fftw.org>
18734 Date: Thu Jun 20 21:22:41 2002 -0400
18735
18736 More simd work
18737
18738 commit fcbb846544687bd8c14e9d004746230e8b6a49e2
18739 Author: Matteo Frigo <athena@fftw.org>
18740 Date: Thu Jun 20 18:51:33 2002 -0400
18741
18742 More simd work
18743
18744 commit 4e25f887266e572b5418dcd0bad8db69265ba3b3
18745 Author: Matteo Frigo <athena@fftw.org>
18746 Date: Thu Jun 20 15:04:37 2002 -0400
18747
18748 Moving towards incorporation of simd stuff
18749
18750 commit 8b98bf67f5e3c976f17988acc8c2e063d3848408
18751 Author: Matteo Frigo <athena@fftw.org>
18752 Date: Wed Jun 19 18:47:55 2002 -0400
18753
18754 Reorganized k7 stuff into own directory
18755
18756 commit 30f0669ed255025d8e4bad6adb9737022a7a6b34
18757 Author: Matteo Frigo <athena@fftw.org>
18758 Date: Wed Jun 19 13:21:13 2002 -0400
18759
18760 Minor experimental stuff
18761
18762 commit 51b0055df9ca6f4c9ea05ccbeb4714bd61d8469b
18763 Author: Matteo Frigo <athena@fftw.org>
18764 Date: Wed Jun 19 11:20:29 2002 -0400
18765
18766 Cosmetic changes
18767
18768 commit 3309bd7a80d6dfb0da60d6c2a185d5213505b036
18769 Author: fftw <none>
18770 Date: Wed Jun 19 01:43:31 2002 -0400
18771
18772 allocate buffers on the fly
18773
18774 commit d290c98ff9fdac1646b56bf9fd80913ecf4b42ed
18775 Author: Matteo Frigo <athena@fftw.org>
18776 Date: Tue Jun 18 17:48:41 2002 -0400
18777
18778 Added ct-ditbuf-k7.c . Major changes required in generator.
18779
18780 commit c672bc817602bb03a8e6d7b637e78e84dc2f1f1d
18781 Author: Matteo Frigo <athena@fftw.org>
18782 Date: Tue Jun 18 11:55:57 2002 -0400
18783
18784 Nothing, really
18785
18786 commit 327d908d5d396a22fa85216b24203c6b709f9379
18787 Author: Matteo Frigo <athena@fftw.org>
18788 Date: Tue Jun 18 11:19:59 2002 -0400
18789
18790 !SINGLE ==> !K7_MODE (for some reason the contrapositive sounds wrong)
18791
18792 commit fc34a6a92882caf5e8346225e9c25a2a1b6fcb2c
18793 Author: Matteo Frigo <athena@fftw.org>
18794 Date: Tue Jun 18 11:07:13 2002 -0400
18795
18796 Buffer is now symmetric wrt forward/backward transform
18797
18798 commit 2dfa3580ad3c4d0960a3b18aba5464c6d9cc91c1
18799 Author: Matteo Frigo <athena@fftw.org>
18800 Date: Tue Jun 18 10:33:58 2002 -0400
18801
18802 Fixed applicable() in indirect.c
18803
18804 commit 40e9e2373f160b3760c87aa707e20aa91a30479d
18805 Author: Matteo Frigo <athena@fftw.org>
18806 Date: Tue Jun 18 08:41:18 2002 -0400
18807
18808 Fixed attempt to free() uninitialized pointer.
18809
18810 commit 854771dbd1a262127ab6ef87b31e6ec3645dbce4
18811 Author: Matteo Frigo <athena@fftw.org>
18812 Date: Tue Jun 18 08:13:55 2002 -0400
18813
18814 Added reference counts for awake()
18815
18816 commit b65907ea5ba6b84347976ae59688acbc4a982b82
18817 Author: Steven G. Johnson <stevenj@fftw.org>
18818 Date: Mon Jun 17 20:49:05 2002 -0400
18819
18820 updated comment
18821
18822 commit 11cbdda3f3c4e688e59eb28d43946c6053ce461e
18823 Author: Steven G. Johnson <stevenj@fftw.org>
18824 Date: Mon Jun 17 20:46:45 2002 -0400
18825
18826 slight update
18827
18828 commit df79d1312e84ddc47b65056c2b59fb6eec20915b
18829 Author: fftw <none>
18830 Date: Mon Jun 17 02:30:16 2002 -0400
18831
18832 moved prime-number stuff into primes.c, so it can be shared with generic codelet and with rfftw rader
18833
18834 commit 92c3a4be474dca7d3e4f2076f2d5c61e040e6739
18835 Author: fftw <none>
18836 Date: Mon Jun 17 02:01:58 2002 -0400
18837
18838 added comment
18839
18840 commit b580b3303f83589a5b87ad88f104ed41b8c641a3
18841 Author: fftw <none>
18842 Date: Mon Jun 17 01:39:55 2002 -0400
18843
18844 added rader-dit
18845
18846 commit 51f015c4a6df06fa475e6e291d7e0f8a0293a891
18847 Author: fftw <none>
18848 Date: Sun Jun 16 23:50:16 2002 -0400
18849
18850 added initial Rader (no DIT yet)
18851
18852 commit d45d1bbd591b1c30885baa7b1025ae016b23e937
18853 Author: fftw <none>
18854 Date: Sun Jun 16 22:29:51 2002 -0400
18855
18856 don't warn about long long
18857
18858 commit 16ad72af138d08605df2fadf239e142ace2680eb
18859 Author: Matteo Frigo <athena@fftw.org>
18860 Date: Sun Jun 16 21:30:42 2002 -0400
18861
18862 Added k7 DIF codelets
18863
18864 commit 3728b053dde52469a7deea4654ca0352c40bd6d4
18865 Author: Matteo Frigo <athena@fftw.org>
18866 Date: Sun Jun 16 19:13:31 2002 -0400
18867
18868 Added stuff to do
18869
18870 commit 6eadf663f6d05339378e742de11484c6d46283a5
18871 Author: Matteo Frigo <athena@fftw.org>
18872 Date: Sun Jun 16 19:05:58 2002 -0400
18873
18874 Handle dual case R = I + 1
18875
18876 commit f6e99e6f7959f1e91fb66ff344ce372c75567e9b
18877 Author: Matteo Frigo <athena@fftw.org>
18878 Date: Sun Jun 16 18:54:31 2002 -0400
18879
18880 Removed useless flag
18881
18882 commit d38b5396624973e2ddc9531587b799eaa13f9daf
18883 Author: Matteo Frigo <athena@fftw.org>
18884 Date: Sun Jun 16 18:30:32 2002 -0400
18885
18886 Removed useless file
18887
18888 commit 376194067d9decb0e20df12443a0ac64a16f67a2
18889 Author: Matteo Frigo <athena@fftw.org>
18890 Date: Sun Jun 16 18:30:18 2002 -0400
18891
18892 More k7 work. Switched to runtime CLASSIC mode.
18893
18894 commit 331b9479423ed2ad02e75cb8a759241178460ede
18895 Author: Steven G. Johnson <stevenj@fftw.org>
18896 Date: Sun Jun 16 17:15:18 2002 -0400
18897
18898 spelling
18899
18900 commit c278f9c639c8c850773474634acb51104857ad21
18901 Author: Matteo Frigo <athena@fftw.org>
18902 Date: Sun Jun 16 15:51:44 2002 -0400
18903
18904 Do not compile if not K7_MODE
18905
18906 commit 375f66850303af4e6eb9c7263fe5c5c769876065
18907 Author: Matteo Frigo <athena@fftw.org>
18908 Date: Sun Jun 16 15:35:02 2002 -0400
18909
18910 Do not require K7 definitions to compile
18911
18912 commit 684b95447b420d52337cd499589d31dce430ca4a
18913 Author: Matteo Frigo <athena@fftw.org>
18914 Date: Sun Jun 16 08:05:17 2002 -0400
18915
18916 More k7 stuff
18917
18918 commit 535c1c74ca2099099e3edbab3aa7acafa02ea7d6
18919 Author: Matteo Frigo <athena@fftw.org>
18920 Date: Sat Jun 15 18:30:43 2002 -0400
18921
18922 Try to be compatible with automake-1.6
18923
18924 commit ba06164744e743ea9ea8dabb9359dd0e3b830c9c
18925 Author: Matteo Frigo <athena@fftw.org>
18926 Date: Sat Jun 15 18:23:40 2002 -0400
18927
18928 More merging of Stefan's generator with main genfft branch
18929
18930 commit fbe6e3f25188363b31caadf2a598be16eeb2a6a7
18931 Author: Matteo Frigo <athena@fftw.org>
18932 Date: Sat Jun 15 13:51:39 2002 -0400
18933
18934 Slowly merging genfft-k7 with main genfft branch
18935
18936 commit 8a567ee1d079e0cb9ba06e66a3f06d9be0eb34b0
18937 Author: Matteo Frigo <athena@fftw.org>
18938 Date: Fri Jun 14 21:33:02 2002 -0400
18939
18940 Fixed, really
18941
18942 commit 6bd3b52c770b109a025d9982098066f91a84c937
18943 Author: Matteo Frigo <athena@fftw.org>
18944 Date: Fri Jun 14 21:27:12 2002 -0400
18945
18946 Oops...
18947
18948 commit 5b6a71f941de2e28005b7821317ec7032c0b9743
18949 Author: Matteo Frigo <athena@fftw.org>
18950 Date: Fri Jun 14 21:25:34 2002 -0400
18951
18952 Work properly when $(ALL_CODELETS) = ""
18953
18954 commit 07399bfca3c51c6e59dc5f7f9a0f1e7600ab2f41
18955 Author: Matteo Frigo <athena@fftw.org>
18956 Date: Fri Jun 14 21:11:16 2002 -0400
18957
18958 Fixed k7 build machinery
18959
18960 commit 015e0a9b55cfef97ad18e06af166a22d02240d09
18961 Author: Matteo Frigo <athena@fftw.org>
18962 Date: Fri Jun 14 17:42:35 2002 -0400
18963
18964 More work on k7 stuff
18965
18966 commit cf8b11788ed23e9e651cbadf1950302c67102f62
18967 Author: Matteo Frigo <athena@fftw.org>
18968 Date: Fri Jun 14 15:54:29 2002 -0400
18969
18970 More work on k7 stuff
18971
18972 commit 8bd8bb064c77d442eb9da44432a3030b2b48f88a
18973 Author: Matteo Frigo <athena@fftw.org>
18974 Date: Fri Jun 14 14:18:15 2002 -0400
18975
18976 Changed my mind again
18977
18978 commit 1cfe47c1940dab749e1c63c15bfde4d0eed29495
18979 Author: Matteo Frigo <athena@fftw.org>
18980 Date: Fri Jun 14 11:53:09 2002 -0400
18981
18982 Removed some useless stuff.
18983
18984 commit 315edea8537b5df64d2eb456cd20f12e16c50544
18985 Author: Matteo Frigo <athena@fftw.org>
18986 Date: Fri Jun 14 11:01:39 2002 -0400
18987
18988 Hmm...
18989
18990 commit fb33fef8ea963d61445cfdef5dcf576cbd616cd8
18991 Author: Matteo Frigo <athena@fftw.org>
18992 Date: Fri Jun 14 10:28:12 2002 -0400
18993
18994 More work in preparation for k7 stuff
18995
18996 commit 1efd1ce4b0d507eab8ff1b618a75bb66303b690d
18997 Author: Matteo Frigo <athena@fftw.org>
18998 Date: Fri Jun 14 07:25:28 2002 -0400
18999
19000 Still preparing to include k7 stuff
19001
19002 commit 4c4195fba4ee1d73c35a4d8695a714d788a542cb
19003 Author: Matteo Frigo <athena@fftw.org>
19004 Date: Fri Jun 14 07:06:02 2002 -0400
19005
19006 Create .depend
19007
19008 commit 4a55307470a6737b48d2cfb10be690ce60b7ac25
19009 Author: Matteo Frigo <athena@fftw.org>
19010 Date: Fri Jun 14 06:56:15 2002 -0400
19011
19012 Imported Stefan's K7 generator
19013
19014 commit 61a7a73d101594961d9b63fb34fb2340635aaf1b
19015 Author: Matteo Frigo <athena@fftw.org>
19016 Date: Thu Jun 13 15:30:41 2002 -0400
19017
19018 Generator for real->halfcomplex and halfcomplex->real codelets
19019
19020 commit d43342dc8c0aa4ac1802eff495ca96ac37c9fb22
19021 Author: Matteo Frigo <athena@fftw.org>
19022 Date: Thu Jun 13 11:54:02 2002 -0400
19023
19024 Improved hash functions, printers
19025
19026 commit b26a2a40553deea06a47abfd3ba1f45d54b28cc2
19027 Author: Matteo Frigo <athena@fftw.org>
19028 Date: Thu Jun 13 11:17:31 2002 -0400
19029
19030 Only regenerate codlist.c in maintainer mode
19031
19032 commit 39f18e53eaf87dc26e7001bccb2839fca11d1bf8
19033 Author: Matteo Frigo <athena@fftw.org>
19034 Date: Thu Jun 13 11:04:24 2002 -0400
19035
19036 Planner can export solution list
19037
19038 commit 94b38d1890179198beac49ead7263d4c0a345a59
19039 Author: Matteo Frigo <athena@fftw.org>
19040 Date: Thu Jun 13 08:59:53 2002 -0400
19041
19042 Fixed for intel compiler
19043
19044 commit bd4fbd5827358275240d991af98b0c477a4158cf
19045 Author: Matteo Frigo <athena@fftw.org>
19046 Date: Thu Jun 13 08:48:51 2002 -0400
19047
19048 Revised strategy for constants in codelets
19049
19050 commit 9d1d76e5a32774ac2c7d9c43d2594032aeb20933
19051 Author: Matteo Frigo <athena@fftw.org>
19052 Date: Thu Jun 13 06:21:31 2002 -0400
19053
19054 Enable score planner in classic mode, naive planner in pro mode.
19055
19056 commit 81ae7fad037e7325c65da97a3c842c220ea68a2d
19057 Author: Matteo Frigo <athena@fftw.org>
19058 Date: Wed Jun 12 19:18:18 2002 -0400
19059
19060 Report classic/pro
19061
19062 commit 2c6576feda81b17c61be5678e97ca1a4db5f7935
19063 Author: Matteo Frigo <athena@fftw.org>
19064 Date: Wed Jun 12 19:07:48 2002 -0400
19065
19066 Fixed behavior of buffered solver for large buffers.
19067
19068 commit e241b59af22b29dd33ada31e9dcfc93eadfc594f
19069 Author: Matteo Frigo <athena@fftw.org>
19070 Date: Wed Jun 12 18:57:19 2002 -0400
19071
19072 Make assumption COST(vector) = length * COST(scalar) in classic mode.
19073
19074 commit 2ccbe15f93c5f1bd3bdf6997f28ef1f10a2a5c76
19075 Author: Matteo Frigo <athena@fftw.org>
19076 Date: Wed Jun 12 18:19:48 2002 -0400
19077
19078 Revised planner implementation in preparation for wisdom.
19079
19080 commit 40ff868c177cd7afc80a4b35f2771aadd59ec6a4
19081 Author: Matteo Frigo <athena@fftw.org>
19082 Date: Wed Jun 12 08:27:36 2002 -0400
19083
19084 Manually hoist loop invariants.
19085
19086 commit fca6f800f5e3a40bf20f80e4a2b3da5fe64da13e
19087 Author: Matteo Frigo <athena@fftw.org>
19088 Date: Wed Jun 12 07:47:41 2002 -0400
19089
19090 Revised loop to compile better with gcc -O
19091
19092 commit c3e9fb16552f161f337915be9bba97d50aeca6a6
19093 Author: Matteo Frigo <athena@fftw.org>
19094 Date: Tue Jun 11 17:24:09 2002 -0400
19095
19096 Changed tensor syntax
19097
19098 commit c2fb4345e13f698ea829e790e9e50bf5f218d740
19099 Author: Matteo Frigo <athena@fftw.org>
19100 Date: Tue Jun 11 16:39:45 2002 -0400
19101
19102 Added stuff to do.
19103
19104 commit 79b41ae4b2cf1c9d44e386a0fad68531b6fc78a7
19105 Author: Matteo Frigo <athena@fftw.org>
19106 Date: Tue Jun 11 16:28:14 2002 -0400
19107
19108 Report classic/pro in version number
19109
19110 commit e80c221c61c5f10652272a7b86dc61d461ace6d1
19111 Author: Matteo Frigo <athena@fftw.org>
19112 Date: Tue Jun 11 14:22:49 2002 -0400
19113
19114 Renamed versions into classic/pro
19115
19116 commit 49f5d6fa06030e9ee51346622a68b20e37eff60b
19117 Author: Matteo Frigo <athena@fftw.org>
19118 Date: Tue Jun 11 14:06:06 2002 -0400
19119
19120 Revised planners, estimator
19121
19122 commit cd4556586e22a54132fe9b13920474a2b404fe21
19123 Author: Matteo Frigo <athena@fftw.org>
19124 Date: Tue Jun 11 11:45:41 2002 -0400
19125
19126 I don't know what I am doing.
19127
19128 commit 2feca6ebca91d4c762240f32f2381be534adb289
19129 Author: Matteo Frigo <athena@fftw.org>
19130 Date: Tue Jun 11 10:35:52 2002 -0400
19131
19132 Massive revision of estimator
19133
19134 commit 9147712cee87c8b5aff5dc3deebcadf1c159ea90
19135 Author: Matteo Frigo <athena@fftw.org>
19136 Date: Tue Jun 11 07:32:20 2002 -0400
19137
19138 Many changes
19139
19140 commit a68d4a6962649cd7996d2320934764d7490bf685
19141 Author: Matteo Frigo <athena@fftw.org>
19142 Date: Mon Jun 10 21:35:29 2002 -0400
19143
19144 Keep it simple, stupid.
19145
19146 commit 6561b587e1de9ea7d45bd354ad1907512733d3e2
19147 Author: Matteo Frigo <athena@fftw.org>
19148 Date: Mon Jun 10 19:24:28 2002 -0400
19149
19150 Fixed when #undef PRECOMPUTE_ARRAY_INDICES
19151
19152 commit dc412dcd137b131ea524fedf1e7012ad405068bc
19153 Author: Matteo Frigo <athena@fftw.org>
19154 Date: Mon Jun 10 17:58:13 2002 -0400
19155
19156 Minor changes
19157
19158 commit 9a633a7a248735746b8e8e4ef7675a2c0b2a8330
19159 Author: Matteo Frigo <athena@fftw.org>
19160 Date: Mon Jun 10 16:30:37 2002 -0400
19161
19162 Added ct-ditbuf.c, many changes everywhere
19163
19164 commit c8406b59941a26cd2145a45edbfa10d136572b94
19165 Author: Matteo Frigo <athena@fftw.org>
19166 Date: Mon Jun 10 10:55:40 2002 -0400
19167
19168 More name mangling
19169
19170 commit 0889cbac352d22d2214500301375f43bf584a6f6
19171 Author: Matteo Frigo <athena@fftw.org>
19172 Date: Mon Jun 10 10:08:27 2002 -0400
19173
19174 Fixed build system for single/double precision
19175
19176 commit c27e0f15eeb5336b8eebc47c215d2ba092e68aa9
19177 Author: Matteo Frigo <athena@fftw.org>
19178 Date: Mon Jun 10 09:04:21 2002 -0400
19179
19180 Massive renaming to support both single and double precision.
19181 (Must recompile everything twice).
19182
19183 commit a0b9a19548d7a6278163b36fa1d3088a3ae24cd7
19184 Author: Matteo Frigo <athena@fftw.org>
19185 Date: Mon Jun 10 06:49:55 2002 -0400
19186
19187 Preliminary crude support for vector transforms in benchmark library.
19188
19189 commit ac333b5f92707c9dd867b283d23a53bc64ef69dc
19190 Author: Matteo Frigo <athena@fftw.org>
19191 Date: Sun Jun 9 21:11:51 2002 -0400
19192
19193 Wrong cast
19194
19195 commit 669c861be6b66386cd4e8bf2763a8beacebe9bf7
19196 Author: Matteo Frigo <athena@fftw.org>
19197 Date: Sun Jun 9 16:48:54 2002 -0400
19198
19199 Added things to do.
19200
19201 commit 9bfab3a2538b271e95b879402f2269d3cb796144
19202 Author: Matteo Frigo <athena@fftw.org>
19203 Date: Sun Jun 9 16:07:12 2002 -0400
19204
19205 twlen0: make static
19206
19207 commit 89e7b8c3a0488bd401d699312ce92ac4fc7ad872
19208 Author: Matteo Frigo <athena@fftw.org>
19209 Date: Sun Jun 9 15:34:54 2002 -0400
19210
19211 Nothing
19212
19213 commit d8b5a396d1befb9c8709b66e032d5babd304779b
19214 Author: Matteo Frigo <athena@fftw.org>
19215 Date: Sun Jun 9 15:30:13 2002 -0400
19216
19217 Forgot break in switch statement.
19218
19219 commit 36c2890f3950c1994c94a98ddf84e218064211d1
19220 Author: Matteo Frigo <athena@fftw.org>
19221 Date: Sun Jun 9 15:27:24 2002 -0400
19222
19223 Fix for c++ compatibility
19224
19225 commit 71882a5547eeb7ca329df8033e7b2eddb759bf76
19226 Author: Matteo Frigo <athena@fftw.org>
19227 Date: Sun Jun 9 15:16:43 2002 -0400
19228
19229 Added printer, changed everything
19230
19231 commit fea5c4c9f8ba921c22c6d7388e5babe9c73b8e26
19232 Author: Matteo Frigo <athena@fftw.org>
19233 Date: Sun Jun 9 11:37:07 2002 -0400
19234
19235 Removed redundant nop solver
19236
19237 commit 382dec87c6ce525bdbf78111112feabc152eb8f7
19238 Author: Matteo Frigo <athena@fftw.org>
19239 Date: Sun Jun 9 11:06:31 2002 -0400
19240
19241 More things to do
19242
19243 commit e471ce8b9ea5726e0a4d2b63770ca8e242327e71
19244 Author: Matteo Frigo <athena@fftw.org>
19245 Date: Sun Jun 9 11:01:41 2002 -0400
19246
19247 Introduced idea of rank -infinity and associated NOP plans
19248
19249 commit 408125e1afdc419d7a914c6475dc663199d1e372
19250 Author: Matteo Frigo <athena@fftw.org>
19251 Date: Sun Jun 9 08:36:27 2002 -0400
19252
19253 Fixed comment
19254
19255 commit eb28a96b485229b8d6883369b0cab54fe3df5b3d
19256 Author: Matteo Frigo <athena@fftw.org>
19257 Date: Sun Jun 9 08:20:13 2002 -0400
19258
19259 Removed useless assertions.
19260
19261 commit a05a666ec036474e44f87cecc89a76f13249c4cd
19262 Author: Matteo Frigo <athena@fftw.org>
19263 Date: Sun Jun 9 08:19:26 2002 -0400
19264
19265 Don't malloc(0).
19266
19267 commit 53cf44cd85d0b4fe9fd486f24c591d66fd4cb9ff
19268 Author: Matteo Frigo <athena@fftw.org>
19269 Date: Sun Jun 9 08:08:13 2002 -0400
19270
19271 Fixed signed/unsigned puns
19272
19273 commit e2aae81e2ec289bb799c02ff72172ffe7f34d076
19274 Author: Matteo Frigo <athena@fftw.org>
19275 Date: Sun Jun 9 07:52:22 2002 -0400
19276
19277 Added buffered.c
19278
19279 commit bb2eb63fb1a1ddf2a8c28a918c2108f9b128053a
19280 Author: Matteo Frigo <athena@fftw.org>
19281 Date: Sat Jun 8 16:57:54 2002 -0400
19282
19283 Fixed printout
19284
19285 commit 5e196db13b6e3ea78d999f2a2958c7e65c4e5e68
19286 Author: Matteo Frigo <athena@fftw.org>
19287 Date: Sat Jun 8 16:42:52 2002 -0400
19288
19289 Fixed comment
19290
19291 commit 00c4dc36263864bb6edf511df147475ca8049e35
19292 Author: Matteo Frigo <athena@fftw.org>
19293 Date: Sat Jun 8 16:40:58 2002 -0400
19294
19295 Added vrank3-transpose, renamed vrank0-transpose -> vrank2-transpose
19296
19297 commit 70736b265541c54ab69946ad312e21300b0b2f47
19298 Author: Matteo Frigo <athena@fftw.org>
19299 Date: Sat Jun 8 15:51:46 2002 -0400
19300
19301 Added vrank0-transpose
19302
19303 commit 21fa46aab36c0306bf64d254b8718c8eaf96118c
19304 Author: Matteo Frigo <athena@fftw.org>
19305 Date: Sat Jun 8 15:11:09 2002 -0400
19306
19307 Added planner-score.c
19308
19309 commit 3700ef27b625aa5dd4e42e19969b9d5d0e546b39
19310 Author: Matteo Frigo <athena@fftw.org>
19311 Date: Sat Jun 8 11:10:44 2002 -0400
19312
19313 Added indirect.c
19314
19315 commit 92cdbe47f89adcf0d5ae5a1535e171fa58b94f0c
19316 Author: Matteo Frigo <athena@fftw.org>
19317 Date: Sat Jun 8 09:34:58 2002 -0400
19318
19319 dif, ditf solvers
19320
19321 commit 9382caabae5da944eb93a194ed963efa5b0dcd2a
19322 Author: Matteo Frigo <athena@fftw.org>
19323 Date: Fri Jun 7 18:07:53 2002 -0400
19324
19325 Implemented rank_geq2. Revised build system
19326
19327 commit fd9d18f8d6fbe910aa48673bfcfa7b3e9a0ab7e4
19328 Author: Matteo Frigo <athena@fftw.org>
19329 Date: Fri Jun 7 07:12:25 2002 -0400
19330
19331 Fixed printout
19332
19333 commit 3f7d553cb7059f0f68b15004eb6a62a2a396c092
19334 Author: Matteo Frigo <athena@fftw.org>
19335 Date: Fri Jun 7 07:07:46 2002 -0400
19336
19337 Added rank0. Revised codelet organization.
19338
19339 commit 9b91cf2747d0b49d1220a4e1fc494fe72d2a6f64
19340 Author: Matteo Frigo <athena@fftw.org>
19341 Date: Thu Jun 6 18:03:17 2002 -0400
19342
19343 Added memoization
19344
19345 commit 61d0f601e04b8e1f9ff8fe350c4ef61211be20de
19346 Author: Matteo Frigo <athena@fftw.org>
19347 Date: Thu Jun 6 08:07:33 2002 -0400
19348
19349 Added vecloop
19350
19351 commit 5995d0f346270a179f5156150ce1997613636f8f
19352 Author: Matteo Frigo <athena@fftw.org>
19353 Date: Wed Jun 5 19:02:56 2002 -0400
19354
19355 First DIT solver/plan
19356
19357 commit 70714a1ca5a962fc4acf3c91b5b1dbb2b5518310
19358 Author: Matteo Frigo <athena@fftw.org>
19359 Date: Wed Jun 5 16:03:44 2002 -0400
19360
19361 More work on ct
19362
19363 commit 479c74ce55bbc9e78c22e4ed8506db9c494871c5
19364 Author: Matteo Frigo <athena@fftw.org>
19365 Date: Wed Jun 5 11:28:09 2002 -0400
19366
19367 Only use cycle counters
19368
19369 commit f397307a4a2ecb675736dbfaee0e3cb117ecafc4
19370 Author: Matteo Frigo <athena@fftw.org>
19371 Date: Tue Jun 4 20:22:23 2002 -0400
19372
19373 Signed/unsigned fixup
19374
19375 commit 26f9cec858cb382ad71e3d025ef4258dffce6e0d
19376 Author: Matteo Frigo <athena@fftw.org>
19377 Date: Tue Jun 4 20:03:56 2002 -0400
19378
19379 New file twiddle.c
19380
19381 commit e31060a0f867b05a6cde5ade185fa6edc487c43b
19382 Author: Matteo Frigo <athena@fftw.org>
19383 Date: Tue Jun 4 17:49:39 2002 -0400
19384
19385 Made tensor ranks and vector lengths unsigned. Hopefully fixed
19386 all places where it matters.
19387
19388 commit 33459884b1d822c57fec05becfccd6cf4a5c1efd
19389 Author: Matteo Frigo <athena@fftw.org>
19390 Date: Tue Jun 4 16:28:58 2002 -0400
19391
19392 System is in working state now (but very incomplete)
19393
19394 commit 53e8499d5241b1194dcf9d39bb617b45ba00beed
19395 Author: Matteo Frigo <athena@fftw.org>
19396 Date: Mon Jun 3 18:10:12 2002 -0400
19397
19398 Started implementing planners
19399
19400 commit 41ec7720369ea65ef877dacee5b43c73d36e9dc0
19401 Author: Matteo Frigo <athena@fftw.org>
19402 Date: Mon Jun 3 11:44:18 2002 -0400
19403
19404 Imported libbench from the new benchfft. We will use libbench
19405 for benchmarking and testing.
19406
19407 commit 936272ab0ecd1ecb585f889ef7d8c996a9e9920c
19408 Author: Matteo Frigo <athena@fftw.org>
19409 Date: Mon Jun 3 09:18:46 2002 -0400
19410
19411 Removed useless rand.c
19412
19413 commit c0d9815658256675268110505f21e80b6a850e2c
19414 Author: Matteo Frigo <athena@fftw.org>
19415 Date: Mon Jun 3 08:09:05 2002 -0400
19416
19417 Added timer
19418
19419 commit 1135ab2472586a6ddfd23571aa9724686470238c
19420 Author: Matteo Frigo <athena@fftw.org>
19421 Date: Sun Jun 2 21:03:51 2002 -0400
19422
19423 Split codelets into standard and inplace
19424
19425 commit 8394a2d62bb726c0af14d1ca1bf721d538bbb6ce
19426 Author: Matteo Frigo <athena@fftw.org>
19427 Date: Sun Jun 2 19:49:03 2002 -0400
19428
19429 Many many changes
19430
19431 commit 069ab6b1a318b8d31556dafc6b07953becc026ab
19432 Author: Matteo Frigo <athena@fftw.org>
19433 Date: Sun Jun 2 15:00:11 2002 -0400
19434
19435 Fixed anachronism
19436
19437 commit 9a85d188479075e3f6d1de0d33c35008578e5b97
19438 Author: Matteo Frigo <athena@fftw.org>
19439 Date: Sun Jun 2 14:42:32 2002 -0400
19440
19441 Initial revision