Split-radix FFT Algorithm
   HOME

TheInfoList



OR:

The split-radix FFT is a
fast Fourier transform A fast Fourier transform (FFT) is an algorithm that computes the discrete Fourier transform (DFT) of a sequence, or its inverse (IDFT). Fourier analysis converts a signal from its original domain (often time or space) to a representation in th ...
(FFT) algorithm for computing the
discrete Fourier transform In mathematics, the discrete Fourier transform (DFT) converts a finite sequence of equally-spaced samples of a function into a same-length sequence of equally-spaced samples of the discrete-time Fourier transform (DTFT), which is a complex- ...
(DFT), and was first described in an initially little-appreciated paper by R. Yavne (1968) and subsequently rediscovered simultaneously by various authors in 1984. (The name "split radix" was coined by two of these reinventors, P. Duhamel and H. Hollmann.) In particular, split radix is a variant of the
Cooley–Tukey FFT algorithm The Cooley–Tukey algorithm, named after J. W. Cooley and John Tukey, is the most common fast Fourier transform (FFT) algorithm. It re-expresses the discrete Fourier transform (DFT) of an arbitrary composite size N = N_1N_2 in terms of ''N''1 ...
that uses a blend of radices 2 and 4: it
recursively Recursion (adjective: ''recursive'') occurs when a thing is defined in terms of itself or of its type. Recursion is used in a variety of disciplines ranging from linguistics to logic. The most common application of recursion is in mathematics ...
expresses a DFT of length ''N'' in terms of one smaller DFT of length ''N''/2 and two smaller DFTs of length ''N''/4. The split-radix FFT, along with its variations, long had the distinction of achieving the lowest published arithmetic operation count (total exact number of required
real Real may refer to: Currencies * Brazilian real (R$) * Central American Republic real * Mexican real * Portuguese real * Spanish real * Spanish colonial real Music Albums * ''Real'' (L'Arc-en-Ciel album) (2000) * ''Real'' (Bright album) (2010) ...
additions and multiplications) to compute a DFT of power-of-two sizes ''N''. The arithmetic count of the original split-radix algorithm was improved upon in 2004 (with the initial gains made in unpublished work by J. Van Buskirk via hand optimization for ''N''=6

, but it turns out that one can still achieve the new lowest count by a modification of split radix (Johnson and Frigo, 2007). Although the number of arithmetic operations is not the sole factor (or even necessarily the dominant factor) in determining the time required to compute a DFT on a
computer A computer is a machine that can be programmed to Execution (computing), carry out sequences of arithmetic or logical operations (computation) automatically. Modern digital electronic computers can perform generic sets of operations known as C ...
, the question of the minimum possible count is of longstanding theoretical interest. (No tight lower bound on the operation count has currently been proven.) The split-radix algorithm can only be applied when ''N'' is a multiple of 4, but since it breaks a DFT into smaller DFTs it can be combined with any other FFT algorithm as desired.


Split-radix decomposition

Recall that the DFT is defined by the formula: : X_k = \sum_^ x_n \omega_N^ where k is an integer ranging from 0 to N-1 and \omega_N denotes the primitive
root of unity In mathematics, a root of unity, occasionally called a Abraham de Moivre, de Moivre number, is any complex number that yields 1 when exponentiation, raised to some positive integer power . Roots of unity are used in many branches of mathematic ...
: :\omega_N = e^, and thus: \omega_N^N = 1. The split-radix algorithm works by expressing this summation in terms of three smaller summations. (Here, we give the "decimation in time" version of the split-radix FFT; the dual decimation in frequency version is essentially just the reverse of these steps.) First, a summation over the
even Even may refer to: General * Even (given name), a Norwegian male personal name * Even (surname) * Even (people), an ethnic group from Siberia and Russian Far East ** Even language, a language spoken by the Evens * Odd and Even, a solitaire game w ...
indices x_. Second, a summation over the odd indices broken into two pieces: x_ and x_, according to whether the index is 1 or 3 modulo 4. Here, n_m denotes an index that runs from 0 to N/m-1. The resulting summations look like: : X_k = \sum_^ x_ \omega_^ + \omega_N^k \sum_^ x_ \omega_^ + \omega_N^ \sum_^ x_ \omega_^ where we have used the fact that \omega_N^ = \omega_^. These three sums correspond to ''portions'' of radix-2 (size ''N''/2) and radix-4 (size ''N''/4) Cooley–Tukey steps, respectively. (The underlying idea is that the even-index subtransform of radix-2 has no multiplicative factor in front of it, so it should be left as-is, while the odd-index subtransform of radix-2 benefits by combining a second recursive subdivision.) These smaller summations are now exactly DFTs of length ''N''/2 and ''N''/4, which can be performed recursively and then recombined. More specifically, let U_k denote the result of the DFT of length ''N''/2 (for k = 0,\ldots,N/2-1), and let Z_k and Z'_k denote the results of the DFTs of length ''N''/4 (for k = 0,\ldots,N/4-1). Then the output X_k is simply: :X_k = U_k + \omega_N^k Z_k + \omega_N^ Z'_k. This, however, performs unnecessary calculations, since k \geq N/4 turn out to share many calculations with k < N/4. In particular, if we add ''N''/4 to ''k'', the size-''N''/4 DFTs are not changed (because they are periodic in ''N''/4), while the size-''N''/2 DFT is unchanged if we add ''N''/2 to ''k''. So, the only things that change are the \omega_N^k and \omega_N^ terms, known as
twiddle factor A twiddle factor, in fast Fourier transform (FFT) algorithms, is any of the trigonometric constant coefficients that are multiplied by the data in the course of the algorithm. This term was apparently coined by Gentleman & Sande in 1966, and has ...
s. Here, we use the identities: :\omega_N^ = -i \omega_N^k :\omega_N^ = i \omega_N^ to finally arrive at: :X_k = U_k + \left( \omega_N^k Z_k + \omega_N^ Z'_k \right), :X_ = U_k - \left( \omega_N^k Z_k + \omega_N^ Z'_k \right), :X_ = U_ - i \left( \omega_N^k Z_k - \omega_N^ Z'_k \right), :X_ = U_ + i \left( \omega_N^k Z_k - \omega_N^ Z'_k \right), which gives all of the outputs X_k if we let k range from 0 to N/4-1 in the above four expressions. Notice that these expressions are arranged so that we need to combine the various DFT outputs by pairs of additions and subtractions, which are known as
butterflies Butterflies are insects in the macrolepidopteran clade Rhopalocera from the Order (biology), order Lepidoptera, which also includes moths. Adult butterflies have large, often brightly coloured wings, and conspicuous, fluttering flight. The ...
. In order to obtain the minimal operation count for this algorithm, one needs to take into account special cases for k = 0 (where the twiddle factors are unity) and for k = N/8 (where the twiddle factors are (1 \pm i)/\sqrt{2} and can be multiplied more quickly); see, e.g. Sorensen ''et al.'' (1986). Multiplications by \pm 1 and \pm i are ordinarily counted as free (all negations can be absorbed by converting additions into subtractions or vice versa). This decomposition is performed recursively when ''N'' is a power of two. The base cases of the recursion are ''N''=1, where the DFT is just a copy X_0 = x_0, and ''N''=2, where the DFT is an addition X_0 = x_0 + x_1 and a subtraction X_1 = x_0 - x_1. These considerations result in a count: 4 N \log_2 N - 6N + 8 real additions and multiplications, for ''N''>1 a power of two. This count assumes that, for odd powers of 2, the leftover factor of 2 (after all the split-radix steps, which divide ''N'' by 4) is handled directly by the DFT definition (4 real additions and multiplications), or equivalently by a radix-2 Cooley–Tukey FFT step.


References

* R. Yavne, "An economical method for calculating the discrete Fourier transform," in ''Proc. AFIPS Fall Joint Computer Conf.'' 33, 115–125 (1968). * P. Duhamel and H. Hollmann, "Split-radix FFT algorithm," ''Electron. Lett.'' 20 (1), 14–16 (1984). * M. Vetterli and H. J. Nussbaumer, "Simple FFT and DCT algorithms with reduced number of operations," ''Signal Processing'' 6 (4), 267–278 (1984). * J. B. Martens, "Recursive cyclotomic factorization—a new algorithm for calculating the discrete Fourier transform," ''IEEE Trans. Acoust., Speech, Signal Processing'' 32 (4), 750–761 (1984). * P. Duhamel and M. Vetterli, "Fast Fourier transforms: a tutorial review and a state of the art," ''Signal Processing'' 19, 259–299 (1990). * S. G. Johnson and M. Frigo,
A modified split-radix FFT with fewer arithmetic operations
" ''IEEE Trans. Signal Process.'' 55 (1), 111–119 (2007). * Douglas L. Jones,
Split-radix FFT algorithms
"
Connexions
' web site (Nov. 2, 2006). * H. V. Sorensen, M. T. Heideman, and C. S. Burrus, "On computing the split-radix FFT", ''IEEE Trans. Acoust., Speech, Signal Processing'' 34 (1), 152–156 (1986). FFT algorithms