pub mod command;
pub mod compute;
mod detection;
pub mod device;
pub mod drivers;
pub mod drm;
pub mod hw;
pub mod memory;
pub mod pipeline;
pub mod queue;
pub mod scheduler;
pub mod shader;
pub use command::Command;
pub use detection::detect_gpus_impl as detect_gpus;
pub use detection::GpuDevice;
pub use shader::Shader;
mod lifecycle;
pub use lifecycle::init;