-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize merkle hashing performance in hash_tree_root
#93
Comments
from convo's with @potuz
|
latest: optimized hashing routines here: https://github.com/prysmaticlabs/hashtree demo: https://github.com/potuz/hashtree_rust_demo |
hash_tree_root
closing in lieu of #156 |
A big bottleneck of consumers of this crate is the performance of computing large Merkle trees. There are sophisticated caching techniques we can use to mitigate this; see #17. Separately, we can optimize the hashing itself, as computing the parent nodes of a set of child nodes in one layer of the Merkle tree can be done in parallel. This issue aims to address this latter performance technique.
relevant repo for investigating hashing techniques we may be able to use:
https://github.com/OffchainLabs/sszpp
The text was updated successfully, but these errors were encountered: