Skip to main content

atomr_accel_cuda/device/
mod.rs

1//! `DeviceActor` (outer tier) + `ContextActor` (inner tier) — §5.11.
2
3mod alloc_dispatch;
4mod alloc_msg;
5mod context_actor;
6pub mod device_actor;
7mod state;
8
9pub use alloc_dispatch::{
10    AllocDispatch, AllocReq, CopyFromHostDispatch, CopyFromHostReq, CopyToHostDispatch,
11    CopyToHostReq,
12};
13pub use alloc_msg::{DeviceLoad, HostBuf};
14pub use context_actor::{ContextActor, ContextMsg};
15pub use device_actor::{
16    DeviceActor, DeviceConfig, DeviceMsg, EnabledLibraries, KernelChildren, SgemmRequest,
17    WorkRequest,
18};
19pub use state::DeviceState;