lift-predict 0.4.1

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 budget;
pub mod roofline;

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