orx-parallel 3.4.0

High performance, configurable and expressive parallel computation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "std")]
mod executor_with_diagnostics;
mod fixed_chunk_executor;
pub(crate) mod parallel_compute;
mod parallel_executor;
mod thread_compute;
mod thread_executor;

#[cfg(feature = "std")]
pub use executor_with_diagnostics::ParallelExecutorWithDiagnostics;
pub use parallel_executor::ParallelExecutor;
pub use thread_executor::ThreadExecutor;

/// Default parallel executor.
pub type DefaultExecutor = fixed_chunk_executor::FixedChunkRunner;