Abstract
DBSCAN is a well-known density-based clustering algorithm to discover arbitrary shape clusters. While conceptually simple in serial, the algorithm is challenging to efficiently parallelize on many-core GPU architectures. Common pitfalls, such as asynchronous range query calls, result in high thread execution divergence in many implementations. In this paper, we propose a new framework for GPU-accelerated DBSCAN, and describe two tree-based algorithms within that framework. Both algorithms fuse the search for neighbors with updating cluster information, but differ in their treatment of dense regions of the data. We show that the time taken to compute clusters is at most twice that of determination of the neighbors. We compare the proposed algorithms with existing CPU and GPU implementations, and demonstrate their competitiveness and performance using a fast traversal structure (bounding volume hierarchy) for low dimensional data. We also show that the memory usage can be reduced by processing object neighbors dynamically without storing them.
Original language | English |
---|---|
Title of host publication | 52nd International Conference on Parallel Processing, ICPP 2023 - Main Conference Proceedings |
Publisher | Association for Computing Machinery |
Pages | 503-512 |
Number of pages | 10 |
ISBN (Electronic) | 9798400708435 |
DOIs | |
State | Published - Aug 7 2023 |
Event | 52nd International Conference on Parallel Processing, ICPP 2023 - Salt Lake City, United States Duration: Aug 7 2023 → Aug 10 2023 |
Publication series
Name | ACM International Conference Proceeding Series |
---|
Conference
Conference | 52nd International Conference on Parallel Processing, ICPP 2023 |
---|---|
Country/Territory | United States |
City | Salt Lake City |
Period | 08/7/23 → 08/10/23 |
Funding
The authors are grateful to Dr. Eleazar Leal for providing the source code for the algorithms used in [29] paper for comparison. This research was supported by the Exascale Computing Project (17-SC-20-SC), a collaborative effort of the U.S. Department of Energy Office of Science and the National Nuclear Security Administration. This research used resources of the Oak Ridge Leadership Computing Facility at the Oak Ridge National Laboratory, which is supported by the Office of Science of the U.S. Department of Energy under Contract No. DE-AC05-00OR22725.
Keywords
- DBSCAN
- GPU
- bounding volume hierarchy
- parallel algorithm