lift-sim 0.3.0

LIFT-SIM: Static analysis engine — shape propagation, FLOP counting, memory analysis, noise simulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! LIFT Sim: Static analysis and cost modelling engine.
//!
//! Provides FLOP counting, memory analysis, noise simulation, roofline cost
//! models (A100/H100), quantum cost models (superconducting, trapped-ion,
//! neutral-atom), energy/carbon estimation, and reactive budget tracking.

pub mod analysis;
pub mod cost;
pub mod quantum_sim;

pub use analysis::*;
pub use cost::*;
pub use quantum_sim::*;