aprender-cbtop 0.31.1

Compute Block Top - Real-time load testing and hardware monitoring TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
//! SIMD load generator using trueno
//!
//! OPTIMIZED: Uses Trueno Vector SIMD operations for 3.5x+ speedup over scalar loops.
//! Benchmark: Scalar 4.45 GFLOP/s → SIMD 27.76 GFLOP/s (dot product)
//!
//! PERF-001: Cache-aware tiling for large problem sizes
//! - Uses sqrt(cache/3) heuristic from Volkov & Demmel 2008
//! - Prevents L3 cache overflow at large problem sizes
//! - Maintains performance at 4M+ elements

use crate::brick::{Brick, BrickAssertion, BrickBudget, BrickScore, BrickVerification, Scorable};
use crate::config::WorkloadType;
use crate::ring_buffer::RingBuffer;
use std::any::Any;
use std::time::Duration;
use trueno::Vector;

/// Default L2 cache size per core assumption (1 MB for modern CPUs)
/// Using L2 because it's faster and each core has dedicated L2
const DEFAULT_L2_CACHE_BYTES: usize = 1024 * 1024;

/// Default L3 cache size assumption (32 MB for modern desktop CPUs)
const DEFAULT_L3_CACHE_BYTES: usize = 32 * 1024 * 1024;

/// Calculate optimal tile size using Volkov & Demmel 2008 heuristic
/// For dot product: tile_size = cache / (2 * sizeof(f32)) since we only need A and B
/// We use L2 cache for lower latency
fn optimal_tile_size() -> usize {
    let cache_bytes = std::env::var("TRUENO_L2_CACHE_KB")
        .ok()
        .and_then(|s| s.parse::<usize>().ok())
        .map(|kb| kb * 1024)
        .unwrap_or(DEFAULT_L2_CACHE_BYTES);

    // Each f32 is 4 bytes, we need space for 2 arrays (A and B)
    // For dot product, result is scalar so doesn't count
    let tile_size = cache_bytes / (2 * std::mem::size_of::<f32>());

    // Round to multiple of 8 for AVX2 alignment, minimum 8192 elements
    // Larger minimum to reduce loop overhead
    ((tile_size / 8) * 8).max(8192)
}

/// Determine if tiling should be used based on problem size
/// OPT-016: Use tiling when data exceeds 100% of L3 cache
/// This ensures tiling kicks in before L3 thrashing occurs at the 4M element boundary
fn should_use_tiling(problem_size: usize) -> bool {
    let l3_cache = std::env::var("TRUENO_L3_CACHE_MB")
        .ok()
        .and_then(|s| s.parse::<usize>().ok())
        .map(|mb| mb * 1024 * 1024)
        .unwrap_or(DEFAULT_L3_CACHE_BYTES);

    // Data size for 3 arrays of f32 (2 inputs + 1 output)
    let data_size = problem_size * 3 * std::mem::size_of::<f32>();

    // OPT-016: Use tiling when data exceeds 100% of L3 cache
    // Previous 150% threshold (48MB for 32MB L3) caused the 4M element cliff:
    // - 4M elements = 48MB working set = exactly at threshold = no tiling
    // - But 48MB > 32MB L3, so cache thrashing occurs
    // - Result: 21.7 GFLOP/s (1.1% efficiency) vs 959.8 GFLOP/s at 1M
    // Fix: Lower to 100% so 4M elements triggers tiling
    data_size > l3_cache
}

pub struct SimdLoadBrick {
    workload: WorkloadType,
    intensity: f64,
    is_running: bool,
    problem_size: usize,
    /// Trueno SIMD vector A (pre-allocated)
    vec_a: Vector<f32>,
    /// Trueno SIMD vector B (pre-allocated)
    vec_b: Vector<f32>,
    /// Raw data for tiled operations (PERF-001)
    data_a: Vec<f32>,
    /// Raw data for tiled operations (PERF-001)
    data_b: Vec<f32>,
    /// Optimal tile size for cache-aware processing (PERF-001)
    tile_size: usize,
    /// Pre-allocated tile vectors to avoid allocation in hot path (PERF-001)
    tile_vectors: Vec<(Vector<f32>, Vector<f32>)>,
    /// OPT-006: Pre-allocated result vectors to avoid allocation in tiled ops
    tile_results: Vec<Vec<f32>>,
    /// Last computed result (for verification)
    last_result: f64,
    /// FLOP counter for throughput calculation
    flop_count: u64,
    latency_history: RingBuffer<f64>,
}

impl SimdLoadBrick {
    pub fn new(problem_size: usize) -> Self {
        // Pre-allocate vectors with deterministic data for reproducibility
        let input_a: Vec<f32> = (0..problem_size)
            .map(|i| (i % 1000) as f32 / 1000.0)
            .collect();
        let input_b: Vec<f32> = (0..problem_size)
            .map(|i| ((i + 500) % 1000) as f32 / 1000.0)
            .collect();

        // PERF-001: Calculate optimal tile size for cache-aware processing
        let tile_size = optimal_tile_size();

        // PERF-001: Pre-allocate tile vectors to avoid allocation in hot path
        let num_tiles = problem_size.div_ceil(tile_size);
        let tile_vectors: Vec<(Vector<f32>, Vector<f32>)> = (0..num_tiles)
            .map(|i| {
                let start = i * tile_size;
                let end = (start + tile_size).min(problem_size);
                (
                    Vector::from_slice(&input_a[start..end]),
                    Vector::from_slice(&input_b[start..end]),
                )
            })
            .collect();

        // OPT-006: Pre-allocate result vectors for tiled elementwise operations
        let tile_results: Vec<Vec<f32>> = (0..num_tiles)
            .map(|i| {
                let start = i * tile_size;
                let end = (start + tile_size).min(problem_size);
                vec![0.0f32; end - start]
            })
            .collect();

        Self {
            workload: WorkloadType::Gemm,
            intensity: 0.0,
            is_running: false,
            problem_size,
            vec_a: Vector::from_slice(&input_a),
            vec_b: Vector::from_slice(&input_b),
            data_a: input_a,
            data_b: input_b,
            tile_size,
            tile_vectors,
            tile_results,
            last_result: 0.0,
            flop_count: 0,
            latency_history: RingBuffer::new(100),
        }
    }

    pub fn start(&mut self) {
        self.is_running = true;
        self.flop_count = 0;
    }

    pub fn stop(&mut self) {
        self.is_running = false;
    }

    pub fn is_running(&self) -> bool {
        self.is_running
    }

    pub fn set_intensity(&mut self, intensity: f64) {
        self.intensity = intensity.clamp(0.0, 1.0);
    }

    pub fn intensity(&self) -> f64 {
        self.intensity
    }

    /// Set workload type for different compute patterns
    pub fn set_workload(&mut self, workload: WorkloadType) {
        self.workload = workload;
    }

    /// Run one iteration using REAL Trueno SIMD operations
    /// PERF-001: Uses cache-aware tiling for large problem sizes
    pub fn run_iteration(&mut self) -> Duration {
        let start = std::time::Instant::now();

        if !self.is_running || self.intensity == 0.0 {
            return Duration::ZERO;
        }

        // Scale iterations by intensity (1-10 iterations based on 0.0-1.0)
        let iterations = (self.intensity * 10.0).max(1.0) as usize;

        // PERF-001: Use tiled execution for large problem sizes that exceed L3 cache
        let use_tiling = should_use_tiling(self.problem_size) && !self.tile_vectors.is_empty();

        // Execute REAL SIMD workload based on type
        match self.workload {
            WorkloadType::Gemm | WorkloadType::All => {
                // Dot product: 2 FLOPs per element (mul + add)
                for _ in 0..iterations {
                    if use_tiling {
                        // PERF-001: Tiled dot product for cache efficiency
                        self.last_result = self.tiled_dot_product();
                    } else {
                        self.last_result = self.vec_a.dot(&self.vec_b).unwrap_or(0.0) as f64;
                    }
                }
                self.flop_count += (self.problem_size as u64 * 2) * iterations as u64;
            }
            WorkloadType::Elementwise => {
                // Element-wise mul: 1 FLOP per element
                for _ in 0..iterations {
                    if use_tiling {
                        // PERF-001: Tiled elementwise for cache efficiency
                        self.tiled_elementwise_mul();
                    } else {
                        // SAFETY: vec_a and vec_b are pre-allocated with matching sizes in new()
                        let result = self
                            .vec_a
                            .mul(&self.vec_b)
                            .expect("pre-allocated vectors have matching sizes");
                        std::hint::black_box(&result);
                    }
                }
                self.flop_count += (self.problem_size as u64) * iterations as u64;
            }
            WorkloadType::Reduction => {
                // Sum reduction: 1 FLOP per element
                for _ in 0..iterations {
                    if use_tiling {
                        // PERF-001: Tiled reduction for cache efficiency
                        self.last_result = self.tiled_sum();
                    } else {
                        self.last_result = self.vec_a.sum().unwrap_or(0.0) as f64;
                    }
                }
                self.flop_count += (self.problem_size as u64) * iterations as u64;
            }
            WorkloadType::Bandwidth => {
                // Memory bandwidth test: add operation
                for _ in 0..iterations {
                    if use_tiling {
                        // PERF-001: Tiled add for cache efficiency
                        self.tiled_elementwise_add();
                    } else {
                        // SAFETY: vec_a and vec_b are pre-allocated with matching sizes in new()
                        let result = self
                            .vec_a
                            .add(&self.vec_b)
                            .expect("pre-allocated vectors have matching sizes");
                        std::hint::black_box(&result);
                    }
                }
                self.flop_count += (self.problem_size as u64) * iterations as u64;
            }
            WorkloadType::Conv2d | WorkloadType::Attention => {
                // Conv2d and Attention: Default to dot product (simplified)
                for _ in 0..iterations {
                    if use_tiling {
                        self.last_result = self.tiled_dot_product();
                    } else {
                        self.last_result = self.vec_a.dot(&self.vec_b).unwrap_or(0.0) as f64;
                    }
                }
                self.flop_count += (self.problem_size as u64 * 2) * iterations as u64;
            }
        }

        let elapsed = start.elapsed();
        self.latency_history.push(elapsed.as_secs_f64() * 1000.0);
        elapsed
    }

    /// PERF-001: Tiled dot product for cache-aware processing
    /// Uses pre-allocated tile vectors to avoid allocation overhead
    fn tiled_dot_product(&self) -> f64 {
        let mut total = 0.0f64;
        for (tile_a, tile_b) in &self.tile_vectors {
            total += tile_a.dot(tile_b).unwrap_or(0.0) as f64;
        }
        total
    }

    /// PERF-001: Tiled sum reduction for cache-aware processing
    fn tiled_sum(&self) -> f64 {
        let mut total = 0.0f64;
        for (tile_a, _) in &self.tile_vectors {
            total += tile_a.sum().unwrap_or(0.0) as f64;
        }
        total
    }

    /// PERF-001: Tiled elementwise mul for cache-aware processing
    fn tiled_elementwise_mul(&self) {
        for (tile_a, tile_b) in &self.tile_vectors {
            // SAFETY: tile vectors are pre-allocated with matching sizes in new()
            let result = tile_a
                .mul(tile_b)
                .expect("pre-allocated tile vectors have matching sizes");
            std::hint::black_box(&result);
        }
    }

    /// PERF-001: Tiled elementwise add for cache-aware processing
    fn tiled_elementwise_add(&self) {
        for (tile_a, tile_b) in &self.tile_vectors {
            // SAFETY: tile vectors are pre-allocated with matching sizes in new()
            let result = tile_a
                .add(tile_b)
                .expect("pre-allocated tile vectors have matching sizes");
            std::hint::black_box(&result);
        }
    }

    /// Get GFLOP/s throughput based on actual FLOPs computed
    pub fn gflops(&self) -> f64 {
        let total_time_s: f64 = self.latency_history.iter().sum::<f64>() / 1000.0;
        if total_time_s > 0.0 {
            (self.flop_count as f64) / total_time_s / 1e9
        } else {
            0.0
        }
    }

    /// Get latency history as a slice (PERF-002: for consistent CV calculation)
    pub fn latency_history_slice(&self) -> Vec<f64> {
        self.latency_history.iter().cloned().collect()
    }

    pub fn throughput_ops_per_sec(&self) -> f64 {
        let avg_latency = self.latency_history.mean();
        if avg_latency > 0.0 {
            1000.0 / avg_latency
        } else {
            0.0
        }
    }

    /// Get last computed result (for verification)
    pub fn last_result(&self) -> f64 {
        self.last_result
    }

    /// Calculate Coefficient of Variation (CV) of latency history
    /// CV = (std_dev / mean) * 100 (as percentage)
    pub fn latency_cv(&self) -> f64 {
        let mean = self.latency_history.mean();
        if mean <= 0.0 || self.latency_history.len() < 2 {
            return 0.0;
        }

        let variance: f64 = self
            .latency_history
            .iter()
            .map(|x| (x - mean).powi(2))
            .sum::<f64>()
            / self.latency_history.len() as f64;

        let std_dev = variance.sqrt();
        (std_dev / mean) * 100.0
    }
}

impl Default for SimdLoadBrick {
    fn default() -> Self {
        Self::new(1_048_576)
    }
}

impl Brick for SimdLoadBrick {
    fn brick_name(&self) -> &'static str {
        "simd_load"
    }

    fn assertions(&self) -> Vec<BrickAssertion> {
        vec![
            BrickAssertion::custom("buffers_preallocated", |_| true),
            BrickAssertion::custom("intensity_in_range", |_| true),
            BrickAssertion::max_latency_ms(100),
        ]
    }

    fn budget(&self) -> BrickBudget {
        BrickBudget {
            collect_ms: 16,
            layout_ms: 0,
            render_ms: 0,
        }
    }

    fn verify(&self) -> BrickVerification {
        let mut v = BrickVerification::new();
        for assertion in self.assertions() {
            v.check(&assertion);
        }
        v
    }

    fn as_any(&self) -> &dyn Any {
        self
    }
}

/// Scorable implementation for SimdLoadBrick (§29.6)
///
/// Calculates quality score based on:
/// - Performance: GFLOP/s achieved vs theoretical AVX2 peak
/// - Efficiency: Backend utilization (SIMD vs scalar)
/// - Correctness: All assertions passing
/// - Stability: Coefficient of Variation of latency
impl Scorable for SimdLoadBrick {
    fn score(&self) -> BrickScore {
        // Performance: GFLOP/s vs theoretical peak
        // AVX2 theoretical: ~100 GFLOP/s for FMA on modern CPUs (8 FLOPs/cycle * 4GHz / 2 for f32)
        let theoretical_gflops = 100.0;
        let actual_gflops = self.gflops();
        let perf_score = BrickScore::score_performance(actual_gflops, theoretical_gflops);

        // Efficiency: SIMD speedup vs scalar baseline
        // Measured speedups (2026-01-11, TR 7960X):
        // - GEMM/Reduction (dot product): 6.0x
        // - Elementwise (add/mul): 4.0x (AVX2 8-wide vs scalar)
        // - Bandwidth (memory-bound): 3.0x (limited by memory BW)
        // - Conv2d/Attention: 4.0x (average)
        // PERF-004: Updated from hardcoded 1.7x to measured values
        let speedup = match self.workload {
            WorkloadType::Gemm | WorkloadType::Reduction => 6.0, // dot product (unchanged)
            WorkloadType::Elementwise => 4.0,                    // was 1.7x, measured ~4x
            WorkloadType::Bandwidth => 3.0,                      // memory-bound, was 1.7x
            WorkloadType::Conv2d | WorkloadType::Attention | WorkloadType::All => 4.0, // average
        };
        let speedup_score = BrickScore::score_speedup(speedup);
        // Backend efficiency: 10 pts for using SIMD, plus speedup score (max 25)
        let efficiency_score = (10 + speedup_score).min(25);

        // Correctness: All assertions passing
        let verification = self.verify();
        let correctness_score = if verification.is_valid() {
            20
        } else {
            (verification.score() * 20.0) as u8
        };

        // Stability: CV of latency history
        let cv = self.latency_cv();
        let stability_score = BrickScore::score_cv(cv);
        // Add reproducibility bonus (3 pts) and outlier bonus (4 pts) for low CV
        let stability_total = if cv < 5.0 {
            stability_score + 7 // 8 + 7 = 15 max
        } else if cv < 10.0 {
            stability_score + 3 // 4 + 3 = 7
        } else {
            stability_score
        }
        .min(15);

        BrickScore::new(
            perf_score,
            efficiency_score,
            correctness_score,
            stability_total,
        )
    }
}