easy-parallel/README.md

84 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2020-05-26 22:05:45 +00:00
# easy-parallel
2020-12-26 14:47:13 +00:00
[![Build](https://github.com/smol-rs/easy-parallel/workflows/Build%20and%20test/badge.svg)](
https://github.com/smol-rs/easy-parallel/actions)
[![License](https://img.shields.io/badge/license-Apache--2.0_OR_MIT-blue.svg)](
2020-12-26 14:47:13 +00:00
https://github.com/smol-rs/easy-parallel)
2020-05-26 22:05:45 +00:00
[![Cargo](https://img.shields.io/crates/v/easy-parallel.svg)](
https://crates.io/crates/easy-parallel)
[![Documentation](https://docs.rs/easy-parallel/badge.svg)](
https://docs.rs/easy-parallel)
2020-05-27 08:10:37 +00:00
Run closures in parallel.
2020-05-26 22:05:45 +00:00
This is a simple primitive for spawning threads in bulk and waiting for them to complete.
Threads are allowed to borrow local variables from the main thread.
2020-05-27 10:27:15 +00:00
# Examples
2020-05-26 22:05:45 +00:00
Run two threads that increment a number:
```rust
use easy_parallel::Parallel;
use std::sync::Mutex;
let mut m = Mutex::new(0);
Parallel::new()
.add(|| *m.lock().unwrap() += 1)
.add(|| *m.lock().unwrap() += 1)
.run();
assert_eq!(*m.get_mut().unwrap(), 2);
```
2020-05-27 08:10:37 +00:00
Square each number of a vector on a different thread:
2020-05-26 22:05:45 +00:00
```rust
use easy_parallel::Parallel;
2020-05-26 22:22:58 +00:00
let v = vec![10, 20, 30];
2020-05-26 22:05:45 +00:00
let squares = Parallel::new()
2020-05-27 08:10:37 +00:00
.each(0..v.len(), |i| v[i] * v[i])
2020-05-26 22:05:45 +00:00
.run();
2020-05-27 08:10:37 +00:00
assert_eq!(squares, [100, 400, 900]);
2020-05-26 22:05:45 +00:00
```
2020-05-27 10:27:15 +00:00
Compute the sum of numbers in an array:
```rust
use easy_parallel::Parallel;
fn par_sum(v: &[i32]) -> i32 {
const THRESHOLD: usize = 2;
if v.len() <= THRESHOLD {
v.iter().copied().sum()
} else {
let half = (v.len() + 1) / 2;
let sums = Parallel::new().each(v.chunks(half), par_sum).run();
sums.into_iter().sum()
}
}
let v = [1, 25, -4, 10, 8];
assert_eq!(par_sum(&v), 40);
```
2020-05-26 22:05:45 +00:00
## License
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
#### Contribution
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.