Faster Local Solvers for Graph Diffusion Equations
Jiahe Bai, Baojian Zhou, Deqing Yang, Yanghua Xiao
TL;DR
The paper tackles the high cost of computing graph diffusion equations on large graphs by exploiting the strong localization of diffusion vectors. It introduces a general local diffusion process framework and three solver families (LocalSOR, LocalGD, LocalCH) that localize standard iterative methods, achieving sublinear runtime under suitable conditions and being highly GPU-friendly. The authors demonstrate up to 100× speedups across 18 real-world graphs for PPR, Katz, and HK; they also extend the approach to dynamic GDEs and fast GNN propagation, notably enhancing InstantGNN-style training. While APPR is shown to be a special case of the framework, the paper also discusses limitations and open questions, such as proving accelerated bounds for the proposed solvers and extending the approach to broader GDEs.
Abstract
Efficient computation of graph diffusion equations (GDEs), such as Personalized PageRank, Katz centrality, and the Heat kernel, is crucial for clustering, training neural networks, and many other graph-related problems. Standard iterative methods require accessing the whole graph per iteration, making them time-consuming for large-scale graphs. While existing local solvers approximate diffusion vectors through heuristic local updates, they often operate sequentially and are typically designed for specific diffusion types, limiting their applicability. Given that diffusion vectors are highly localizable, as measured by the participation ratio, this paper introduces a novel framework for approximately solving GDEs using a local diffusion process. This framework reveals the suboptimality of existing local solvers. Furthermore, our approach effectively localizes standard iterative solvers by designing simple and provably sublinear time algorithms. These new local solvers are highly parallelizable, making them well-suited for implementation on GPUs. We demonstrate the effectiveness of our framework in quickly obtaining approximate diffusion vectors, achieving up to a hundred-fold speed improvement, and its applicability to large-scale dynamic graphs. Our framework could also facilitate more efficient local message-passing mechanisms for GNNs.
