native_neural_network 0.1.6

Lib no_std Rust for native neural network (.rnn)
Documentation
1
2
3
4
5
6
7
8
9
mod profile;
mod estimate;
mod flops;
mod budget;

pub use profile::RuntimeProfile;
pub use estimate::{RuntimeError, RuntimeEstimate, estimate_runtime_memory};
pub use flops::{RuntimeFlopsEstimate, ThroughputEstimate, estimate_runtime_flops, estimate_tokens_per_second};
pub use budget::{BudgetFit, check_runtime_budget, fit_from_estimate};