cannam@167: c Copyright (c) 2003, 2007-14 Matteo Frigo cannam@167: c Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology cannam@167: c cannam@167: c This program is free software; you can redistribute it and/or modify cannam@167: c it under the terms of the GNU General Public License as published by cannam@167: c the Free Software Foundation; either version 2 of the License, or cannam@167: c (at your option) any later version. cannam@167: c cannam@167: c This program is distributed in the hope that it will be useful, cannam@167: c but WITHOUT ANY WARRANTY; without even the implied warranty of cannam@167: c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the cannam@167: c GNU General Public License for more details. cannam@167: c cannam@167: c You should have received a copy of the GNU General Public License cannam@167: c along with this program; if not, write to the Free Software cannam@167: c Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA cannam@167: c cannam@167: cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc cannam@167: c cannam@167: c This is an example implementation of Fortran wisdom export/import cannam@167: c to/from a Fortran unit (file), exploiting the generic cannam@167: c dfftw_export_wisdom/dfftw_import_wisdom functions. cannam@167: c cannam@167: c We cannot compile this file into the FFTW library itself, lest all cannam@167: c FFTW-calling programs be required to link to the Fortran I/O cannam@167: c libraries. cannam@167: c cannam@167: cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc cannam@167: cannam@167: c Strictly speaking, the '$' format specifier, which allows us to cannam@167: c write a character without a trailing newline, is not standard F77. cannam@167: c However, it seems to be a nearly universal extension. cannam@167: subroutine write_char(c, iunit) cannam@167: character c cannam@167: integer iunit cannam@167: write(iunit,321) c cannam@167: 321 format(a,$) cannam@167: end cannam@167: cannam@167: subroutine export_wisdom_to_file(iunit) cannam@167: integer iunit cannam@167: external write_char cannam@167: call dfftw_export_wisdom(write_char, iunit) cannam@167: end cannam@167: cannam@167: c Fortran 77 does not have any portable way to read an arbitrary cannam@167: c file one character at a time. The best alternative seems to be to cannam@167: c read a whole line into a buffer, since for fftw-exported wisdom we cannam@167: c can bound the line length. (If the file contains longer lines, cannam@167: c then the lines will be truncated and the wisdom import should cannam@167: c simply fail.) Ugh. cannam@167: subroutine read_char(ic, iunit) cannam@167: integer ic cannam@167: integer iunit cannam@167: character*256 buf cannam@167: save buf cannam@167: integer ibuf cannam@167: data ibuf/257/ cannam@167: save ibuf cannam@167: if (ibuf .lt. 257) then cannam@167: ic = ichar(buf(ibuf:ibuf)) cannam@167: ibuf = ibuf + 1 cannam@167: return cannam@167: endif cannam@167: read(iunit,123,end=666) buf cannam@167: ic = ichar(buf(1:1)) cannam@167: ibuf = 2 cannam@167: return cannam@167: 666 ic = -1 cannam@167: ibuf = 257 cannam@167: 123 format(a256) cannam@167: end cannam@167: cannam@167: subroutine import_wisdom_from_file(isuccess, iunit) cannam@167: integer isuccess cannam@167: integer iunit cannam@167: external read_char cannam@167: call dfftw_import_wisdom(isuccess, read_char, iunit) cannam@167: end