From cd3a64b2b78cbe61179b771f87187d7c1973f711 Mon Sep 17 00:00:00 2001 From: cchudant Date: Thu, 11 Apr 2024 14:46:54 +0000 Subject: [PATCH] benches: address documentation related reviews --- README.md | 7 +++++++ src/trie/merkle_tree.rs | 19 +++++++++++++------ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d8b1d20..4e18fa8 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,13 @@ fn main() { } ``` +## Build and run benchmarks + +This crate uses `rayon` to parallelize hash computations. As such, results will vary depending on the number of cores of your cpu. +``` +cargo bench +``` + ## Acknowledgements - Shout out to [Danno Ferrin](https://github.com/shemnon) and [Karim Taam](https://github.com/matkt) for their work on Bonsai. This project is heavily inspired by their work. diff --git a/src/trie/merkle_tree.rs b/src/trie/merkle_tree.rs index bb862df..55b1355 100644 --- a/src/trie/merkle_tree.rs +++ b/src/trie/merkle_tree.rs @@ -418,6 +418,9 @@ impl MerkleTree { } } + /// Compute the hashes of all of the updated nodes in the merkle tree. This step + /// is separate from [`commit_subtree`] as it is done in parallel using rayon. + /// Computed hashes are pushed to the `hashes` vector, depth first. fn compute_hashes( &self, node: &Node, @@ -514,7 +517,13 @@ impl MerkleTree { /// /// # Arguments /// - /// * `node` - The top node from the subtree to commit. + /// * `node_handle` - The top node from the subtree to commit. + /// * `hashes` - The precomputed hashes for the subtree as returned by [`compute_hashes`]. + /// The order is depth first, left to right. + /// + /// # Panics + /// + /// Panics if the precomputed `hashes` do not match the length of the modified subtree. fn commit_subtree( &mut self, updates: &mut Vec<(TrieKey, InsertOrRemove>)>, @@ -522,7 +531,6 @@ impl MerkleTree { path: Path, hashes: &mut impl Iterator, ) -> Result> { - use Node::*; let node_id = match node_handle { NodeHandle::Hash(hash) => return Ok(hash), NodeHandle::InMemory(root_id) => root_id, @@ -535,7 +543,7 @@ impl MerkleTree { .ok_or(BonsaiStorageError::Trie( "Couldn't fetch node in the temporary storage".to_string(), ))? { - Unresolved(hash) => { + Node::Unresolved(hash) => { if path.0.is_empty() { updates.push(( TrieKey::new(&self.identifier, TrieKeyType::Trie, &[]), @@ -546,7 +554,7 @@ impl MerkleTree { Ok(hash) } } - Binary(mut binary) => { + Node::Binary(mut binary) => { let left_path = path.new_with_direction(Direction::Left); let left_hash = self.commit_subtree::(updates, binary.left, left_path, hashes)?; @@ -564,8 +572,7 @@ impl MerkleTree { )); Ok(hash) } - - Edge(mut edge) => { + Node::Edge(mut edge) => { let mut child_path = path.clone(); child_path.0.extend(&edge.path.0); let child_hash =