runtime/benchmark/mod.rs
1//! Benchmark comparison module for UniLLM vs llama.cpp
2//!
3//! This module provides infrastructure for comparing inference performance
4//! between UniLLM and llama.cpp using the same GGUF model files.
5
6mod metrics;
7mod runner;
8mod unillm_backend;
9
10#[cfg(feature = "benchmark")]
11mod llama_cpp_backend;
12
13pub use metrics::*;
14pub use runner::*;
15pub use unillm_backend::*;
16
17#[cfg(feature = "benchmark")]
18pub use llama_cpp_backend::*;