Abstract
Breath-first-search (BFS) algorithm is the fundamen-tal building block of broad applications from the electronic design automation (EDA) field to social network analysis. With the targeting data set size growing considerable, researchers have turned to developing parallel BFS (PBFS) algorithms and accelerating them with graph processing units (GPUs). The frontier queue, the core idea among state-of-the-art designs of PBFS, opens the door to neighbor visiting parallelism. However, the traditional centralized frontier queue in PBFS suffers from a dramatic collision and explosive growth of memory space when excessive threads simultaneously operate on it. Therefore, we identify the challenges of current frontier queue implementations. To solve these challenges, we proposed the decentralized frontier queue (DFQ), which separates a centralized queue into multiple tiny sub-queues for scattering the atomic operation collision on these queues. We also developed the novel overflow-free enqueue and asynchronous sub-queue drain methods to avoid dramatic growing size of the frontier queue and the overflow issue on the naive sub-queue design. In our experiments, we showed that our design could have better scalability and grain averagely 1.04x speedup on the execution in the selected benchmark suit with considerable memory space efficiency.
Original language | English |
---|---|
Title of host publication | 2023 Design, Automation and Test in Europe Conference and Exhibition, DATE 2023 - Proceedings |
Publisher | Institute of Electrical and Electronics Engineers Inc. |
ISBN (Electronic) | 9783981926378 |
DOIs | |
State | Published - 2023 |
Externally published | Yes |
Event | 2023 Design, Automation and Test in Europe Conference and Exhibition, DATE 2023 - Antwerp, Belgium Duration: 17 04 2023 → 19 04 2023 |
Publication series
Name | Proceedings -Design, Automation and Test in Europe, DATE |
---|---|
Volume | 2023-April |
ISSN (Print) | 1530-1591 |
Conference
Conference | 2023 Design, Automation and Test in Europe Conference and Exhibition, DATE 2023 |
---|---|
Country/Territory | Belgium |
City | Antwerp |
Period | 17/04/23 → 19/04/23 |
Bibliographical note
Publisher Copyright:© 2023 EDAA.
Keywords
- breadth-first-search
- GPU
- parallel computing
- queue
- scalability