DCLGPFJun 28, 2025

Libra: Synergizing CUDA and Tensor Cores for High-Performance Sparse Matrix Multiplication

arXiv:2506.22714v11 citationsh-index: 2
Originality Highly original
AI Analysis

This work addresses performance bottlenecks in deep learning and scientific computing by optimizing sparse operators on modern GPUs, representing a novel integration rather than an incremental improvement.

The paper tackles the problem of inefficient sparse matrix multiplication on GPUs by proposing Libra, a method that synergizes CUDA and Tensor cores, achieving average speedups of 3.1x over state-of-the-art methods and up to 9.23x in some cases.

Sparse matrix multiplication operators (i.e., SpMM and SDDMM) are widely used in deep learning and scientific computing. Modern accelerators are commonly equipped with Tensor cores and CUDA cores to accelerate sparse operators. The former brings superior computing power but only for structured matrix multiplication, while the latter has relatively lower performance but with higher programming flexibility. In this work, we discover that utilizing one resource alone leads to inferior performance for sparse matrix multiplication, due to their respective limitations. To this end, we propose Libra, a systematic approach that enables synergistic computation between CUDA and Tensor cores to achieve the best performance for sparse matrix multiplication. Specifically, we propose a 2D-aware workload distribution strategy to find out the sweet point of task mapping for different sparse operators, leveraging both the high performance of Tensor cores and the low computational redundancy on CUDA cores. In addition, Libra incorporates systematic optimizations for heterogeneous computing, including hybrid load-balancing, finely optimized kernel implementations, and GPU-accelerated preprocessing. Extensive experimental results on H100 and RTX 4090 GPUs show that Libra outperforms the state-of-the-art by on average 3.1x (up to 9.23x) over DTC-SpMM and 2.9x (up to 3.9x) for end-to-end GNN applications. Libra opens up a new perspective for sparse operator acceleration by fully exploiting the heterogeneous computing resources on GPUs.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes