/external/rust/crates/rayon/ |
D | README.md | 3 [![Rayon crate](https://img.shields.io/crates/v/rayon.svg)](https://crates.io/crates/rayon) 4 [![Rayon documentation](https://docs.rs/rayon/badge.svg)](https://docs.rs/rayon) 6 ![build status](https://github.com/rayon-rs/rayon/workflows/master/badge.svg) 7 …oin the chat at https://gitter.im/rayon-rs/Lobby](https://badges.gitter.im/rayon-rs/Lobby.svg)](ht… 15 [available on crates.io](https://crates.io/crates/rayon), and 16 [API Documentation is available on docs.rs](https://docs.rs/rayon/). 18 [blog]: http://smallcultfollowing.com/babysteps/blog/2015/12/18/rayon-data-parallelism-in-rust/ 28 use rayon::prelude::*; 43 [Parallel iterators]: https://docs.rs/rayon/*/rayon/iter/index.html 44 [join]: https://docs.rs/rayon/*/rayon/fn.join.html [all …]
|
D | Cargo.toml.orig | 2 name = "rayon" 10 repository = "https://github.com/rayon-rs/rayon" 11 documentation = "https://docs.rs/rayon/" 18 members = ["rayon-demo", "rayon-core"] 22 rayon-core = { version = "1.9.0", path = "rayon-core" }
|
D | RELEASES.md | 1 # Release rayon 1.5.0 / rayon-core 1.9.0 (2020-10-21) 14 # Release rayon 1.4.1 (2020-09-29) 26 # Release rayon-core 1.8.1 (2020-09-17) 32 # Release rayon 1.4.0 / rayon-core 1.8.0 (2020-08-24) 41 [RFC 5]: https://github.com/rayon-rs/rfcs/pull/5 54 # Release rayon 1.3.1 / rayon-core 1.7.1 (2020-06-15) 56 - Fixed a use-after-free race in calls blocked between two rayon thread pools. 81 # Release rayon 1.3.0 / rayon-core 1.7.0 (2019-12-21) 85 - The `--cfg=rayon_unstable` supporting code for `rayon-futures` is removed. 97 # Release rayon-futures 0.1.1 (2019-12-21) [all …]
|
D | METADATA | 1 name: "rayon" 6 value: "https://crates.io/crates/rayon" 10 value: "https://static.crates.io/crates/rayon/rayon-1.5.0.crate"
|
D | Cargo.toml | 15 name = "rayon" 20 documentation = "https://docs.rs/rayon/" 25 repository = "https://github.com/rayon-rs/rayon" 33 [dependencies.rayon-core]
|
D | Android.bp | 44 crate_name: "rayon", 69 // rayon-core-1.9.0
|
/external/rust/crates/rayon-core/ |
D | README.md | 3 …ended to directly access rayon-core; all its APIs are mirror in the rayon crate. To that end, the … 5 rayon-core aims to never, or almost never, have a breaking change to its API, because each revision… 9 [Rayon Docs]: https://docs.rs/rayon/
|
D | METADATA | 1 name: "rayon-core" 6 value: "https://crates.io/crates/rayon-core" 10 value: "https://static.crates.io/crates/rayon-core/rayon-core-1.9.0.crate"
|
D | Cargo.toml.orig | 2 name = "rayon-core" 8 repository = "https://github.com/rayon-rs/rayon" 9 documentation = "https://docs.rs/rayon/" 11 links = "rayon-core"
|
D | Cargo.toml | 15 name = "rayon-core" 19 links = "rayon-core" 21 documentation = "https://docs.rs/rayon/" 26 repository = "https://github.com/rayon-rs/rayon"
|
/external/rust/crates/hashbrown/src/ |
D | lib.rs | 68 pub mod rayon { module 69 pub use crate::external_trait_impls::rayon::raw::*; 95 pub mod rayon { module 96 pub use crate::external_trait_impls::rayon::map::*; 109 pub mod rayon { module 110 pub use crate::external_trait_impls::rayon::set::*;
|
/external/rust/crates/rayon/tests/ |
D | octillion.rs | 1 use rayon::prelude::*; 6 fn octillion() -> rayon::range::Iter<u128> { in octillion() 11 fn octillion_inclusive() -> rayon::range_inclusive::Iter<u128> { in octillion_inclusive() 64 let builder = rayon::ThreadPoolBuilder::new().num_threads(2); in two_threads()
|
D | clones.rs | 1 use rayon::prelude::*; 151 check(rayon::iter::empty::<i32>()); in clone_empty() 156 check(rayon::iter::once(10)); in clone_once() 162 check(rayon::iter::repeat(x).while_some()); in clone_repeat() 163 check(rayon::iter::repeatn(x, 1000)); in clone_repeat() 168 check(rayon::iter::split(0..1000, |x| (x, None))); in clone_splitter()
|
D | debug.rs | 1 use rayon::prelude::*; 174 check(rayon::iter::empty::<i32>()); in debug_empty() 179 check(rayon::iter::once(10)); in debug_once() 185 check(rayon::iter::repeat(x)); in debug_repeat() 186 check(rayon::iter::repeatn(x, 10)); in debug_repeat() 191 check(rayon::iter::split(0..10, |x| (x, None))); in debug_splitter()
|
D | cross-pool.rs | 1 use rayon::prelude::*; 2 use rayon::ThreadPoolBuilder;
|
D | named-threads.rs | 3 use rayon::prelude::*; 4 use rayon::*;
|
D | iter_panic.rs | 1 use rayon::prelude::*; 2 use rayon::ThreadPoolBuilder;
|
D | producer_split_at.rs | 1 use rayon::iter::plumbing::*; 2 use rayon::prelude::*; 114 check(&v[..0], rayon::iter::empty); in empty() 120 check(&v, || rayon::iter::once(42)); in once() 144 check(&v, || rayon::iter::repeatn(1, 5)); in repeatn()
|
D | issue671.rs | 3 use rayon::prelude::*;
|
D | issue671-unzip.rs | 3 use rayon::prelude::*;
|
/external/rust/crates/rayon/examples/ |
D | cpu_monitor.rs | 58 rayon::join(|| join_recursively(n - 1), || join_recursively(n - 1)); in task() 73 rayon::join(|| task(args), wait_for_user); in task_stall_root() 77 rayon::scope(|scope| { in task_stall_scope()
|
D | README.md | 3 see `rayon-demo`.
|
/external/rust/crates/hashbrown/ |
D | Cargo.toml.orig | 19 rayon = { version = "1.0", optional = true } 33 rayon = "1.0" 59 features = ["nightly", "rayon", "serde", "raw"]
|
D | Cargo.toml | 26 features = ["nightly", "rayon", "serde", "raw"] 50 [dependencies.rayon] 71 [dev-dependencies.rayon]
|
/external/rust/crates/hashbrown/src/external_trait_impls/ |
D | mod.rs | 2 pub(crate) mod rayon; module
|