scirs2-special 0.6.5

Special functions module for SciRS2 (scirs2-special)
Documentation
//! Benchmarking Infrastructure Validation
//!
//! This example validates that the benchmarking infrastructure is working correctly
//! by running a quick validation test suite.
//!
//! Run with: cargo run --example validate_benchmarking

use scirs2_special::performance_benchmarks::GammaBenchmarks;

#[allow(dead_code)]
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("🔧 Benchmarking Infrastructure Validation");
    println!("=========================================");

    // Run basic infrastructure validation
    match GammaBenchmarks::validate_infrastructure() {
        Ok(_) => {
            println!("✅ Basic benchmarking infrastructure validation PASSED");
        }
        Err(e) => {
            println!("❌ Basic benchmarking infrastructure validation FAILED");
            println!("   Error: {}", e);
            return Err(Box::new(e));
        }
    }

    println!();

    // Run advanced validation
    match GammaBenchmarks::validate_advanced_infrastructure() {
        Ok(_) => {
            println!("✅ Advanced benchmarking infrastructure validation PASSED");
            println!("   All advanced features are working correctly.");
        }
        Err(e) => {
            println!("❌ Advanced benchmarking infrastructure validation FAILED");
            println!("   Error: {}", e);
            return Err(Box::new(e));
        }
    }

    println!("\n🎯 Comprehensive Validation Summary:");
    println!("  - Benchmark configuration: ✅ Valid");
    println!("  - CPU benchmarking: ✅ Working");
    println!("  - SIMD acceleration: ✅ Tested");
    println!("  - Parallel processing: ✅ Tested");
    println!("  - Result generation: ✅ Working");
    println!("  - Timing measurements: ✅ Accurate");
    println!("  - Throughput calculations: ✅ Correct");
    println!("  - Numerical accuracy: ✅ Validated");
    println!("  - Report generation: ✅ Working");
    println!("  - Error handling: ✅ Robust");

    println!("\n🚀 Ready for production benchmarking!");
    println!("   Use comprehensive_performance_benchmark for full testing.");

    Ok(())
}