fft_serial


fft_serial, a Fortran90 code which computes a Fast Fourier Transform, and is intended as a starting point for developing a parallel version.

On an Apple PowerPC G5 with two processors, the following results were observed:
NTimeMegaFLOPS
20.1092E-059.161
40.2270E-0517.62
80.3381E-0535.49
160.4817E-0566.43
320.8672E-0592.25
640.1849E-04103.8
1280.3628E-04123.5
2560.8159E-04125.5
5120.1651E-03139.6
10240.3702E-03138.3
20480.7618E-03147.9
40960.1704E-02144.3
81920.3487E-02152.7
163840.8183E-02140.2
327680.1712E-01143.6
655360.4002E-01131.0
1310720.8538E-01130.5
2621440.1901124.1
5242880.391127.3
10485760.8493123.5

Licensing:

The computer code and data files described and made available on this web page are distributed under the MIT license.

Languages:

fft_serial is available in a C version and a C++ version and a Fortran90 version and a MATLAB version and an Octave version.

Related Data and codes:

fft_serial_test

fft_openmp, a Fortran90 code which computes a Fast Fourier Transform using OpenMP.

fftpack5, a Fortran90 code which implements the Fast Fourier Transform by Paul Swarztrauber and Dick Valent;

fftpack51, a Fortran90 code which implements the Fast Fourier Transform by Paul Swarztrauber and Dick Valent;

fftw_test, Fortran90 codes which illustrate the use of the FFTW3 code for Fast Fourier Transforms, by Matteo Frigo and Steven Johnson.

fire_serial, a Fortran90 code which simulates a forest fire over a rectangular array of trees, starting at a single random location. It is intended as a starting point for the development of a parallel version.

heated_plate, a Fortran90 code which solves the steady state heat equation in a 2D rectangular region, and is intended as a starting point for implementing an OpenMP parallel version.

md, a Fortran90 code which carries out a molecular dynamics simulation, and is intended as a starting point for developing a parallel version using OpenMP.

mxm_serial, a Fortran90 code which sets up a matrix multiplication problem A=B*C, intended as a starting point for implementing a parallel version.

openmp_test, a Fortran90 code which illustrates the use of the OpenMP application code interface for carrying out parallel computations in a shared memory environment.

poisson_serial, a Fortran90 code which computes an approximate solution to the Poisson equation in a rectangle, and is intended as the starting point for the creation of a parallel version.

prime_serial, a Fortran90 code which counts the primes between 1 and N, intended as a starting point for the creation of a parallel version.

quad_serial, a Fortran90 code which approximates an integral using a quadrature rule, and is intended as a starting point for parallelization exercises.

search_serial, a Fortran90 code which searches the integers from A to B for a value J such that F(J) = C. this version of the code is intended as a starting point for a parallel approach.

sftpack, a Fortran90 code which implements the "slow" Fourier transform, intended as a teaching tool and comparison with the fast Fourier transform.

sine_transform, a Fortran90 code which demonstrates some simple properties of the discrete sine transform.

subset_sum_serial, a Fortran90 code which seeks solutions of the subset sum problem, in which it is desired to find a subset of a set of integers which has a given sum; this version of the code is intended as a starting point for a parallel approach.

Reference:

  1. Wesley Petersen, Peter Arbenz,
    Introduction to Parallel Computing - A practical guide with examples in C,
    Oxford University Press,
    ISBN: 0-19-851576-6,
    LC: QA76.58.P47.
  2. Rohit Chandra, Leonardo Dagum, Dave Kohr, Dror Maydan, Jeff McDonald, Ramesh Menon,
    Parallel codeming in OpenMP,
    Morgan Kaufmann, 2001,
    ISBN: 1-55860-671-8,
    LC: QA76.642.P32.
  3. Barbara Chapman, Gabriele Jost, Ruud vanderPas, David Kuck,
    Using OpenMP: Portable Shared Memory Parallel Processing,
    MIT Press, 2007,
    ISBN13: 978-0262533027,
    LC: QA76.642.C49.

Source Code:


Last revised on 15 April 2020.