Efficient Mixed Precision Quantization in Graph Neural Networks
Samir Moustafa, Nils M. Kriege, Wilfried N. Gansterer
TL;DR
This work addresses the high computational cost of inference in Graph Neural Networks by proposing MixQ-GNN, a mixed-precision quantization framework guided by a theorem that enables efficient, integer-based message passing with FP32-equivalent results. It introduces a relaxed, differentiable architecture search over per-component bit-widths and a memory-oriented penalty to balance accuracy and efficiency, enabling scalable selection of bit-widths across all GNN components. Empirical results across node- and graph-level tasks show MixQ-GNN achieving substantial BitOPs reductions (averaging around 5.5x for node tasks and 5.1x for graph tasks) while maintaining or improving predictive performance on several datasets, and demonstrating compatibility with existing quantization approaches like DQ. The framework proves robust across small to large graphs, including synthetic CSL data and large-scale real-world benchmarks, highlighting its practical impact for efficient GNN deployment on diverse hardware.
Abstract
Graph Neural Networks (GNNs) have become essential for handling large-scale graph applications. However, the computational demands of GNNs necessitate the development of efficient methods to accelerate inference. Mixed precision quantization emerges as a promising solution to enhance the efficiency of GNN architectures without compromising prediction performance. Compared to conventional deep learning architectures, GNN layers contain a wider set of components that can be quantized, including message passing functions, aggregation functions, update functions, the inputs, learnable parameters, and outputs of these functions. In this paper, we introduce a theorem for efficient quantized message passing to aggregate integer messages. It guarantees numerical equality of the aggregated messages using integer values with respect to those obtained with full (FP32) precision. Based on this theorem, we introduce the Mixed Precision Quantization for GNN (MixQ-GNN) framework, which flexibly selects effective integer bit-widths for all components within GNN layers. Our approach systematically navigates the wide set of possible bit-width combinations, addressing the challenge of optimizing efficiency while aiming at maintaining comparable prediction performance. MixQ-GNN integrates with existing GNN quantization methods, utilizing their graph structure advantages to achieve higher prediction performance. On average, MixQ-GNN achieved reductions in bit operations of 5.5x for node classification and 5.1x for graph classification compared to architectures represented in FP32 precision.
