lift_predict/lib.rs
1//! LIFT Predict: Performance prediction engine.
2//!
3//! Provides analytical roofline modelling and budget enforcement for
4//! estimating execution time, arithmetic intensity, and bottleneck
5//! identification on GPU targets (A100, H100).
6
7pub mod budget;
8pub mod roofline;
9
10pub use budget::*;
11pub use roofline::*;