orx_parallel/executor/
mod.rs

1#[cfg(feature = "std")]
2mod executor_with_diagnostics;
3mod fixed_chunk_executor;
4pub(crate) mod parallel_compute;
5mod parallel_executor;
6mod thread_compute;
7mod thread_executor;
8
9#[cfg(feature = "std")]
10pub use executor_with_diagnostics::ParallelExecutorWithDiagnostics;
11pub use parallel_executor::ParallelExecutor;
12pub use thread_executor::ThreadExecutor;
13
14/// Default parallel executor.
15pub type DefaultExecutor = fixed_chunk_executor::FixedChunkRunner;