Home
last modified time | relevance | path

Searched refs:rayon (Results 1 – 25 of 62) sorted by relevance

123

/external/rust/crates/rayon/
DREADME.md3 [![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 …]
DCargo.toml.orig2 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" }
DRELEASES.md1 # 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 …]
DMETADATA1 name: "rayon"
6 value: "https://crates.io/crates/rayon"
10 value: "https://static.crates.io/crates/rayon/rayon-1.5.0.crate"
DCargo.toml15 name = "rayon"
20 documentation = "https://docs.rs/rayon/"
25 repository = "https://github.com/rayon-rs/rayon"
33 [dependencies.rayon-core]
DAndroid.bp44 crate_name: "rayon",
69 // rayon-core-1.9.0
/external/rust/crates/rayon-core/
DREADME.md3 …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/
DMETADATA1 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"
DCargo.toml.orig2 name = "rayon-core"
8 repository = "https://github.com/rayon-rs/rayon"
9 documentation = "https://docs.rs/rayon/"
11 links = "rayon-core"
DCargo.toml15 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/
Dlib.rs68 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/
Doctillion.rs1 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()
Dclones.rs1 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()
Ddebug.rs1 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()
Dcross-pool.rs1 use rayon::prelude::*;
2 use rayon::ThreadPoolBuilder;
Dnamed-threads.rs3 use rayon::prelude::*;
4 use rayon::*;
Diter_panic.rs1 use rayon::prelude::*;
2 use rayon::ThreadPoolBuilder;
Dproducer_split_at.rs1 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()
Dissue671.rs3 use rayon::prelude::*;
Dissue671-unzip.rs3 use rayon::prelude::*;
/external/rust/crates/rayon/examples/
Dcpu_monitor.rs58 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()
DREADME.md3 see `rayon-demo`.
/external/rust/crates/hashbrown/
DCargo.toml.orig19 rayon = { version = "1.0", optional = true }
33 rayon = "1.0"
59 features = ["nightly", "rayon", "serde", "raw"]
DCargo.toml26 features = ["nightly", "rayon", "serde", "raw"]
50 [dependencies.rayon]
71 [dev-dependencies.rayon]
/external/rust/crates/hashbrown/src/external_trait_impls/
Dmod.rs2 pub(crate) mod rayon; module

123