Coppersmith-Winograd Algorithm

From GM-RKB
Jump to navigation Jump to search

A Coppersmith-Winograd Algorithm is a matrix multiplication algorithm that follows the pattern proposed in (Coppersmith & Winograd, 1990).



References

2014

  • (Wikipedia, 2014) ⇒ http://en.wikipedia.org/wiki/Coppersmith–Winograd_algorithm Retrieved:2014-5-4.
    • In linear algebra, the Coppersmith–Winograd algorithm, named after Don Coppersmith and Shmuel Winograd, was the asymptotically fastest known algorithm for square matrix multiplication until 2010. It can multiply two [math]\displaystyle{ n \times n }[/math] matrices in [math]\displaystyle{ O(n^{2.375477}) }[/math] time (see Big O notation).

      This is an improvement over the naïve [math]\displaystyle{ O(n^3) }[/math] time algorithm and the [math]\displaystyle{ O(n^{2.807355}) }[/math] time Strassen algorithm. Algorithms with better asymptotic running time than the Strassen algorithm are rarely used in practice.

      It is possible to improve the exponent further; however, the exponent must be at least 2 (because an [math]\displaystyle{ n \times n }[/math] matrix has [math]\displaystyle{ n^2 }[/math] values, and all of them have to be read at least once to calculate the exact result).

      In 2010, Andrew Stothers gave an improvement to the algorithm, [math]\displaystyle{ O(n^{2.373}). }[/math] In 2011, Virginia Williams combined a mathematical short-cut from Stothers' paper with her own insights and automated optimization on computers, improving the bound to [math]\displaystyle{ O(n^{2.3728642}). }[/math] In 2014, François Le Gall simplified the methods of Williams and obtained an improved bound of [math]\displaystyle{ O(n^{2.3728639}). }[/math] The Coppersmith–Winograd algorithm is frequently used as a building block in other algorithms to prove theoretical time bounds. However, unlike the Strassen algorithm, it is not used in practice because it only provides an advantage for matrices so large that they cannot be processed by modern hardware. Henry Cohn, Robert Kleinberg, Balázs Szegedy and Christopher Umans have re-derived the Coppersmith–Winograd algorithm using a group-theoretic construction. They also showed that either of two different conjectures would imply that the optimal exponent of matrix multiplication is 2, as has long been suspected. However, they were not able to formulate a specific solution leading to a better running-time than Coppersmith-Winograd at the time.