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
use commonware_coding::{Config, Scheme};
use commonware_parallel::{Rayon, Sequential};
use commonware_utils::{NZUsize, NZU16};
use criterion::{criterion_main, BatchSize, Criterion};
use rand::{RngCore, SeedableRng as _};
use rand_chacha::ChaCha8Rng;
use shard_selection::SELECTIONS;
mod reed_solomon;
mod shard_selection;
mod zoda;
pub(crate) fn bench_encode_generic<S: Scheme>(name: &str, c: &mut Criterion) {
let mut rng = ChaCha8Rng::seed_from_u64(0);
let cases = [20, 22, 23].map(|i| 2usize.pow(i));
for data_length in cases.into_iter() {
for chunks in [10u16, 25, 50, 100, 250] {
for conc in [1, 8] {
let min = chunks / 3;
let config = Config {
minimum_shards: NZU16!(min),
extra_shards: NZU16!(chunks - min),
};
let strategy = Rayon::new(NZUsize!(conc)).unwrap();
c.bench_function(
&format!("{name}/msg_len={data_length} chunks={chunks} conc={conc}"),
|b| {
b.iter_batched(
|| {
// Generate random data
let mut data = vec![0u8; data_length];
rng.fill_bytes(&mut data);
data
},
|data| {
// Encode data
if conc > 1 {
S::encode(&config, data.as_slice(), &strategy).unwrap()
} else {
S::encode(&config, data.as_slice(), &Sequential).unwrap()
}
},
BatchSize::SmallInput,
);
},
);
}
}
}
}
pub(crate) fn bench_decode_generic<S: Scheme>(name: &str, c: &mut Criterion) {
let mut rng = ChaCha8Rng::seed_from_u64(0);
let cases = [20, 22, 23].map(|i| 2usize.pow(i));
for data_length in cases.into_iter() {
for chunks in [10u16, 25, 50, 100, 250] {
for conc in [1, 8] {
let min = chunks / 3;
let config = Config {
minimum_shards: NZU16!(min),
extra_shards: NZU16!(chunks - min),
};
let strategy = Rayon::new(NZUsize!(conc)).unwrap();
for selection in SELECTIONS {
let sel = selection.label();
c.bench_function(
&format!(
"{name}/msg_len={data_length} chunks={chunks} conc={conc} shard_selection={sel}"
),
|b| {
b.iter_batched(
|| {
// Generate random data
let mut data = vec![0u8; data_length];
rng.fill_bytes(&mut data);
// Encode data
let (commitment, shards) = if conc > 1 {
S::encode(&config, data.as_slice(), &strategy).unwrap()
} else {
S::encode(&config, data.as_slice(), &Sequential).unwrap()
};
let indices = selection.indices(min);
let selected_shards: Vec<(u16, _)> = indices
.iter()
.map(|&i| {
(i, shards[i as usize].clone())
})
.collect();
let checked_shards: Vec<_> = selected_shards
.iter()
.map(|(idx, shard)| {
S::check(&config, &commitment, *idx, shard).unwrap()
})
.collect();
(commitment, checked_shards)
},
|(commitment, checked_shards)| {
// Decode data
if conc > 1 {
S::decode(
&config,
&commitment,
checked_shards.iter(),
&strategy,
)
.unwrap()
} else {
S::decode(
&config,
&commitment,
checked_shards.iter(),
&Sequential,
)
.unwrap()
}
},
BatchSize::SmallInput,
);
},
);
}
}
}
}
}
criterion_main!(reed_solomon::benches, zoda::benches);