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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
//! # Adaptive SIMD Selector
//!
//! Runtime dynamic SIMD selection based on hardware capabilities, data characteristics,
//! and continuous performance monitoring.
use std::collections::HashMap;
use std::sync::{Arc, OnceLock, RwLock};
use std::time::{Duration, Instant};
use crate::system::cpu_features::{CpuFeatures, get_cpu_features};
use super::{Operation, BenchmarkResults, PerformanceHistory};
/// SIMD implementation tier matching zipora's 6-tier framework
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum SimdTier {
/// Tier 0: Scalar fallback
Tier0Scalar = 0,
/// Tier 1: ARM NEON
Tier1Neon = 1,
/// Tier 2: x86 POPCNT
Tier2Popcnt = 2,
/// Tier 3: x86 BMI2 (PDEP/PEXT)
Tier3Bmi2 = 3,
/// Tier 4: x86 AVX2
Tier4Avx2 = 4,
/// Tier 5: x86 AVX-512
Tier5Avx512 = 5,
}
impl SimdTier {
/// Detect SIMD tier from CPU features
pub fn from_features(features: &CpuFeatures) -> Self {
if features.has_avx512f && features.has_avx512vl && features.has_avx512bw {
SimdTier::Tier5Avx512
} else if features.has_avx2 {
SimdTier::Tier4Avx2
} else if features.has_bmi2 {
SimdTier::Tier3Bmi2
} else if features.has_popcnt {
SimdTier::Tier2Popcnt
} else if features.has_neon {
SimdTier::Tier1Neon
} else {
SimdTier::Tier0Scalar
}
}
}
/// Specific SIMD implementation type
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum SimdImpl {
/// Scalar fallback (lowest)
Scalar = 0,
/// ARM NEON implementation
Neon = 1,
/// SSE2 implementation
Sse2 = 2,
/// BMI2 implementation (PDEP/PEXT)
Bmi2 = 3,
/// SSE4.2 implementation
Sse42 = 4,
/// AVX2 implementation
Avx2 = 5,
/// AVX-512 implementation (highest)
Avx512 = 6,
}
/// Key for caching selection decisions
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct SelectionKey {
pub operation: Operation,
pub size_bucket: usize, // Bucketed size for cache efficiency
pub density_bucket: u8, // Bucketed density (0-255)
}
impl SelectionKey {
/// Create new selection key with bucketing for cache efficiency
pub fn new(operation: Operation, data_size: usize, data_density: Option<f64>) -> Self {
// Bucket sizes: <64, 64-256, 256-1024, 1024-4096, >4096
let size_bucket = match data_size {
0..=63 => 0,
64..=255 => 1,
256..=1023 => 2,
1024..=4095 => 3,
_ => 4,
};
// Bucket density to 0-255 range
let density_bucket = data_density
.map(|d| (d * 255.0).clamp(0.0, 255.0) as u8)
.unwrap_or(128); // Default to medium density
SelectionKey {
operation,
size_bucket,
density_bucket,
}
}
}
/// Configuration for adaptive selector
#[derive(Debug, Clone)]
pub struct AdaptiveSelectorConfig {
/// Enable micro-benchmarking at startup
pub enable_startup_benchmarks: bool,
/// Enable continuous performance monitoring
pub enable_monitoring: bool,
/// Enable adaptive threshold adjustment
pub enable_adaptation: bool,
/// Warmup iterations for benchmarks
pub warmup_iterations: usize,
/// Measurement iterations for benchmarks
pub measurement_iterations: usize,
/// Performance degradation threshold (0.9 = 90%)
pub performance_threshold: f64,
/// Operations before re-benchmarking
pub degradation_trigger_count: u32,
/// Maximum cache entries
pub max_cache_entries: usize,
}
impl Default for AdaptiveSelectorConfig {
fn default() -> Self {
AdaptiveSelectorConfig {
enable_startup_benchmarks: true,
enable_monitoring: true,
enable_adaptation: true,
warmup_iterations: 10,
measurement_iterations: 100,
performance_threshold: 0.9,
degradation_trigger_count: 1000,
max_cache_entries: 1024,
}
}
}
/// Data characteristic thresholds for SIMD selection
#[derive(Debug, Clone)]
pub struct SelectionThresholds {
/// Minimum size for AVX-512 (default: 1024)
pub avx512_min_size: usize,
/// Minimum size for AVX2 (default: 256)
pub avx2_min_size: usize,
/// Minimum size for BMI2 (default: 64)
pub bmi2_min_size: usize,
/// Minimum size for SSE2 (default: 16)
pub sse2_min_size: usize,
/// Sparse data threshold (default: 0.1)
pub sparse_threshold: f64,
/// Dense data threshold (default: 0.5)
pub dense_threshold: f64,
/// Performance degradation threshold (default: 0.9 = 90%)
pub performance_threshold: f64,
}
impl Default for SelectionThresholds {
fn default() -> Self {
SelectionThresholds {
avx512_min_size: 1024,
avx2_min_size: 256,
bmi2_min_size: 64,
sse2_min_size: 16,
sparse_threshold: 0.1,
dense_threshold: 0.5,
performance_threshold: 0.9,
}
}
}
/// Adaptive SIMD selector with runtime benchmarking and performance monitoring
pub struct AdaptiveSimdSelector {
/// Detected hardware tier
hardware_tier: SimdTier,
/// Cached CPU features (reference to static)
cpu_features: &'static CpuFeatures,
/// Performance benchmarks per operation type
operation_benchmarks: Arc<RwLock<HashMap<Operation, BenchmarkResults>>>,
/// Historical performance data
performance_history: Arc<RwLock<HashMap<Operation, PerformanceHistory>>>,
/// Selection thresholds
thresholds: SelectionThresholds,
/// Configuration
config: AdaptiveSelectorConfig,
/// Cached selection decisions (lock-free concurrent access)
selection_cache: Arc<RwLock<HashMap<SelectionKey, SimdImpl>>>,
}
impl AdaptiveSimdSelector {
/// Create new adaptive SIMD selector with hardware detection
pub fn new() -> Self {
let cpu_features = get_cpu_features();
let hardware_tier = SimdTier::from_features(cpu_features);
AdaptiveSimdSelector {
hardware_tier,
cpu_features,
operation_benchmarks: Arc::new(RwLock::new(HashMap::new())),
performance_history: Arc::new(RwLock::new(HashMap::new())),
thresholds: SelectionThresholds::default(),
config: AdaptiveSelectorConfig::default(),
selection_cache: Arc::new(RwLock::new(HashMap::new())),
}
}
/// Create with custom configuration
pub fn with_config(config: AdaptiveSelectorConfig) -> Self {
let mut selector = Self::new();
selector.config = config;
selector
}
/// Get global singleton instance
pub fn global() -> &'static AdaptiveSimdSelector {
static GLOBAL_SELECTOR: OnceLock<AdaptiveSimdSelector> = OnceLock::new();
GLOBAL_SELECTOR.get_or_init(|| {
let mut selector = AdaptiveSimdSelector::new();
// Run initial benchmarks if enabled
if selector.config.enable_startup_benchmarks {
selector.run_initial_benchmarks();
}
selector
})
}
/// Select optimal SIMD implementation for given operation and data characteristics
pub fn select_optimal_impl(
&self,
operation: Operation,
data_size: usize,
data_density: Option<f64>,
) -> SimdImpl {
// Check cache first
let key = SelectionKey::new(operation, data_size, data_density);
if let Some(&impl_type) = self.selection_cache.read().expect("selection_cache lock").get(&key) {
return impl_type;
}
// Perform selection
let selected = self.select_impl_internal(operation, data_size, data_density);
// Cache the result
let mut cache = self.selection_cache.write().expect("selection_cache lock");
if cache.len() >= self.config.max_cache_entries {
// Simple eviction: remove an arbitrary entry
if let Some(&first_key) = cache.keys().next() {
cache.remove(&first_key);
}
}
cache.insert(key, selected);
selected
}
/// Internal selection logic based on hardware tier and data characteristics
fn select_impl_internal(
&self,
_operation: Operation,
data_size: usize,
data_density: Option<f64>,
) -> SimdImpl {
// Adjust thresholds based on data density
let (avx512_min, avx2_min, bmi2_min, sse2_min) = if let Some(density) = data_density {
if density < self.thresholds.sparse_threshold {
// Sparse data: higher thresholds (less SIMD benefit)
(
self.thresholds.avx512_min_size * 2,
self.thresholds.avx2_min_size * 2,
self.thresholds.bmi2_min_size * 2,
self.thresholds.sse2_min_size * 2,
)
} else if density > self.thresholds.dense_threshold {
// Dense data: lower thresholds (more SIMD benefit)
(
self.thresholds.avx512_min_size / 2,
self.thresholds.avx2_min_size / 2,
self.thresholds.bmi2_min_size / 2,
self.thresholds.sse2_min_size / 2,
)
} else {
// Medium density: default thresholds
(
self.thresholds.avx512_min_size,
self.thresholds.avx2_min_size,
self.thresholds.bmi2_min_size,
self.thresholds.sse2_min_size,
)
}
} else {
(
self.thresholds.avx512_min_size,
self.thresholds.avx2_min_size,
self.thresholds.bmi2_min_size,
self.thresholds.sse2_min_size,
)
};
// Select based on hardware tier and data size
match (self.hardware_tier, data_size) {
// AVX-512 tier (Tier 5)
(SimdTier::Tier5Avx512, size) if size >= avx512_min => SimdImpl::Avx512,
// AVX2 tier (Tier 4)
(SimdTier::Tier4Avx2 | SimdTier::Tier5Avx512, size) if size >= avx2_min => {
SimdImpl::Avx2
}
// BMI2 tier (Tier 3)
(
SimdTier::Tier3Bmi2 | SimdTier::Tier4Avx2 | SimdTier::Tier5Avx512,
size,
) if size >= bmi2_min => SimdImpl::Bmi2,
// SSE2 tier (Tier 2)
(tier, size) if tier >= SimdTier::Tier2Popcnt && size >= sse2_min => {
SimdImpl::Sse2
}
// NEON tier (Tier 1 - ARM)
(SimdTier::Tier1Neon, size) if size >= 64 => SimdImpl::Neon,
// Scalar fallback (Tier 0)
_ => SimdImpl::Scalar,
}
}
/// Monitor performance and update history
pub fn monitor_performance(&self, operation: Operation, duration: Duration, ops: u64) {
if !self.config.enable_monitoring {
return;
}
if let Ok(mut history_map) = self.performance_history.write() {
let history = history_map
.entry(operation)
.or_insert_with(PerformanceHistory::new);
history.record_sample(duration, ops);
// Check for performance degradation
if self.config.enable_adaptation {
if let Ok(benchmarks) = self.operation_benchmarks.read() {
if let Some(benchmark) = benchmarks.get(&operation) {
if history.check_performance_degradation(benchmark.throughput,
self.config.degradation_trigger_count) {
// Clear cache for this operation to force re-evaluation
drop(benchmarks); // Release read lock before write
self.clear_operation_cache(operation);
}
}
}
}
}
}
/// Clear cache entries for a specific operation
fn clear_operation_cache(&self, operation: Operation) {
self.selection_cache.write().expect("selection_cache lock")
.retain(|k, _| k.operation != operation);
}
/// Run initial benchmarks for common operations
fn run_initial_benchmarks(&mut self) {
use crate::simd::benchmarks::MicroBenchmark;
use std::hint::black_box;
let benchmark = MicroBenchmark::new(
self.config.warmup_iterations,
self.config.measurement_iterations,
);
// Test data sizes (bytes): small, medium, large
let test_sizes = [64, 256, 1024, 4096, 16384];
let operations = [
Operation::Popcount,
Operation::Rank,
Operation::Select,
Operation::Search,
Operation::Sort,
];
if let Ok(mut benchmarks) = self.operation_benchmarks.write() {
for &op in &operations {
// Benchmark across different sizes and take median
let mut all_latencies = Vec::new();
for &size in &test_sizes {
// Generate test data with realistic patterns
let test_data = self.generate_test_data(size, op);
// Run operation-specific benchmark
let results = match op {
Operation::Popcount => {
benchmark.run_with_data(
|| test_data.clone(),
|data| {
// Popcount benchmark - count set bits
let mut count = 0u64;
for &byte in data {
count += byte.count_ones() as u64;
}
black_box(count);
}
)
},
Operation::Rank | Operation::Select => {
benchmark.run_with_data(
|| test_data.clone(),
|data| {
// Rank/Select benchmark - simulate bit scanning
let mut result = 0usize;
for (i, &byte) in data.iter().enumerate() {
if byte.count_ones() > 0 {
result ^= i;
}
}
black_box(result);
}
)
},
Operation::Search => {
benchmark.run_with_data(
|| test_data.clone(),
|data| {
// Search benchmark - find byte pattern
let needle = 0x42u8;
let mut positions = Vec::new();
for (i, &byte) in data.iter().enumerate() {
if byte == needle {
positions.push(i);
}
}
black_box(positions);
}
)
},
Operation::Sort => {
benchmark.run_with_data(
|| test_data.clone(),
|data| {
// Sort benchmark - radix sort simulation
let mut data_copy = data.to_vec();
data_copy.sort_unstable();
black_box(data_copy);
}
)
},
_ => {
// Default benchmark for other operations
benchmark.run_with_data(
|| test_data.clone(),
|data| {
let sum = data.iter().fold(0u64, |acc, &x| acc + x as u64);
black_box(sum);
}
)
}
};
all_latencies.push(results.median_latency);
}
// Calculate aggregate results across all sizes
all_latencies.sort();
let median_latency = all_latencies[all_latencies.len() / 2];
let p95_latency = all_latencies[(all_latencies.len() * 95) / 100];
let p99_latency = all_latencies[(all_latencies.len() * 99) / 100];
// Estimate throughput based on median latency
let throughput = if median_latency.as_nanos() > 0 {
1_000_000_000.0 / median_latency.as_nanos() as f64
} else {
1_000_000.0 // Default 1M ops/sec
};
let final_results = BenchmarkResults::new(
median_latency,
p95_latency,
p99_latency,
throughput,
all_latencies.len(),
);
benchmarks.insert(op, final_results);
}
}
}
/// Generate test data for benchmarking with realistic patterns
fn generate_test_data(&self, size: usize, op: Operation) -> Vec<u8> {
use std::collections::hash_map::RandomState;
use std::hash::{BuildHasher, Hash, Hasher};
let mut data = vec![0u8; size];
let hasher = RandomState::new();
match op {
Operation::Popcount | Operation::Rank | Operation::Select => {
// Sparse data pattern (10-30% density)
for i in 0..size {
let mut h = hasher.build_hasher();
i.hash(&mut h);
let hash = h.finish();
if hash % 100 < 20 {
data[i] = (hash & 0xFF) as u8;
}
}
},
Operation::Search => {
// Random data with occasional needle values
for i in 0..size {
let mut h = hasher.build_hasher();
i.hash(&mut h);
let hash = h.finish();
data[i] = if hash % 100 < 5 {
0x42 // Needle value
} else {
(hash & 0xFF) as u8
};
}
},
Operation::Sort => {
// Random data for sorting
for i in 0..size {
let mut h = hasher.build_hasher();
i.hash(&mut h);
data[i] = (h.finish() & 0xFF) as u8;
}
},
_ => {
// Default: sequential pattern
for i in 0..size {
data[i] = (i & 0xFF) as u8;
}
}
}
data
}
/// Get hardware tier
pub fn hardware_tier(&self) -> SimdTier {
self.hardware_tier
}
/// Get CPU features
pub fn cpu_features(&self) -> &CpuFeatures {
&self.cpu_features
}
/// Get current thresholds
pub fn thresholds(&self) -> &SelectionThresholds {
&self.thresholds
}
/// Update thresholds (for testing/tuning)
pub fn set_thresholds(&mut self, thresholds: SelectionThresholds) {
self.thresholds = thresholds;
// Clear cache when thresholds change
self.selection_cache.write().expect("selection_cache lock").clear();
}
}
impl Default for AdaptiveSimdSelector {
fn default() -> Self {
Self::new()
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_selector_creation() {
let selector = AdaptiveSimdSelector::new();
assert!(selector.hardware_tier >= SimdTier::Tier0Scalar);
assert!(selector.hardware_tier <= SimdTier::Tier5Avx512);
}
#[test]
fn test_simd_tier_ordering() {
assert!(SimdTier::Tier0Scalar < SimdTier::Tier1Neon);
assert!(SimdTier::Tier1Neon < SimdTier::Tier2Popcnt);
assert!(SimdTier::Tier2Popcnt < SimdTier::Tier3Bmi2);
assert!(SimdTier::Tier3Bmi2 < SimdTier::Tier4Avx2);
assert!(SimdTier::Tier4Avx2 < SimdTier::Tier5Avx512);
}
#[test]
fn test_size_based_selection() {
let selector = AdaptiveSimdSelector::new();
// Very small data should use scalar (smaller than minimum thresholds)
let impl_small = selector.select_optimal_impl(Operation::Rank, 8, None);
// Note: On systems with POPCNT/SSE2, even small data might use SIMD if above threshold
// Just verify we got a valid implementation
assert!(matches!(impl_small, SimdImpl::Scalar | SimdImpl::Sse2));
// Large data might use SIMD (depending on hardware)
let impl_large = selector.select_optimal_impl(Operation::Rank, 4096, None);
if selector.hardware_tier >= SimdTier::Tier4Avx2 {
// On AVX2+ hardware, large data should use SIMD
assert!(impl_large != SimdImpl::Scalar);
}
}
#[test]
fn test_density_based_selection() {
let selector = AdaptiveSimdSelector::new();
// Sparse data
let impl_sparse = selector.select_optimal_impl(Operation::Rank, 512, Some(0.05));
// Dense data
let impl_dense = selector.select_optimal_impl(Operation::Rank, 512, Some(0.8));
// Dense data should be more likely to use SIMD
if selector.hardware_tier >= SimdTier::Tier3Bmi2 {
assert!(impl_dense != SimdImpl::Scalar);
}
// Results may differ based on density
println!("Sparse impl: {:?}, Dense impl: {:?}", impl_sparse, impl_dense);
}
#[test]
fn test_selection_caching() {
let selector = AdaptiveSimdSelector::new();
// First call
let impl1 = selector.select_optimal_impl(Operation::Rank, 1024, None);
// Second call with same parameters (should hit cache)
let impl2 = selector.select_optimal_impl(Operation::Rank, 1024, None);
assert_eq!(impl1, impl2);
}
#[test]
fn test_selection_key_bucketing() {
let key1 = SelectionKey::new(Operation::Rank, 100, Some(0.5));
let key2 = SelectionKey::new(Operation::Rank, 150, Some(0.51));
// Should have same size bucket (64-255)
assert_eq!(key1.size_bucket, key2.size_bucket);
// Density might differ slightly due to bucketing
assert!((key1.density_bucket as i16 - key2.density_bucket as i16).abs() <= 3);
}
#[test]
fn test_performance_monitoring() {
let selector = AdaptiveSimdSelector::new();
// Monitor some operations
selector.monitor_performance(Operation::Rank, Duration::from_micros(100), 1000);
selector.monitor_performance(Operation::Select, Duration::from_micros(150), 500);
// Verify history was recorded
if let Ok(history) = selector.performance_history.read() {
assert!(history.contains_key(&Operation::Rank));
assert!(history.contains_key(&Operation::Select));
}
}
#[test]
fn test_global_singleton() {
let selector1 = AdaptiveSimdSelector::global();
let selector2 = AdaptiveSimdSelector::global();
// Should be same instance
assert!(std::ptr::eq(selector1, selector2));
}
#[test]
fn test_custom_thresholds() {
let mut selector = AdaptiveSimdSelector::new();
let custom_thresholds = SelectionThresholds {
avx512_min_size: 2048,
avx2_min_size: 512,
bmi2_min_size: 128,
sse2_min_size: 32,
sparse_threshold: 0.05,
dense_threshold: 0.7,
performance_threshold: 0.85,
};
selector.set_thresholds(custom_thresholds);
assert_eq!(selector.thresholds().avx512_min_size, 2048);
assert_eq!(selector.thresholds().avx2_min_size, 512);
}
#[test]
fn test_micro_benchmarking_framework() {
// Create selector with benchmarking enabled
let config = AdaptiveSelectorConfig {
enable_startup_benchmarks: true,
enable_monitoring: true,
enable_adaptation: true,
warmup_iterations: 5,
measurement_iterations: 10,
performance_threshold: 0.9,
degradation_trigger_count: 100,
max_cache_entries: 512,
};
let mut selector = AdaptiveSimdSelector::with_config(config);
// Run benchmarks
selector.run_initial_benchmarks();
// Verify benchmarks were recorded
if let Ok(benchmarks) = selector.operation_benchmarks.read() {
// Should have benchmarks for key operations
assert!(benchmarks.contains_key(&Operation::Popcount));
assert!(benchmarks.contains_key(&Operation::Rank));
assert!(benchmarks.contains_key(&Operation::Select));
assert!(benchmarks.contains_key(&Operation::Search));
assert!(benchmarks.contains_key(&Operation::Sort));
// Verify benchmark results are valid
for (op, results) in benchmarks.iter() {
assert!(results.samples > 0, "Operation {:?} should have samples", op);
assert!(results.throughput > 0.0, "Operation {:?} should have positive throughput", op);
assert!(results.median_latency > Duration::ZERO, "Operation {:?} should have positive latency", op);
assert!(results.p95_latency >= results.median_latency, "Operation {:?} p95 should be >= median", op);
assert!(results.p99_latency >= results.p95_latency, "Operation {:?} p99 should be >= p95", op);
}
} else {
panic!("Failed to read benchmarks");
}
}
#[test]
fn test_test_data_generation() {
let selector = AdaptiveSimdSelector::new();
// Test different data patterns
let popcount_data = selector.generate_test_data(1024, Operation::Popcount);
assert_eq!(popcount_data.len(), 1024);
let search_data = selector.generate_test_data(512, Operation::Search);
assert_eq!(search_data.len(), 512);
// Should have some needle values (0x42)
assert!(search_data.iter().any(|&b| b == 0x42));
let sort_data = selector.generate_test_data(256, Operation::Sort);
assert_eq!(sort_data.len(), 256);
// Default pattern
let default_data = selector.generate_test_data(128, Operation::Compress);
assert_eq!(default_data.len(), 128);
}
#[test]
fn test_benchmark_results_persistence() {
let mut selector = AdaptiveSimdSelector::new();
selector.run_initial_benchmarks();
// Verify results persist
if let Ok(benchmarks) = selector.operation_benchmarks.read() {
let popcount_results = benchmarks.get(&Operation::Popcount);
assert!(popcount_results.is_some());
// Results should not be stale immediately
if let Some(results) = popcount_results {
assert!(!results.is_stale(Duration::from_secs(60)));
}
}
}
}