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
# Criterion.rs configuration for reproducible benchmarks
[benchmark]
# Number of samples to collect
sample_size = 100
# Warmup time in seconds
warm_up_time_s = 3.0
# Measurement time in seconds
measurement_time_s = 5.0
# Confidence level for statistical analysis
confidence_level = 0.95
# Significance level for detecting changes
significance_level = 0.05
# Noise threshold (changes smaller than this are ignored)
noise_threshold = 0.01
# Number of resamples for bootstrap analysis
nresamples = 100000
[output]
# Save baseline for comparison
save_baseline = "main"
# Generate HTML reports
html_reports = true
# Generate JSON output
json_output = true
[plotting]
# Enable plotting
enabled = true
# Plot backend
backend = "plotters"