//! ONNX GPU Inference Backend for OxiCUDA.
//!
//! Provides a complete ONNX operator runtime with:
//! - IR types for representing ONNX graphs ([`ir`](crate::onnx_backend::ir))
//! - 60+ operator implementations ([`ops`](crate::onnx_backend::ops))
//! - Graph executor with topological ordering ([`executor`](crate::onnx_backend::executor))
//! - Memory planning with buffer reuse ([`planner`](crate::onnx_backend::planner))
//! - Operator fusion passes ([`fusion`](crate::onnx_backend::fusion))
//! - Shape inference engine ([`shape_inference`](crate::onnx_backend::shape_inference))
pub use GraphExecutor;
pub use ;
pub use ;
pub use OpRegistry;
pub use ;
pub use ShapeInference;