lift-predict 0.3.0

LIFT-PREDICT: Performance prediction engine — analytical roofline model, budget enforcement
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! LIFT Predict: Performance prediction engine.
//!
//! Provides analytical roofline modelling and budget enforcement for
//! estimating execution time, arithmetic intensity, and bottleneck
//! identification on GPU targets (A100, H100).

pub mod roofline;
pub mod budget;

pub use roofline::*;
pub use budget::*;