//! PTX intermediate representation — the IR tree.
//!
//! A PTX program is modelled as a [`PtxModule`] containing one or more
//! [`PtxKernel`]s, each with parameters ([`PtxParam`]), a body of
//! [`PtxInstruction`]s, and a set of allocated [`Register`]s.
pub use PtxInstruction;
pub use ;
pub use ;
pub use ;
pub use PtxParam;
pub use ;