Crates.io | rayon_iter_concurrent_limit |
lib.rs | rayon_iter_concurrent_limit |
version | 0.2.0 |
source | src |
created_at | 2024-02-04 06:23:36.831267 |
updated_at | 2024-02-29 08:10:18.188167 |
description | Limit the concurrency of an individual rayon parallel iterator method with a convenient macro |
homepage | |
repository | https://github.com/LDeakin/rayon_iter_concurrent_limit |
max_upload_size | |
id | 1126114 |
size | 51,088 |
Limit the concurrency of an individual rayon parallel iterator method with a convenient macro.
The documentation outlines the motivation, implementation, and limitations of this crate.
use rayon::iter::{IntoParallelIterator, ParallelIterator};
use rayon_iter_concurrent_limit::iter_concurrent_limit;
const N: usize = 1000;
let output = iter_concurrent_limit!(2, (0..100), map, |i: usize| -> usize {
let alloc = vec![i; N]; // max of 2 concurrent allocations
alloc.into_par_iter().sum::<usize>() // runs on all threads
})
.map(|alloc_sum| -> usize {
alloc_sum / N // max of 2 concurrent executions
})
.collect::<Vec<usize>>();
assert_eq!(output, (0..100).into_iter().collect::<Vec<usize>>());
rayon_iter_concurrent_limit is licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.