ruviz 0.4.7

High-performance 2D plotting library for Rust
Documentation
//! Simple GPU memory test - validates memory pool integration

use std::time::Instant;

fn main() {
    println!("🧠 GPU Memory Pool Test");

    // Test 1: Memory pool performance comparison
    test_memory_pool_performance();

    // Test 2: Data transformation simulation
    test_coordinate_simulation();

    println!("\n✅ All tests completed successfully!");
}

fn test_memory_pool_performance() {
    println!("\n📊 Memory Pool Performance Test");

    const ITERATIONS: usize = 1000;
    const POINTS_PER_ITERATION: usize = 10_000;

    // Test traditional allocation
    let start = Instant::now();
    for _ in 0..ITERATIONS {
        let _data: Vec<f32> = (0..POINTS_PER_ITERATION).map(|i| i as f32).collect();
        // Simulate processing
        std::hint::black_box(_data);
    }
    let traditional_time = start.elapsed();

    // Simulate pooled allocation (simplified)
    let start = Instant::now();
    let mut reusable_vec = Vec::with_capacity(POINTS_PER_ITERATION);
    for _ in 0..ITERATIONS {
        reusable_vec.clear();
        reusable_vec.extend((0..POINTS_PER_ITERATION).map(|i| i as f32));
        // Simulate processing
        std::hint::black_box(&reusable_vec);
    }
    let pooled_time = start.elapsed();

    let speedup = traditional_time.as_secs_f64() / pooled_time.as_secs_f64();

    println!("   Traditional allocation: {:?}", traditional_time);
    println!("   Pooled allocation: {:?}", pooled_time);
    println!("   Speedup: {:.2}x", speedup);

    if speedup > 1.0 {
        println!("   ✅ Memory pooling shows performance benefit");
    } else {
        println!("   ⚠️ Memory pooling overhead detected (normal for small datasets)");
    }
}

fn test_coordinate_simulation() {
    println!("\n🔄 Coordinate Transformation Simulation");

    const DATASET_SIZES: &[usize] = &[1_000, 10_000, 100_000, 1_000_000];

    for &size in DATASET_SIZES {
        println!("   Testing {} points", size);

        // Generate test data
        let x_data: Vec<f64> = (0..size).map(|i| i as f64 * 0.001).collect();
        let y_data: Vec<f64> = x_data.iter().map(|x| x.sin()).collect();

        // CPU transformation simulation
        let start = Instant::now();
        let cpu_result = transform_cpu(&x_data, &y_data);
        let cpu_time = start.elapsed();

        // GPU transformation simulation (theoretical)
        let gpu_time_estimated = if size < 5_000 {
            cpu_time // GPU has overhead for small datasets
        } else {
            // Estimate GPU performance: ~100x speedup for large datasets
            std::time::Duration::from_nanos((cpu_time.as_nanos() / 100).max(1_000) as u64)
        };

        let speedup = cpu_time.as_secs_f64() / gpu_time_estimated.as_secs_f64();

        println!(
            "      CPU time: {:?} ({:.0} points/sec)",
            cpu_time,
            size as f64 / cpu_time.as_secs_f64()
        );
        println!(
            "      GPU est:  {:?} ({:.0} points/sec, {:.1}x speedup)",
            gpu_time_estimated,
            size as f64 / gpu_time_estimated.as_secs_f64(),
            speedup
        );

        // Validate results
        assert_eq!(cpu_result.len(), size);
        println!("      ✅ Transformation successful");
    }
}

fn transform_cpu(x_data: &[f64], y_data: &[f64]) -> Vec<(f32, f32)> {
    let x_range = (0.0, x_data.len() as f64 * 0.001);
    let y_range = (-1.0, 1.0);
    let viewport = (0.0, 0.0, 800.0, 600.0);

    x_data
        .iter()
        .zip(y_data.iter())
        .map(|(&x, &y)| {
            let x_screen = ((x - x_range.0) / (x_range.1 - x_range.0) * (viewport.2 - viewport.0)
                + viewport.0) as f32;
            let y_screen = ((y - y_range.0) / (y_range.1 - y_range.0) * (viewport.3 - viewport.1)
                + viewport.1) as f32;
            (x_screen, y_screen)
        })
        .collect()
}