//! High-level PTX kernel builder DSL.
//!
//! This module provides the ergonomic API for constructing PTX kernels
//! from Rust code. The main entry point is [`KernelBuilder`], which handles
//! the overall kernel structure (parameters, target, directives), while
//! [`BodyBuilder`] provides the instruction-level API used inside the
//! kernel body closure.
//!
//! See [`KernelBuilder`] for usage examples.
// P1 / P8 quality-gate tests (test-only module, compiled only in test mode).
pub use BodyBuilder;
pub use KernelBuilder;