In computer science, the prefix sum, cumulative sum, inclusive scan, or simply scan of a sequence of numbers is a second sequence of numbers, the sums of prefixes (running totals) of the input sequence:
...
For instance, the prefix sums of the natural numbers are the triangular numbers:
input numbers | 1 | 2 | 3 | 4 | 5 | 6 | ... | |
---|---|---|---|---|---|---|---|---|
prefix sums | 1 | 3 | 6 | 10 | 15 | 21 | ... |
Prefix sums are trivial to compute in sequential models of computation, by using the formula to compute each output value in sequence order. However, despite their ease of computation, prefix sums are a useful primitive in certain algorithms such as counting sort,[1] and they form the basis of the scan higher-order function in functional programming languages. Prefix sums have also been much studied in parallel algorithms, both as a test problem to be solved and as a useful primitive to be used as a subroutine in other parallel algorithms.[2]
Abstractly, a prefix sum requires only a binary associative operator ⊕, making it useful for many applications from calculating well-separated pair decompositions of points to string processing.[3] [4]
Mathematically, the operation of taking prefix sums can be generalized from finite to infinite sequences; in that context, a prefix sum is known as a partial sum of a series. Prefix summation or partial summation form linear operators on the vector spaces of finite or infinite sequences; their inverses are finite difference operators.
In functional programming terms, the prefix sum may be generalized to any binary operation (not just the addition operation); the higher order function resulting from this generalization is called a scan, and it is closely related to the fold operation. Both the scan and the fold operations apply the given binary operation to the same sequence of values, but differ in that the scan returns the whole sequence of results from the binary operation, whereas the fold returns only the final result. For instance, the sequence of factorial numbers may be generated by a scan of the natural numbers using multiplication instead of addition:
input numbers | 1 | 2 | 3 | 4 | 5 | 6 | ... | |
---|---|---|---|---|---|---|---|---|
prefix products | 1 | 2 | 6 | 24 | 120 | 720 | ... |
Programming language and library implementations of scan may be either inclusive or exclusive. An inclusive scan includes input when computing output (i.e., ) while an exclusive scan does not (i.e., ). In the latter case, implementations either leave undefined or accept a separate "" value with which to seed the scan. Either type of scan can be transformed into the other: an inclusive scan can be transformed into an exclusive scan by shifting the array produced by the scan right by one element and inserting the identity value at the left of the array. Conversely, an exclusive scan be transformed into an inclusive scan by shifting the array produced by the scan left and inserting the sum of the last element of the scan and the last element of the input array at the right of the array.[5]
The following table lists examples of the inclusive and exclusive scan functions provided by a few programming languages and libraries:
Language/library | Inclusive scan | Exclusive scan | |
---|---|---|---|
APL | +\ | ||
C++ | std::inclusive_scan | std::exclusive_scan | |
Haskell | scanl1 | scanl | |
HPF | sum_prefix | sum_prefix(..., exclusive=.true.) | |
Kotlin | scan | ||
MPI | MPI_Scan | MPI_Exscan | |
Rust | scan | ||
Scala | scan |
The directive-based OpenMP parallel programming model supports both inclusive and exclusive scan support beginning with Version 5.0.
There are two key algorithms for computing a prefix sum in parallel. The first offers a shorter span and more parallelism but is not work-efficient. The second is work-efficient but requires double the span and offers less parallelism. These are presented in turn below.
Hillis and Steele present thefollowing parallel prefix sum algorithm:[6] for i <- 0 to floor(log2(n)) do for j <- 0 to n - 1 do in parallel if j < 2i then x <- x else x <- x + x
In the above, the notation
i | |
x | |
j |
With a single processor this algorithm would run in time. However if the machine has at least processors to perform the inner loop in parallel, the algorithm as a whole runs in time, the number of iterations of the outer loop.
A work-efficient parallel prefix sum can be computed by the following steps.
If the input sequence has steps, then the recursion continues to a depth of, which is also the bound on the parallel running time of this algorithm. The number of steps of the algorithm is, and it can be implemented on a parallel random access machine with processors without any asymptotic slowdown by assigning multiple indices to each processor in rounds of the algorithm for which there are more elements than processors.
Each of the preceding algorithms runs in time. However, the former takes exactly steps, while the latter requires steps. For the 16-input examples illustrated, Algorithm 1 is 12-way parallel (49 units of work divided by a span of 4) while Algorithm 2 is only 4-way parallel (26 units of work divided by a span of 6). However, Algorithm 2 is work-efficient - it performs only a constant factor (2) of the amount of work required by the sequential algorithm - while Algorithm 1 is work-inefficient - it performs asymptotically more work (a logarithmic factor) than is required sequentially. Consequently, Algorithm 1 is likely to perform better when abundant parallelism is available, but Algorithm 2 is likely to perform better when parallelism is more limited.
Parallel algorithms for prefix sums can often be generalized to other scan operations on associative binary operations, and they can also be computed efficiently on modern parallel hardware such as a GPU.[7] The idea of building in hardware a functional unit dedicated to computing multi-parameter prefix-sum was patented by Uzi Vishkin.[8]
Many parallel implementations follow a two pass procedure where partial prefix sums are calculated in the first pass on each processing unit; the prefix sum of these partial sums is then calculated and broadcast back to the processing units for a second pass using the now known prefix as the initial value. Asymptotically this method takes approximately two read operations and one write operation per item.
An implementation of a parallel prefix sum algorithm, like other parallel algorithms, has to take the parallelization architecture of the platform into account. More specifically, multiple algorithms exist which are adapted for platforms working on shared memory as well as algorithms which are well suited for platforms using distributed memory, relying on message passing as the only form of interprocess communication.
The following algorithm assumes a shared memory machine model; all processing elements (PEs) have access to the same memory. A version of this algorithm is implemented in the Multi-Core Standard Template Library (MCSTL),[9] [10] a parallel implementation of the C++ standard template library which provides adapted versions for parallel computing of various algorithms.
In order to concurrently calculate the prefix sum over
n
p
p+1
n | |
p+1 |
p+1
n
p+1
p
In a first sweep, each PE calculates a local prefix sum for its block. The last block does not need to be calculated, since these prefix sums are only calculated as offsets to the prefix sums of succeeding blocks and the last block is by definition not succeeded.
The
p
p
p
A second sweep is performed. This time the first block does not have to be processed, since it does not need to account for the offset of a preceding block. However, in this sweep the last block is included instead and the prefix sums for each block are calculated taking the prefix sum block offsets calculated in the previous sweep into account.
Improvement: In case that the number of blocks are too much that makes the serial step time-consuming by deploying a single processor, the Hillis and Steele algorithm can be used to accelerate the second phase.
The Hypercube Prefix Sum Algorithm[11] is well adapted for distributed memory platforms and works with the exchange of messages between the processing elements. It assumes to have
p=2d
d
Throughout the algorithm, each PE is seen as a corner in a hypothetical hyper cube with knowledge of the total prefix sum
\sigma
x
\sigma
x
\sigma
\sigma
\sigma
x
x
In a
d
2d
d
2d
d
\sigma
d=log2p
x = m; // Invariant: The prefix sum up to this PE in the current sub cubeσ = m; // Invariant: The prefix sum of all elements in the current sub cube
for (k=0; k <= d-1; k++)
The Pipelined Binary Tree Algorithm[12] is another algorithm for distributed memory platforms which is specifically well suited for large message sizes.
Like the hypercube algorithm, it assumes a special communication structure. The processing elements (PEs) are hypothetically arranged in a binary tree (e.g. a Fibonacci Tree) with infix numeration according to their index within the PEs. Communication on such a tree always occurs between parent and child nodes.
The infix numeration ensures that for any given PEj, the indices of all nodes reachable by its left subtree
[l...j-1]
j
[j+1...r]
j
⊕ [l..j-1]
⊕ [l..j]
⊕ [j+1..r]
h>j
⊕ [0..j]
⊕ [0..j..r]
⊕ [0..l-1]
Note the distinction between subtree-local and total prefix sums. The points two, three and four can lead to believe they would form a circular dependency, but this is not the case. Lower level PEs might require the total prefix sum of higher level PEs to calculate their total prefix sum, but higher level PEs only require subtree local prefix sums to calculate their total prefix sum. The root node as highest level node only requires the local prefix sum of its left subtree to calculate its own prefix sum. Each PE on the path from PE0 to the root PE only requires the local prefix sum of its left subtree to calculate its own prefix sum, whereas every node on the path from PEp-1 (last PE) to the PEroot requires the total prefix sum of its parent to calculate its own total prefix sum.
This leads to a two-phase algorithm:
Upward Phase
Propagate the subtree local prefix sum
⊕ [l..j..r]
Downward phase
Propagate the exclusive (exclusive PEj as well as the PEs in its left subtree) total prefix sum
⊕ [0..l-1]
⊕ [0..j]
Note that the algorithm is run in parallel at each PE and the PEs will block upon receive until their children/parents provide them with packets.
x = m @ this
// Upward phase - Calculate subtree local prefix sumsfor j=0 to k-1: // Pipelining: For each packet of a message if hasLeftChild: blocking receive m[j] @ left // This replaces the local m[j] with the received m[j] // Aggregate inclusive local prefix sum from lower index PEs x[j] = m[j] ⨁ x[j]
if hasRightChild: blocking receive m[j] @ right // We do not aggregate m[j] into the local prefix sum, since the right children are higher index PEs send x[j] ⨁ m[j] to parent else: send x[j] to parent
// Downward phasefor j=0 to k-1: m[j] @ this = 0
if hasParent: blocking receive m[j] @ parent // For a left child m[j] is the parents exclusive prefix sum, for a right child the inclusive prefix sum x[j] = m[j] ⨁ x[j] send m[j] to left // The total prefix sum of all PE's smaller than this or any PE in the left subtree send x[j] to right // The total prefix sum of all PE's smaller or equal than this PE
If the message of length can be divided into packets and the operator ⨁ can be used on each of the corresponding message packets separately, pipelining is possible.[12]
If the algorithm is used without pipelining, there are always only two levels (the sending PEs and the receiving PEs) of the binary tree at work while all other PEs are waiting. If there are processing elements and a balanced binary tree is used, the tree has
log2p
PE0
PEroot
log2p-1
log2p-1
Tstart
Tbyte
(2log2p-2)(Tstart+n ⋅ Tbyte)
Upon division into k packets, each of size
\tfrac{n}{k}
(log2p-1)\left (Tstart+
n | |
k |
⋅ Tbyte\right)
PEroot
k>log2p
2log2p-1+3(k-1)
(4 ⋅ log2p-2+6(k-1))\left(Tstart+
n | |
k |
⋅ Tbyte\right)
The algorithm can further be optimised by making use of full-duplex or telephone model communication and overlapping the upward and the downward phase.[12]
When a data set may be updated dynamically, it may be stored in a Fenwick tree data structure. This structure allows both the lookup of any individual prefix sum value and the modification of any array value in logarithmic time per operation. However, an earlier 1982 paper presents a data structure called Partial Sums Tree (see Section 5.1) that appears to overlap Fenwick trees; in 1982 the term prefix-sum was not yet as common as it is today.
For higher-dimensional arrays, the summed area table provides a data structure based on prefix sums for computing sums of arbitrary rectangular subarrays. This can be a helpful primitive in image convolution operations.[13]
Counting sort is an integer sorting algorithm that uses the prefix sum of a histogram of key frequencies to calculate the position of each key in the sorted output array. It runs in linear time for integer keys that are smaller than the number of items, and is frequently used as part of radix sort, a fast algorithm for sorting integers that are less restricted in magnitude.[1]
List ranking, the problem of transforming a linked list into an array that represents the same sequence of items, can be viewed as computing a prefix sum on the sequence 1, 1, 1, ... and then mapping each item to the array position given by its prefix sum value; by combining list ranking, prefix sums, and Euler tours, many important problems on trees may be solved by efficient parallel algorithms.[14]
An early application of parallel prefix sum algorithms was in the design of binary adders, Boolean circuits that can add two -bit binary numbers. In this application, the sequence of carry bits of the addition can be represented as a scan operationon the sequence of pairs of input bits, using the majority function to combine the previous carry with these two bits. Each bit of the output number can then be found as the exclusive or of two input bits with the corresponding carry bit. By using a circuit that performs the operations of the parallel prefix sum algorithm, it is possible to design an adder that uses logic gates and time steps.[15] [16] [17]
In the parallel random access machine model of computing, prefix sums can be used to simulate parallel algorithms that assume the ability for multiple processors to access the same memory cell at the same time, on parallel machines that forbid simultaneous access. By means of a sorting network, a set of parallel memory access requests can be ordered into a sequence such that accesses to the same cell are contiguous within the sequence; scan operations can then be used to determine which of the accesses succeed in writing to their requested cells, and to distribute the results of memory read operations to multiple processors that request the same result.[18]
In Guy Blelloch's Ph.D. thesis,[19] parallel prefix operations form part of the formalization of the data parallelism model provided by machines such as the Connection Machine. The Connection Machine CM-1 and CM-2 provided a hypercubic network on which the Algorithm 1 above could be implemented, whereas the CM-5 provided a dedicated network to implement Algorithm 2.[20]
In the construction of Gray codes, sequences of binary values with the property that consecutive sequence values differ from each other in a single bit position, a number can be converted into the Gray code value at position of the sequence simply by taking the exclusive or of and (the number formed by shifting right by a single bit position). The reverse operation, decoding a Gray-coded value into a binary number, is more complicated, but can be expressed as the prefix sum of the bits of , where each summation operation within the prefix sum is performed modulo two. A prefix sum of this type may be performed efficiently using the bitwise Boolean operations available on modern computers, by computing the exclusive or of with each of the numbers formed by shifting to the left by a number of bits that is a power of two.[21]
Parallel prefix (using multiplication as the underlying associative operation) can also be used to build fast algorithms for parallel polynomial interpolation. In particular, it can be used to compute the divided difference coefficients of the Newton form of the interpolation polynomial.[22] This prefix based approach can also be used to obtain the generalized divided differences for (confluent) Hermite interpolationas well as for parallel algorithms for Vandermonde systems.
Prefix sum is used for load balancing as a low-cost algorithm to distribute the work between multiple processors, where the overriding goal is achieving an equal amount of work on each processor. The algorithms uses an array of weights representing the amount of work required for each item. After the prefix sum is calculated, the work item is sent for processing to the processor unit with the number
[
prefixSumValuei | |
{totalWork |
/{numberOfProcessors}}]