annotate src/fftw-3.3.5/doc/f77_wisdom.f @ 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 c Copyright (c) 2003, 2007-14 Matteo Frigo
cannam@127 2 c Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology
cannam@127 3 c
cannam@127 4 c This program is free software; you can redistribute it and/or modify
cannam@127 5 c it under the terms of the GNU General Public License as published by
cannam@127 6 c the Free Software Foundation; either version 2 of the License, or
cannam@127 7 c (at your option) any later version.
cannam@127 8 c
cannam@127 9 c This program is distributed in the hope that it will be useful,
cannam@127 10 c but WITHOUT ANY WARRANTY; without even the implied warranty of
cannam@127 11 c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cannam@127 12 c GNU General Public License for more details.
cannam@127 13 c
cannam@127 14 c You should have received a copy of the GNU General Public License
cannam@127 15 c along with this program; if not, write to the Free Software
cannam@127 16 c Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cannam@127 17 c
cannam@127 18 cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
cannam@127 19 c
cannam@127 20 c This is an example implementation of Fortran wisdom export/import
cannam@127 21 c to/from a Fortran unit (file), exploiting the generic
cannam@127 22 c dfftw_export_wisdom/dfftw_import_wisdom functions.
cannam@127 23 c
cannam@127 24 c We cannot compile this file into the FFTW library itself, lest all
cannam@127 25 c FFTW-calling programs be required to link to the Fortran I/O
cannam@127 26 c libraries.
cannam@127 27 c
cannam@127 28 cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc
cannam@127 29
cannam@127 30 c Strictly speaking, the '$' format specifier, which allows us to
cannam@127 31 c write a character without a trailing newline, is not standard F77.
cannam@127 32 c However, it seems to be a nearly universal extension.
cannam@127 33 subroutine write_char(c, iunit)
cannam@127 34 character c
cannam@127 35 integer iunit
cannam@127 36 write(iunit,321) c
cannam@127 37 321 format(a,$)
cannam@127 38 end
cannam@127 39
cannam@127 40 subroutine export_wisdom_to_file(iunit)
cannam@127 41 integer iunit
cannam@127 42 external write_char
cannam@127 43 call dfftw_export_wisdom(write_char, iunit)
cannam@127 44 end
cannam@127 45
cannam@127 46 c Fortran 77 does not have any portable way to read an arbitrary
cannam@127 47 c file one character at a time. The best alternative seems to be to
cannam@127 48 c read a whole line into a buffer, since for fftw-exported wisdom we
cannam@127 49 c can bound the line length. (If the file contains longer lines,
cannam@127 50 c then the lines will be truncated and the wisdom import should
cannam@127 51 c simply fail.) Ugh.
cannam@127 52 subroutine read_char(ic, iunit)
cannam@127 53 integer ic
cannam@127 54 integer iunit
cannam@127 55 character*256 buf
cannam@127 56 save buf
cannam@127 57 integer ibuf
cannam@127 58 data ibuf/257/
cannam@127 59 save ibuf
cannam@127 60 if (ibuf .lt. 257) then
cannam@127 61 ic = ichar(buf(ibuf:ibuf))
cannam@127 62 ibuf = ibuf + 1
cannam@127 63 return
cannam@127 64 endif
cannam@127 65 read(iunit,123,end=666) buf
cannam@127 66 ic = ichar(buf(1:1))
cannam@127 67 ibuf = 2
cannam@127 68 return
cannam@127 69 666 ic = -1
cannam@127 70 ibuf = 257
cannam@127 71 123 format(a256)
cannam@127 72 end
cannam@127 73
cannam@127 74 subroutine import_wisdom_from_file(isuccess, iunit)
cannam@127 75 integer isuccess
cannam@127 76 integer iunit
cannam@127 77 external read_char
cannam@127 78 call dfftw_import_wisdom(isuccess, read_char, iunit)
cannam@127 79 end