annotate Lib/fftw-3.2.1/tests/README @ 4:345acbd06029

Vectorised most things to make lifer easier. Still no debug version though. Weird.
author Geogaddi\David <d.m.ronan@qmul.ac.uk>
date Fri, 10 Jul 2015 03:04:11 +0100
parents 25bf17994ef1
children
rev   line source
d@0 1 This directory contains a benchmarking and testing program
d@0 2 for fftw3.
d@0 3
d@0 4 The `bench' program has a zillion options, because we use it for
d@0 5 benchmarking other FFT libraries as well. This file only documents
d@0 6 the basic usage of bench.
d@0 7
d@0 8 Usage: bench <commands>
d@0 9
d@0 10 where each command is as follows:
d@0 11
d@0 12 -s <problem>
d@0 13 --speed <problem>
d@0 14
d@0 15 Benchmarks the speed of <problem>.
d@0 16
d@0 17 The syntax for problems is [i|o][r|c][f|b]<size>, where
d@0 18
d@0 19 i/o means in-place or out-of-place. Out of place is the default.
d@0 20 r/c means real or complex transform. Complex is the default.
d@0 21 f/b means forward or backward transform. Forward is the default.
d@0 22 <size> is an arbitrary multidimensional sequence of integers
d@0 23 separated by the character 'x'.
d@0 24
d@0 25 (The syntax for problems is actually richer, but we do not document
d@0 26 it here. See the man page for fftw-wisdom for more information.)
d@0 27
d@0 28 Example:
d@0 29
d@0 30 ib256 : in-place backward complex transform of size 256
d@0 31 32x64 : out-of-place forward complex 2D transform of 32 rows
d@0 32 and 64 columns.
d@0 33
d@0 34 -y <problem>
d@0 35 --verify <problem>
d@0 36
d@0 37 Verify that FFTW is computing the correct answer.
d@0 38
d@0 39 The program does not output anything unless an error occurs or
d@0 40 verbosity is at least one.
d@0 41
d@0 42 -v<n>
d@0 43
d@0 44 Set verbosity to <n>, or 1 if <n> is omitted. -v2 will output
d@0 45 the created plans with fftw_print_plan.
d@0 46
d@0 47 -oestimate
d@0 48 -opatient
d@0 49 -oexhaustive
d@0 50
d@0 51 Plan with FFTW_ESTIMATE, FFTW_PATIENT, or FFTW_EXHAUSTIVE, respectively.
d@0 52 The default is FFTW_MEASURE.
d@0 53
d@0 54 If you benchmark FFTW, please use -opatient.
d@0 55
d@0 56 -onthreads=N
d@0 57
d@0 58 Use N threads, if FFTW was compiled with --enable-threads. N
d@0 59 must be a positive integer; the default is N=1.
d@0 60
d@0 61 -onosimd
d@0 62
d@0 63 Disable SIMD instructions (e.g. SSE or SSE2).
d@0 64
d@0 65 -ounaligned
d@0 66
d@0 67 Plan with the FFTW_UNALIGNED flag.
d@0 68
d@0 69 -owisdom
d@0 70
d@0 71 On startup, read wisdom from a file wis.dat in the current directory
d@0 72 (if it exists). On completion, write accumulated wisdom to wis.dat
d@0 73 (overwriting any existing file of that name).