laddu-core 0.19.2

Core of the laddu library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Execution-policy and thread-pool coordination helpers.

#[cfg(feature = "execution-context-prototype")]
mod context;
mod thread_pool;

#[cfg(feature = "execution-context-prototype")]
pub use context::{ExecutionContext, ScratchAllocator, ThreadPolicy};
pub use thread_pool::ThreadPoolManager;

#[cfg(test)]
mod tests;