1 2 3 4 5 6 7 8 9
//! Runtime traits for compute backend abstraction pub mod client; pub mod device; pub mod runtime; pub use client::RuntimeClient; pub use device::Device; pub use runtime::Runtime;