RA
Rayon
Data-parallelism library for Rust — parallel iterators that use all CPU cores with no unsafe code.
Rayon turns .iter() into .par_iter() — that single change saturates all available CPU cores using a work-stealing thread pool. It handles nested parallelism automatically and composes with the standard iterator API. Ideal for CPU-bound batch processing in data pipelines and scientific computing.
// related libraries
Async runtime for Rust — event-driven, non-blocking I/O, task scheduling, and networking …
async
2016
open source
// tags
parallelconcurrencyperformanceiteratorsrust