SparseZipper: Enhancing Matrix Extensions to Accelerate SpGEMM on CPUs
Tuan Ta, Joshua Randall, Christopher Batten
TL;DR
SparseZipper targets the inefficiency of dense-oriented matrix extensions when performing sparse-sparse SpGEMM on CPUs with unstructured sparsity. It minimally extends an existing matrix ISA and baseline 16×16 systolic array by introducing merge-based stream sorting and merging instructions that operate on key-value streams generated by the Gustavson row-wise SpGEMM algorithm, reusing existing matrix and vector registers. The approach yields substantial speedups (average 5.98× over scalar hash-based SpGEMM and 2.61× over a vectorized SpGEMM) with a modest 12.7% area increase for the 16×16 SparseZipper unit, suggesting favorable hardware overhead for broader SOC integration. These results demonstrate that sparse-sparse GEMM can be efficiently accelerated on CPUs through targeted ISA and micro-architectural enhancements, enabling faster workloads in graph analytics, scientific computing, and related domains.
Abstract
The importance of general matrix multiplication (GEMM) is motivating new instruction set extensions for multiplying dense matrices in almost all contemporary ISAs, and these extensions are often implemented using high-performance systolic arrays. However, matrices in emerging workloads are not always dense, and sparse matrices where the vast majority of values are zeros are becoming more common. Existing matrix extensions and micro-architectures cannot efficiently process highly sparse matrices due to two reasons: (1) wasted work when one or both input values are zero; and (2) incompatibility with sparse matrix formats. This work proposes SparseZipper that minimally modifies existing matrix extensions and systolic-array-based micro-architectures specialized for dense-dense GEMM to accelerate sparse-sparse GEMM operating on highly sparse matrices with unstructured sparsity structures. Our performance evaluation shows SparseZipper achieves 5.98x and 2.61x speedup over a scalar hash-based implementation of SpGEMM and a state-of-the-art vectorized SpGEMM version, respectively. Our component-level area evaluation shows SparseZipper increases the area of a baseline 16x16 systolic array by only 12.7% resulting in an area overhead for an entire system-on-chip of just a few percent.
