TL;DR
This paper introduces a parallel batch-dynamic data structure for the closest pair problem that is both theoretically efficient and practically fast, supporting large batches of updates with high parallel speedup.
Contribution
It presents the first practical parallel batch-dynamic data structure for the closest pair problem with proven work and depth bounds, and provides extensive experimental evaluation.
Findings
Achieves up to 38.57x speedup on 48 cores for dynamic updates.
Static algorithms reach up to 51.45x speedup, with Rabin's algorithm performing best.
Dynamic algorithm is more efficient for batch sizes up to 20% of data set.
Abstract
We propose a theoretically-efficient and practical parallel batch-dynamic data structure for the closest pair problem. Our solution is based on a serial dynamic closest pair data structure by Golin et al., and supports batches of insertions and deletions in parallel. For a data set of size , our data structure supports a batch of insertions or deletions of size in expected work and depth with high probability, and takes linear space. The key techniques for achieving these bounds are a new work-efficient parallel batch-dynamic binary heap, and careful management of the computation across sets of points to minimize work and depth. We provide an optimized multicore implementation of our data structure using dynamic hash tables, parallel heaps, and dynamic -d trees. Our experiments on a variety of synthetic and real-world data…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
