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