Information Security and Cryptography Research Group

Efficient Synchronization-Light Work Stealing

Rafael Custódio, Hervé Paulino, and Guilherme Rito

ACM Symposium on Parallelism in Algorithms and Architectures—SPAA 2023, ACM, pp. 39–49, Jun 2023.

Work Stealing (WS) is a provably efficient scheduler of parallel computations. In WS each processor owns a deque that it uses as a call stack; when out of work, processors try to steal tasks from other processors' deques. Unfortunately, the concurrent nature of processors' deques entails expensive synchronization even when processors access their own deques. Recently, Rito and Paulino have found that the use of split deques allows to provably avoid most synchronization costs while keeping WS’s asymptotically optimal expected runtime; in Low-Cost Work Stealing (LCWS)-the variant of WS introduced in their work—processors need not synchronization for most local accesses to their (split) deques.

In this paper we assess the concrete efficiency gains of LCWS in practice. More concretely, we implemented LCWS in the Parlay library and show how it compares against Parlay’s original work stealing algorithm on the execution of the benchmarks from the Problem-Based Benchmark Suite (PBBS). Experimental results show that our signal-based LCWS implementation obtains speedups with regard to WS for at least 65% of PBBS’ benchmarks in three different computers.

BibTeX Citation

@inproceedings{CusPauRit23,
    author       = {Rafael Custódio and Hervé Paulino and Guilherme Rito},
    title        = {Efficient Synchronization-Light Work Stealing},
    editor       = {Kunal Agrawal and Julian Shun},
    booktitle    = {ACM Symposium on Parallelism in Algorithms and Architectures---SPAA 2023},
    pages        = {39--49},
    year         = {2023},
    month        = {06},
    publisher    = {ACM},
}

Files and Links