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