Skip to main content

laddu_core/
execution.rs

1//! Execution-policy and thread-pool coordination helpers.
2
3#[cfg(feature = "execution-context-prototype")]
4mod context;
5mod thread_pool;
6
7#[cfg(feature = "execution-context-prototype")]
8pub use context::{ExecutionContext, ScratchAllocator, ThreadPolicy};
9pub use thread_pool::ThreadPoolManager;
10
11#[cfg(test)]
12mod tests;