Because matrix multiplication is such a central operation in many numerical algorithms, much work has been invested in making matrix multiplication algorithms efficient. Applications of matrix multiplication in computational problems are found in many fields including scientific computing and pattern recognition and in seemingly unrelated problems such as counting the paths through a graph. Many different algorithms have been designed for multiplying matrices on different types of hardware, including parallel and distributed systems, where the computational work is spread over multiple processors (perhaps over a network).
Directly applying the mathematical definition of matrix multiplication gives an algorithm that takes time on the order of field operations to multiply two matrices over that field (in big O notation). Better asymptotic bounds on the time required to multiply matrices have been known since the Strassen's algorithm in the 1960s, but the optimal time (that is, the computational complexity of matrix multiplication) remains unknown., the best announced bound on the asymptotic complexity of a matrix multiplication algorithm is time, given by Williams, Xu, Xu, and Zhou. This improves on the bound of time, given by Alman and Williams.[1] However, this algorithm is a galactic algorithm because of the large constants and cannot be realized practically.
The definition of matrix multiplication is that if for an matrix and an matrix, then is an matrix with entries
cij=
m | |
\sum | |
k=1 |
aikbkj.
From this, a simple algorithm can be constructed which loops over the indices from 1 through and from 1 through, computing the above using a nested loop:
This algorithm takes time (in asymptotic notation). A common simplification for the purpose of algorithm analysis is to assume that the inputs are all square matrices of size, in which case the running time is, i.e., cubic in the size of the dimension.
The three loops in iterative matrix multiplication can be arbitrarily swapped with each other without an effect on correctness or asymptotic running time. However, the order can have a considerable impact on practical performance due to the memory access patterns and cache use of the algorithm;[2] which order is best also depends on whether the matrices are stored in row-major order, column-major order, or a mix of both.
In particular, in the idealized case of a fully associative cache consisting of bytes and bytes per cache line (i.e. cache lines), the above algorithm is sub-optimal for and stored in row-major order. When, every iteration of the inner loop (a simultaneous sweep through a row of and a column of) incurs a cache miss when accessing an element of . This means that the algorithm incurs cache misses in the worst case., the speed of memories compared to that of processors is such that the cache misses, rather than the actual calculations, dominate the running time for sizable matrices.[3]
The optimal variant of the iterative algorithm for and in row-major layout is a tiled version, where the matrix is implicitly divided into square tiles of size by :[3] [4]
In the idealized cache model, this algorithm incurs only cache misses; the divisor amounts to several orders of magnitude on modern machines, so that the actual calculations dominate the running time, rather than the cache misses.[3]
An alternative to the iterative algorithm is the divide-and-conquer algorithm for matrix multiplication. This relies on the block partitioning
C=\begin{pmatrix} C11&C12\\ C21&C22\\ \end{pmatrix}, A=\begin{pmatrix} A11&A12\\ A21&A22\\ \end{pmatrix}, B=\begin{pmatrix} B11&B12\\ B21&B22\\ \end{pmatrix},
which works for all square matrices whose dimensions are powers of two, i.e., the shapes are for some . The matrix product is now
\begin{pmatrix} C11&C12\\ C21&C22\\ \end{pmatrix}= \begin{pmatrix} A11&A12\\ A21&A22\\ \end{pmatrix}\begin{pmatrix} B11&B12\\ B21&B22\\ \end{pmatrix}=\begin{pmatrix} A11B11+A12B21&A11B12+A12B22\\ A21B11+A22B21&A21B12+A22B22\\ \end{pmatrix}
which consists of eight multiplications of pairs of submatrices, followed by an addition step. The divide-and-conquer algorithm computes the smaller multiplications recursively, using the scalar multiplication as its base case.
The complexity of this algorithm as a function of is given by the recurrence
T(1)=\Theta(1);
T(n)=8T(n/2)+\Theta(n2),
accounting for the eight recursive calls on matrices of size and to sum the four pairs of resulting matrices element-wise. Application of the master theorem for divide-and-conquer recurrences shows this recursion to have the solution, the same as the iterative algorithm.
A variant of this algorithm that works for matrices of arbitrary shapes and is faster in practice[3] splits matrices in two instead of four submatrices, as follows.[5] Splitting a matrix now means dividing it into two parts of equal size, or as close to equal sizes as possible in the case of odd dimensions.
C=\begin{pmatrix}A1\ A2\end{pmatrix}{B} =\begin{pmatrix}A1B\ A2B\end{pmatrix}
C=A\begin{pmatrix}B1&B2\end{pmatrix} =\begin{pmatrix}AB1&AB2\end{pmatrix}
C=\begin{pmatrix}A1&A2\end{pmatrix}\begin{pmatrix}B1\ B2\end{pmatrix} =A1B1+A2B2
The cache miss rate of recursive matrix multiplication is the same as that of a tiled iterative version, but unlike that algorithm, the recursive algorithm is cache-oblivious:[5] there is no tuning parameter required to get optimal cache performance, and it behaves well in a multiprogramming environment where cache sizes are effectively dynamic due to other processes taking up cache space.[3] (The simple iterative algorithm is cache-oblivious as well, but much slower in practice if the matrix layout is not adapted to the algorithm.)
The number of cache misses incurred by this algorithm, on a machine with lines of ideal cache, each of size bytes, is bounded by
\Theta\left(m+n+p+
mn+np+mp | |
b |
+
mnp | |
b\sqrt{M |
Algorithms exist that provide better running times than the straightforward ones. The first to be discovered was Strassen's algorithm, devised by Volker Strassen in 1969 and often referred to as "fast matrix multiplication". It is based on a way of multiplying two -matrices which requires only 7 multiplications (instead of the usual 8), at the expense of several additional addition and subtraction operations. Applying this recursively gives an algorithm with a multiplicative cost of
O(
log27 | |
n |
) ≈ O(n2.807)
Since Strassen's algorithm is actually used in practical numerical software and computer algebra systems improving on the constants hidden in the big O notation has its merits. A table which compares key aspects of improved version based on recursive multiplication of 2x2-block matrices via 7 block matrix multiplications follows. As usual
n
M
Year | Reference |
|
| total arithmetic operations | total I/O-complexity | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1969 | Strassen[7] | 7 | 18 |
-6n2 |
⋅ M-18n2+3M | |||||||||||||||||||||||||||
1971 | Winograd[8] | 7 | 15 |
-5n2 |
⋅ M-15n2+3M | |||||||||||||||||||||||||||
2017 | Karstadt, Schwartz[9] | 7 | 12 |
-4n2+3n
|
⋅ M-12n2
+5M |
It is known that a Strassen-like algorithm with a 2x2-block matrix step requires at least 7 block matrix multiplications. In 1976 Probert[10] showed that such an algorithm requires at least 15 additions (including subtractions), however a hidden assumption was that the blocks and the 2x2-blockmatrix are represented in the same basis. Karstadt and Schwartz computed in different bases and traded 3 additions for less expensive basis transformations. They also proved that one cannot go below 12 additions per step using different bases. In subsequent work Beniamini et el.[11] applied this base change trick to more general decompositions than 2x2-blockmatrices and improved leading constant for their run times.
It is an open question in theoretical computer science how well Strassen's algorithm can be improved in terms of asymptotic complexity. The matrix multiplication exponent, usually denoted
\omega
n x n
n\omega
\omega
\omega<2.371552
Freivalds' algorithm is a simple Monte Carlo algorithm that, given matrices, and, verifies in time if .
In 2022, DeepMind introduced AlphaTensor, a neural network that used a single-player game analogy to invent thousands of matrix multiplication algorithms, including some previously discovered by humans and some that were not.[12] Operations were restricted to the non-commutative ground field (normal arithmetic) and finite field Z/2Z
The divide-and-conquer algorithm sketched earlier can be parallelized in two ways for shared-memory multiprocessors. These are based on the fact that the eight recursive matrix multiplications in
\begin{pmatrix} A11B11+A12B21&A11B12+A12B22\\ A21B11+A22B21&A21B12+A22B22\\ \end{pmatrix}
can be performed independently of each other, as can the four summations (although the algorithm needs to "join" the multiplications before doing the summations). Exploiting the full parallelism of the problem, one obtains an algorithm that can be expressed in fork–join style pseudocode:
Procedure :
Procedure adds into, element-wise:
Here, fork is a keyword that signal a computation may be run in parallel with the rest of the function call, while join waits for all previously "forked" computations to complete. achieves its goal by pointer manipulation only.
This algorithm has a critical path length of steps, meaning it takes that much time on an ideal machine with an infinite number of processors; therefore, it has a maximum possible speedup of on any real computer. The algorithm isn't practical due to the communication cost inherent in moving data to and from the temporary matrix, but a more practical variant achieves speedup, without using a temporary matrix.[16]
On modern architectures with hierarchical memory, the cost of loading and storing input matrix elements tends to dominate the cost of arithmetic. On a single machine this is the amount of data transferred between RAM and cache, while on a distributed memory multi-node machine it is the amount transferred between nodes; in either case it is called the communication bandwidth. The naïve algorithm using three nested loops uses communication bandwidth.
Cannon's algorithm, also known as the 2D algorithm, is a communication-avoiding algorithm that partitions each input matrix into a block matrix whose elements are submatrices of size by, where is the size of fast memory.[17] The naïve algorithm is then used over the block matrices, computing products of submatrices entirely in fast memory. This reduces communication bandwidth to, which is asymptotically optimal (for algorithms performing computation).[18] [19]
In a distributed setting with processors arranged in a by 2D mesh, one submatrix of the result can be assigned to each processor, and the product can be computed with each processor transmitting words, which is asymptotically optimal assuming that each node stores the minimum elements.[19] This can be improved by the 3D algorithm, which arranges the processors in a 3D cube mesh, assigning every product of two input submatrices to a single processor. The result submatrices are then generated by performing a reduction over each row.[20] This algorithm transmits words per processor, which is asymptotically optimal.[19] However, this requires replicating each input matrix element times, and so requires a factor of more memory than is needed to store the inputs. This algorithm can be combined with Strassen to further reduce runtime.[20] "2.5D" algorithms provide a continuous tradeoff between memory usage and communication bandwidth.[21] On modern distributed computing environments such as MapReduce, specialized multiplication algorithms have been developed.[22]
There are a variety of algorithms for multiplication on meshes. For multiplication of two n×n on a standard two-dimensional mesh using the 2D Cannon's algorithm, one can complete the multiplication in 3n-2 steps although this is reduced to half this number for repeated computations.[23] The standard array is inefficient because the data from the two matrices does not arrive simultaneously and it must be padded with zeroes.
The result is even faster on a two-layered cross-wired mesh, where only 2n-1 steps are needed.[24] The performance improves further for repeated computations leading to 100% efficiency.[25] The cross-wired mesh array may be seen as a special case of a non-planar (i.e. multilayered) processing structure.[26]