kaio-core 0.4.1

KAIO core — PTX IR types and emission. Part of the KAIO GPU kernel authoring framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! PTX text emission — the `Emit` trait and `PtxWriter`.
//!
//! Every IR node implements [`Emit`], which writes PTX text through
//! [`PtxWriter`]'s formatting helpers. The writer handles indentation,
//! operand formatting, and label generation.

pub mod emit_trait;
pub mod writer;

pub use emit_trait::Emit;
pub use writer::PtxWriter;