Cannon's algorithm

In computer science, Cannon's algorithm is a distributed algorithm for matrix multiplication for two-dimensional meshes first described in 1969 by Lynn Elliot Cannon.

[1][2] It is especially suitable for computers laid out in an N × N mesh.

[3] While Cannon's algorithm works well in homogeneous 2D grids, extending it to heterogeneous 2D grids has been shown to be difficult.

[4] The main advantage of the algorithm is that its storage requirements remain constant and are independent of the number of processors.

[2] The Scalable Universal Matrix Multiplication Algorithm (SUMMA)[5] is a more practical algorithm that requires less workspace and overcomes the need for a square 2D grid.

It is used by the ScaLAPACK, PLAPACK, and Elemental libraries.

When multiplying two n×n matrices A and B, we need n×n processing nodes p arranged in a 2D grid.

We need to select k in every iteration for every Processor Element (PE) so that processors don't access the same data for computing

Therefore processors in the same row / column must begin summation with different indexes.

The selection of k := (i + j) mod n for PE(i,j) satisfies this constraint for the first step.

In the first step we distribute the input matrices between the processors based on the previous rule.

In the next iterations we choose a new k' := (k + 1) mod n for every processor.

This way every processor will continue accessing different values of the matrices.

The needed data is then always at the neighbour processors.

The results of the multiplications are summed up as usual.

After the initial distribution of each processor, only the data for the next step has to be stored.

These are the intermediate result of the previous sum, a

This means that all three matrices only need to be stored in memory once evenly distributed across the processors.

In practice we have much fewer processors than the matrix elements.

We can replace the matrix elements with submatrices, so that every processor processes more values.

{\displaystyle T{\mathcal {(n,p)}}=T_{coll}(n/N,p)+N*T_{seq}(n/N)+2(N-1)(T_{start}+T_{byte}(n/N)^{2})}

is the time of the initial distribution of the matrices in the first step,

stands for the time it takes to establish a connection and transmission of byte respectively.

A disadvantage of the algorithm is that there are many connection setups, with small message sizes.