gglib_core/domain/benchmark/
mod.rs1#![doc = include_str!("README.md")]
2
3pub mod compare;
4pub mod events;
5pub mod perf;
6pub mod run;
7pub mod summary;
8pub mod tune;
9
10pub use compare::{CompareConfig, ModelCompareResult};
11pub use events::{BenchmarkEvent, BenchmarkModelResult};
12pub use perf::{ModelPerfResult, PerfConfig};
13pub use run::{BenchmarkRun, BenchmarkRunStatus, BenchmarkRunType};
14pub use summary::ModelBenchmarkSummary;
15pub use tune::{
16 CandidateSource, ScoreWeights, SweepSpec, TaskCategory, TaskSuite, TuneCandidateResult,
17 TuneConfig, TuneTask, TuneTaskResult,
18};