A New Execution Model and Executor for Adaptively Optimizing the Performance of Parallel Algorithms Using HPX Runtime System
Karame Mohammadiporshokooh, Steven R. Brandt, Hartmut Kaiser
TL;DR
This paper develops a runtime-adaptive execution model for HPX to optimize core usage and chunking in parallel algorithms, addressing the overheads arising from static resource allocation. By modeling execution with $T_0$ (overhead) and $T_1$ (sequential work) and deriving an Overhead Law, it computes optimal core counts and chunk sizes that adapt in real time based on measured loop times, implemented as the adaptive_core_chunk_size execution parameter. The implementation integrates with HPX through customization points (measure_iteration, processing_units_count, get_chunk_size) and execution policies, enabling seamless use via the .on() and .with() interfaces. Across diverse workloads and architectures, the adaptive executor yields consistent speedups over static configurations, with larger gains on compute-bound tasks and robust performance improvements for a wide range of workloads, demonstrating practical impact for performance optimization without increasing algorithmic complexity. The work suggests a path toward broadly applicable, runtime-driven optimization in parallel runtimes while maintaining a familiar C++ executors API.
Abstract
Developing parallel algorithms efficiently requires careful management of concurrency across diverse hardware architectures. C++ executors provide a standardized interface that simplifies the development process, allowing developers to write portable and uniform code. However, in some cases, they may not fully leverage hardware capabilities or optimally allocate resources for specific workloads, leading to potential performance inefficiencies. Building on our earlier conference paper [ Adaptively Optimizing the Performance of HPX's Parallel algorithms], which introduces a preliminary strategy based on cores and chunking (workload), and integrated it into HPX's executor API, that dynamically optimizes for workload distribution and resource allocation, based on runtime metrics and overheads, this paper, introduces a more detailed model of that strategy. It evaluates the efficiency of this implementation (as an HPX executor) across a wide range of compute-bound and memory-bound workloads on different architectures and with different algorithms. The results show consistent speedups across all tests, configurations, and workloads studied, offering improved performance through a familiar and user-friendly c++ executors API. Additionally, the paper highlights how runtime-driven executor adaptation can simplify performance optimization without increasing the complexity of algorithm development.
