1//! Hardware acceleration detection and optimization 2 3pub mod cpu; 4pub mod simd; 5 6pub use cpu::CpuCapabilities; 7pub use simd::SimdOptimizer;