EPJ Web of Conferences (Jan 2024)

A new portable random number generator wrapper library

  • Wang Tianle,
  • Atif Mohammad,
  • Dong Zhihua,
  • Leggett Charles,
  • Lin Meifeng

DOI
https://doi.org/10.1051/epjconf/202429511001
Journal volume & issue
Vol. 295
p. 11001

Abstract

Read online

Random number generator is an important component of many scientific projects. Many projects are written using programming models (like OpenMP and SYCL) to target different architectures. However, some programming models do not provide a random number generator. In this work, we introduce our random number generator wrapper. It is a header-only library that supports three distributions of random numbers: uniform, normal, and poisson. On the GPU backend, it wraps the cuRAND and rocRAND library, and supports various random number engines. It also wraps random123, a counterbased random number generator, on both CPU and GPU. With this library, we can generate random numbers with a few lines of code and target both GPU and multi-thread CPU with the same code. We also investigate the performance and scalability of this wrapper on different architectures with different engines and the number of cores.