annotate src/fftw-3.3.5/tests/README @ 169:223a55898ab9 tip default

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