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
|
// Copyright 2024 Gabriel Bjørnager Jensen.
use rand::random;
// Bincode uses so much memory that it crashes if
// we set `VALUE_COUNT` too high.
const VALUE_COUNT: usize = 0x0FFFFFFF;
use std::time::Instant;
macro_rules! benchmark {
{
$($name:ident: {
bincode: $bincode_op:block$(,)?
borsh: $borsh_op:block$(,)?
bzipper: $bzipper_op:block$(,)?
ciborium: $ciborium_op:block$(,)?
postcard: $postcard_op:block$(,)?
}$(,)?)+
} => {{
use ::std::{concat, eprint, eprintln, stringify};
macro_rules! time {
{ $op: block } => {{
let start = Instant::now();
$op
let stop = Instant::now();
let duration = stop - start;
(duration.as_nanos() as f64) / 1_000_000_000.0
}};
}
fn format_score(duration: f64, ref_duration: f64) -> String {
let vps = (VALUE_COUNT as f64 / duration).round();
let difference = (duration / ref_duration - 1.0) * 100.0;
let colour: u8 = if difference >= 0.0 {
0x20
} else if difference < 0.0 {
0x1F
} else {
0x00
};
format!("{duration:.3}s ({vps:.0} vps) => \u{001B}[{colour}m{difference:+.2}%\u{001B}[000m")
}
let mut total_bincode_duration = 0.0;
let mut total_borsh_duration = 0.0;
let mut total_bzipper_duration = 0.0;
let mut total_ciborium_duration = 0.0;
let mut total_postcard_duration = 0.0;
$({
eprintln!();
eprintln!(concat!("\u{001B}[001mrunning benchmark `", stringify!($name), "`...\u{001B}[022m"));
eprint!("\u{001B}[093m");
let bincode_duration = time! { $bincode_op };
let borsh_duration = time! { $borsh_op };
let bzipper_duration = time! { $bzipper_op };
let ciborium_duration = time! { $ciborium_op };
let postcard_duration = time! { $postcard_op };
eprint!("\u{001B}[000m");
eprintln!("bincode: {}", format_score(bincode_duration, bzipper_duration));
eprintln!("borsh: {}", format_score(borsh_duration, bzipper_duration));
eprintln!("bzipper: {}", format_score(bzipper_duration, bzipper_duration));
eprintln!("ciborium: {}", format_score(ciborium_duration, bzipper_duration));
eprintln!("postcard: {}", format_score(postcard_duration, bzipper_duration));
total_bincode_duration += bincode_duration;
total_borsh_duration += borsh_duration;
total_bzipper_duration += bzipper_duration;
total_ciborium_duration += ciborium_duration;
total_postcard_duration += postcard_duration;
})*
eprintln!();
eprintln!("\u{001B}[001mtotal score:\u{001B}[022m");
eprintln!("bincode: {}", format_score(total_bincode_duration, total_bzipper_duration));
eprintln!("borsh: {}", format_score(total_borsh_duration, total_bzipper_duration));
eprintln!("bzipper: {}", format_score(total_bzipper_duration, total_bzipper_duration));
eprintln!("ciborium: {}", format_score(total_ciborium_duration, total_bzipper_duration));
eprintln!("postcard: {}", format_score(total_postcard_duration, total_bzipper_duration));
}};
}
#[derive(bzipper::Decode, bzipper::SizedEncode)]
#[derive(borsh::BorshSerialize)]
#[derive(serde::Deserialize, serde::Serialize)]
#[repr(transparent)]
struct Unit;
#[derive(bzipper::Decode, bzipper::SizedEncode)]
#[derive(borsh::BorshSerialize)]
#[derive(serde::Deserialize, serde::Serialize)]
#[repr(transparent)]
struct Unnamed(u32);
impl Unnamed {
#[inline(always)]
#[must_use]
pub const fn from_char(value: char) -> Self {
Self(value as u32)
}
}
#[derive(bzipper::Decode, bzipper::SizedEncode)]
#[derive(borsh::BorshSerialize)]
#[derive(serde::Deserialize, serde::Serialize)]
#[repr(transparent)]
struct Named { buf: [u8; 0x8] }
#[derive(bzipper::Decode, bzipper::SizedEncode)]
#[derive(borsh::BorshSerialize)]
#[derive(serde::Deserialize, serde::Serialize)]
enum Enum {
Unit(Unit),
Unnamed(Unnamed),
Named(Named),
}
impl Named {
#[inline(always)]
#[must_use]
pub const fn from_u64(value: u64) -> Self {
let buf = [
(value & 0x00_00_00_00_00_00_00_FF) as u8,
((value & 0x00_00_00_00_00_00_FF_00) >> 0x2) as u8,
((value & 0x00_00_00_00_00_FF_00_00) >> 0x4) as u8,
((value & 0x00_00_00_00_FF_00_00_00) >> 0x6) as u8,
((value & 0x00_00_00_FF_00_00_00_00) >> 0x8) as u8,
((value & 0x00_00_FF_00_00_00_00_00) >> 0xA) as u8,
((value & 0x00_FF_00_00_00_00_00_00) >> 0xC) as u8,
((value & 0xFF_00_00_00_00_00_00_00) >> 0xE) as u8,
];
Self { buf }
}
}
fn main() {
println!("######################");
println!("# BZIPPER BENCHMARKS #");
println!("######################");
println!();
println!("Each benchmark has a version written for the following crates:");
println!();
println!("- Bincode: <https://crates.io/crates/bincode/>");
println!("- Borsh: <https://crates.io/crates/borsh/>");
println!("- Ciborium: <https://crates.io/crates/ciborium/>");
println!("- bzipper: <https://crates.io/crates/bzipper/>");
println!("- Postcard: <https://crates.io/crates/postcard/>");
println!();
println!("The total time the benchmark took (including memory allocations and dealloca-");
println!("tions) is printed when the benchmark has completed. The `vps` counter signifies");
println!("the amount of values per second that the benchmark has handled (during the en-");
println!("tirety of the benchmark).");
println!();
println!("When every benchmark has concluded, the total run time and vps is listed for");
println!("each crate. A percantage additionally compares the run time between the listed");
println!("crate and bzipper (which should always be `0%` for bzipper itself). DO NOTE THAT");
println!("THESE FINAL RESULTS INDICATE A NON-WEIGHTED AVERAGE ACROSS BENCHMARKS. It can");
println!("therefore be skewed relative to real-world performance by the similarity of some");
println!("benchmarks.");
println!();
eprintln!("value_count: {VALUE_COUNT}");
benchmark! {
encode_u8: {
bincode: {
// Requires `std`.
use bincode::serialize_into;
use std::io::Cursor;
let buf_size = size_of::<u8>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
serialize_into(&mut buf, &random::<u8>()).unwrap();
}
}
borsh: {
use std::io::Cursor;
let buf_size = size_of::<u8>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
borsh::to_writer(&mut buf, &random::<u8>()).unwrap();
}
}
bzipper: {
use bzipper::{Encode, OStream, SizedEncode};
let buf_size = u8::MAX_ENCODED_SIZE; // value
let mut buf = vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice();
let mut stream = OStream::new(&mut buf);
for _ in 0x0..VALUE_COUNT {
random::<u8>().encode(&mut stream).unwrap();
}
}
ciborium: {
use std::io::Cursor;
let buf_size =
size_of::<u8>() // header
+ size_of::<u8>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
ciborium::into_writer(&random::<u8>(), &mut buf).unwrap();
}
}
postcard: {
use std::io::Cursor;
let buf_size = size_of::<u8>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
postcard::to_io(&random::<u8>(), &mut buf).unwrap();
}
}
}
encode_struct_unit: {
bincode: {
use bincode::serialize_into;
use std::io::Cursor;
let buf_size = size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
serialize_into(&mut buf, &Unit).unwrap();
}
}
borsh: {
use std::io::Cursor;
let buf_size = size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
borsh::to_writer(&mut buf, &Unit).unwrap();
}
}
bzipper: {
use bzipper::{Encode, OStream, SizedEncode};
let buf_size = Unit::MAX_ENCODED_SIZE; // value
let mut buf = vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice();
let mut stream = OStream::new(&mut buf);
for _ in 0x0..VALUE_COUNT {
Unit.encode(&mut stream).unwrap();
}
}
ciborium: {
use std::io::Cursor;
let buf_size =
size_of::<u8>() // header
+ size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
ciborium::into_writer(&Unit, &mut buf).unwrap();
}
}
postcard: {
use std::io::Cursor;
let buf_size = size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
postcard::to_io(&Unit, &mut buf).unwrap();
}
}
}
encode_struct_unnamed: {
bincode: {
use bincode::serialize_into;
use std::io::Cursor;
let buf_size = size_of::<Unnamed>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
serialize_into(&mut buf, &Unnamed::from_char(random())).unwrap();
}
}
borsh: {
use std::io::Cursor;
let buf_size = size_of::<Unnamed>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
borsh::to_writer(&mut buf, &Unnamed::from_char(random())).unwrap();
}
}
bzipper: {
use bzipper::{Encode, OStream, SizedEncode};
let buf_size = Unnamed::MAX_ENCODED_SIZE; // value
let mut buf = vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice();
let mut stream = OStream::new(&mut buf);
for _ in 0x0..VALUE_COUNT {
Unnamed::from_char(random()).encode(&mut stream).unwrap();
}
}
ciborium: {
use std::io::Cursor;
let buf_size =
size_of::<u8>() // header
+ size_of::<Unnamed>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
ciborium::into_writer(&Unnamed::from_char(random()), &mut buf).unwrap();
}
}
postcard: {
use std::io::Cursor;
let buf_size = size_of::<Unnamed>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
postcard::to_io(&Unnamed::from_char(random()), &mut buf).unwrap();
}
}
}
encode_struct_named: {
bincode: {
use bincode::serialize_into;
use std::io::Cursor;
let buf_size = size_of::<Named>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
serialize_into(&mut buf, &Named::from_u64(random())).unwrap();
}
}
borsh: {
use std::io::Cursor;
let buf_size = size_of::<Named>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
borsh::to_writer(&mut buf, &Named::from_u64(random())).unwrap();
}
}
bzipper: {
use bzipper::{Encode, OStream, SizedEncode};
let buf_size = Named::MAX_ENCODED_SIZE; // value
let mut buf = vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice();
let mut stream = OStream::new(&mut buf);
for _ in 0x0..VALUE_COUNT {
Named::from_u64(random()).encode(&mut stream).unwrap();
}
}
ciborium: {
use std::io::Cursor;
let buf_size =
size_of::<u8>() // header
+ size_of::<u64>() // tag
+ size_of::<u8>() // header
+ size_of::<Named>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
ciborium::into_writer(&Named::from_u64(random()), &mut buf).unwrap();
}
}
postcard: {
use std::io::Cursor;
let buf_size = size_of::<Named>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
postcard::to_io(&Named::from_u64(random()), &mut buf).unwrap();
}
}
}
encode_enum_unit: {
bincode: {
use bincode::serialize_into;
use std::io::Cursor;
let buf_size =
size_of::<u32>() // discriminant
+ size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT]);
for _ in 0x0..VALUE_COUNT {
serialize_into(&mut buf, &Enum::Unit(Unit)).unwrap();
}
}
borsh: {
use std::io::Cursor;
let buf_size =
size_of::<u8>() // discriminant
+ size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
borsh::to_writer(&mut buf, &Enum::Unit(Unit)).unwrap();
}
}
bzipper: {
use bzipper::{Encode, OStream, SizedEncode};
let buf_size =
isize::MAX_ENCODED_SIZE // discriminant
+ Unit::MAX_ENCODED_SIZE; // value
let mut buf = vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice();
let mut stream = OStream::new(&mut buf);
for _ in 0x0..VALUE_COUNT {
Enum::Unit(Unit).encode(&mut stream).unwrap();
}
}
ciborium: {
use std::io::Cursor;
let buf_size =
size_of::<u8>() // header
+ size_of::<u64>() // tag (discriminant)
+ size_of::<u8>() // header
+ size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
ciborium::into_writer(&Enum::Unit(Unit), &mut buf).unwrap();
}
}
postcard: {
use std::io::Cursor;
let buf_size =
size_of::<u32>() // discriminant
+ size_of::<Unit>(); // value
let mut buf = Cursor::new(vec![0x00; buf_size * VALUE_COUNT].into_boxed_slice());
for _ in 0x0..VALUE_COUNT {
postcard::to_io(&Enum::Unit(Unit), &mut buf).unwrap();
}
}
}
};
}
|