Sparse Matrices
Dense Matrices
A dense matrix stores all values including zeros. So, a \(m \times n\) matrix would have to store \(O(m \times n)\) entries. For example:
To store the matrix, all components are generally saved in row-major order. For \(\mathbf{A}\) given above, we would store:
The dimensions of the matrix are stored separately:
Sparse Matrices
Some types of matrices contain too many zeros, and storing all those zero entries is wasteful. A sparse matrix is a matrix with few non-zero entries.
A \(m \times n\) matrix is called sparse if it has \(O(min(m, n))\) non-zero entries.
Goals
A sparse matrix aims to store large matrices efficiently without storing many zeros, which allows for more economical computations. It also saves storage space, which can reduce memory overhead on a system.
The number of operations required to add two dense matrices \(\mathbf{P}\), \(\mathbf{Q}\) is \(O(n(\mathbf{P}) + n(\mathbf{Q}))\) where \((n(\mathbf{X}))\) is the number of elements in \(\mathbf{X}\).
The number of operations required to add two sparse matrices \(\mathbf{P}\), \(\mathbf{Q}\) is \(O(nnz(\mathbf{P}) + nnz(\mathbf{Q}))\) where \((nnz(\mathbf{X}))\) is the number of non-zero elements in \(\mathbf{X}\).
Storage Solutions
There are many ways to store sparse matrices such as Coordinate (COO), Compressed Sparse Row (CSR), Block Sparse Row (BSR), Dictionary of Keys (DOK), etc.
We will focus on Coordinate and Compressed Sparse Row.
Let's explore ways to store the following example:
Coordinate Format (COO)
COO stores arrays of row indices, column indices and the corresponding non-zero data values in any order. This format provides fast methods to construct sparse matrices and convert to different sparse formats. For \({\bf A}\) the COO format is:
\[\textrm{data} = \begin{bmatrix} 12.0 & 9.0 & 7.0 & 5.0 & 1.0 & 2.0 & 11.0 & 3.0 & 6.0 & 4.0 & 8.0 & 10.0\end{bmatrix}\] \[\textrm{row} = \begin{bmatrix} 4 & 2 & 2 & 1 & 0 & 0 & 3 & 1 & 2 & 1 & 2 & 3 \end{bmatrix}\] \[\textrm{col} = \begin{bmatrix} 4 & 4 & 2 & 3 & 0 & 3 & 3 & 0 & 0 & 1 & 3 & 2 \end{bmatrix}\]\(\textrm{row}\) and \(\textrm{col}\) are arrays of \(nnz\) integers.
\(\textrm{data}\) is an \(nnz\) array of the data type of the original matrix, in this case doubles.
How to interpret: The first entries of \(\textrm{data}\), \(\textrm{row}\), \(\textrm{col}\) are 12.0, 4, 4, respectively, meaning there is a 12.0 at position (4, 4) of the matrix; second entries are 9.0, 2, 4, so there is a 9.0 at (2, 4).
A COO matrix stores \(3 \times nnz\) elements. This method can be sorted as each index in the row, col, and data arrays describe the same element.
Converting this matrix into COO format in python can be done using the scipy.sparse
library.
import scipy.sparse as sparse
A = [[1., 0., 0., 2., 0.],
[ 3., 4., 0., 5., 0.],
[ 6., 0., 7., 8., 9.],
[ 0., 0., 10., 11., 0.],
[ 0., 0., 0., 0., 12.]]
COO = sparse.coo_matrix(A)
data = COO.data
row = COO.row
col = COO.col
You can also recreate a sparse matrix in COO format to a dense or CSR matrix in python using the scipy.sparse
library.
import scipy.sparse as sparse
data = [12.0, 9.0, 7.0, 5.0, 1.0, 2.0, 11.0, 3.0, 6.0, 4.0, 8.0, 10.0]
row = [4, 2, 2, 1, 0, 0, 3, 1, 2, 1, 2, 3]
col = [4, 4, 2, 3, 0, 3, 3, 0, 0, 1, 3, 2]
COO = sparse.coo_matrix((data, (row, col)))
A = COO.todense()
CSR = COO.tocsr()
Compressed Sparse Row (CSR)
CSR, also commonly known as the Yale format, encodes rows offsets, column indices and the corresponding non-zero data values. The row offsets are defined by the followign recursive relationship (starting with \(\textrm{rowptr}[0] = 0\)):
where \(\mathrm{nnz}(\textrm{row}_k)\) is the number of non-zero elements in the \(k^{th}\) row. Note that the length of \(\textrm{rowptr}\) is \(n_{rows} + 1\), where the last element in \(\textrm{rowptr}\) is the number of nonzeros in \(A\). For \({\bf A}\) the CSR format is:
\[\textrm{data} = \begin{bmatrix} 1.0 & 2.0 & 3.0 & 4.0 & 5.0 & 6.0 & 7.0 & 8.0 & 9.0 & 10.0 & 11.0 & 12.0 \end{bmatrix}\] \[\textrm{col} = \begin{bmatrix} 0 & 3 & 0 & 1 & 3 & 0 & 2 & 3 & 4 & 2 & 3 & 4\end{bmatrix}\] \[\textrm{rowptr} = \begin{bmatrix} 0 & 2 & 5 & 9 & 11 & 12 \end{bmatrix}\]\(\textrm{rowptr}\) contains the row offset (array of \(m + 1\) integers).
\(\textrm{col}\) contains column indices (array of \(nnz\) integers).
\(\textrm{data}\) contains non-zero elements (array of \(nnz\) type of data values, in this case doubles).
How to interpret: The first two entries of \(\textrm{rowptr}\) gives us the elements in the first row. Interval [0, 2) of \(\textrm{data}\) and \(\textrm{col}\), corresponding to two (data, column) pairs: (1.0, 0) and (2.0, 3), means the first row has 1.0 at column 0 and 2.0 at column 3. The second and third entries of \(\textrm{rowptr}\) tells us [2, 5) of \(\textrm{data}\) and \(\textrm{col}\) corresponds to the second row. The three pairs (3.0, 0), (4.0, 1), (5.0, 3) means in the second row, there is a 3.0 at column 0, a 4.0 at column 1, and a 5.0 at column 3.
A CSR matrix stores \(2 \times nnz + m + 1\) elements. It also provides fast arithmetic operations between sparse matrices, and fast matrix vector product.
Converting this matrix into CSR format in python can be done using the scipy.sparse
library.
import scipy.sparse as sparse
A = [[1., 0., 0., 2., 0.],
[ 3., 4., 0., 5., 0.],
[ 6., 0., 7., 8., 9.],
[ 0., 0., 10., 11., 0.],
[ 0., 0., 0., 0., 12.]]
CSR = sparse.csr_matrix(A)
data = CSR.data
col = CSR.indices
rowptr = CSR.indptr
You can also recreate a sparse matrix in CSR format to a dense or COO matrix in python using the scipy.sparse
library.
data = [ 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12.]
col = [ 0, 3, 0, 1, 3, 0, 2, 3, 4, 2, 3, 4]
rowptr = [ 0, 2, 5, 9, 11, 12]
CSR = sparse.csr_matrix((data, col, rowptr))
A = CSR.todense()
COO = CSR.tocoo()
CSR Matrix Vector Product Algorithm
The following code snippet performs CSR matrix vector product for square matrices:
import numpy as np
def csr_mat_vec(A, x):
Ax = np.zeros_like(x)
for i in range(x.shape[0]):
for k in range(A.rowptr[i], A.rowptr[i+1]):
Ax[i] += A.data[k]*x[A.col[k]]
return Ax
Review Questions
-
What does it mean for a matrix to be sparse?
-
What factors might you consider when deciding how to store a sparse matrix? (Why would you store a matrix in one format over another?)
-
Given a sparse matrix, put the matrix in CSR format.
-
Given a sparse matrix, put the matrix in COO format.
-
For a given matrix, how many bytes total are required to store it in CSR format?
-
For a given matrix, how many bytes total are required to store it in COO format?