Skip to content

Commit

Permalink
Merge pull request #524 from Chia-Network/serialize-benchmark-2
Browse files Browse the repository at this point in the history
extend serialization benchmark with one more sample
  • Loading branch information
arvidn authored Jan 2, 2025
2 parents f1b254e + b0fabc1 commit fd65fed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions benches/2.generator
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
3 changes: 2 additions & 1 deletion benches/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ fn serialize_benchmark(c: &mut Criterion) {
// then serialize again.
let block0: &[u8] = include_bytes!("0.generator");
let block1: &[u8] = include_bytes!("1.generator");
let block2: &[u8] = include_bytes!("2.generator");

let mut group = c.benchmark_group("serialize");
group.sample_size(10);

for (block, name) in [(&block0, "0"), (&block1, "1")] {
for (block, name) in [(&block0, "0"), (&block1, "1"), (&block2, "2")] {
let mut a = Allocator::new();
let node = node_from_bytes_backrefs(&mut a, block).expect("node_from_bytes_backrefs");
let inflated = node_to_bytes(&a, node).expect("node_to_bytes");
Expand Down

0 comments on commit fd65fed

Please sign in to comment.