Multiresolution Priority Queues
Jordi Ros-Giralt, Alan Commike, Peter Cullen, Jeff Lucovsky, Dilip, Madathil, Richard Lethin

TL;DR
This paper introduces multiresolution priority queues that optimize performance by allowing controllable resolution trade-offs, reducing insertion costs and maintaining efficient removal, beneficial for high-performance computing applications.
Contribution
It presents a novel data structure that improves priority queue performance by trading off resolution, lowering insertion complexity from O(log n) to O(log r).
Findings
Insertion worst case reduced to O(log r)
Removal of top element is O(1)
Amortized insertion cost is O(1) for large n
Abstract
Priority queues are container data structures essential to many high performance computing (HPC) applications. In this paper, we introduce multiresolution priority queues, a data structure that improves the performance of the standard heap based implementations by trading off a controllable amount of resolution in the space of priorities. The new data structure can reduce the worst case performance of inserting an element from O(log(n)) to O(log(r)), where n is the number of elements in the queue and r is the number of resolution groups in the priority space. The worst case cost of removing the top element is O(1). When the number of elements in the table is high, the amortized cost to insert an element becomes O(1).
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.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsNetwork Packet Processing and Optimization · Network Security and Intrusion Detection · Distributed systems and fault tolerance
