optirs_core/benchmarking/
mod.rs

1// Benchmarking and performance testing module
2//
3// This module provides comprehensive benchmarking capabilities for optimization
4// algorithms across different platforms and hardware targets.
5
6#[cfg(feature = "cross-platform-testing")]
7pub mod cross_platform_tester;
8
9// Re-export key types
10#[cfg(feature = "cross-platform-testing")]
11pub use cross_platform_tester::{
12    CrossPlatformTester, PerformanceBaseline, PlatformTarget, TestConfiguration,
13};