veda-rs 1.0.0

High-performance parallel runtime for Rust with work-stealing and adaptive scheduling
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod cpu_pool;
pub mod task;
pub mod worker;
pub mod panic_handler;

pub use cpu_pool::CpuPool;
pub use task::Priority;
pub use panic_handler::{PanicHandler, PanicStrategy};

pub(crate) use task::Task;