You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Part of rayon-rs#465.
This makes the following program 10x faster (5.7s before, 0.55s after)
on a 6 core (12 thread) machine.
```
extern crate test;
extern crate rayon;
use rayon::prelude::*;
fn main() {
let count = (0..std::u32::MAX)
.into_par_iter()
.intersperse(1)
.map(test::black_box)
.count();
println!("{}", count);
}
```
0 commit comments