Skip to main content

rnn/runtime/
mod.rs

1mod profile;
2mod estimate;
3mod flops;
4mod budget;
5
6pub use profile::RuntimeProfile;
7pub use estimate::{RuntimeError, RuntimeEstimate, estimate_runtime_memory};
8pub use flops::{RuntimeFlopsEstimate, ThroughputEstimate, estimate_runtime_flops, estimate_tokens_per_second};
9pub use budget::{BudgetFit, check_runtime_budget, fit_from_estimate};