DOI
Source Code
Data
Projects
Share
TurboBFS: GPU Based Breadth-First Search (BFS) Algorithms in the Language of Linear Algebra

Artiles, Oswaldo; Saeed, Fahad; , IEEE 2021 IEEE International Parallel and Distributed Processing Symposium Workshops (IPDPSW) :520-528 (2021).

Abstract

Graphs that are used for modeling of human brain, omics data, or social networks are huge, and manual inspection of these graph is impossible. A popular, and fundamental, method used for making sense of these large graphs is the well-known Breadth-First Search (BFS) algorithm. However, BFS suffers from large computational cost especially for big graphs of interest. More recently, the use of Graphics processing units (GPU) has been promising, but challenging because of limited global memory of GPU’s, and irregular structures of real-world graphs. In this paper, we present a GPU based linear-algebraic formulation and implementation of BFS, called TurboBFS, that exhibits excellent scalability on unweighted, undirected or directed sparse graphs of arbitrary structure. We demonstrate that our algorithms obtain up to 40 GTEPs, and are on average 15.7x, 5.8x, and 1.8x faster than the other state-of-the-art …