//! LLVM IR code generation.
//!
//! This module generates LLVM IR code from optimized UOp graphs.
//!
//! # Module Structure
//!
//! - `common/`: Shared utilities (types, ctx) for CPU and GPU
//! - `cpu/`: CPU-specific rendering
//! - `gpu/`: Future GPU-specific rendering (HIP, CUDA, Metal)
//! - `text/`: Main entry point that orchestrates rendering
pub use render_uop as cpu_render_uop;
pub use LlvmTextRenderer;