You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be possible to implement Rayon's ParallelIterator for List and Vector so that we can alleviate some of the burden of tree iteration. Of course this only works for commutative operations like sums and we should be careful about introducing parallel iteration in consensus, as that has been a source of bugs in the past.
This is complicated by the move to top-level Interfaces which contain BTreeMaps. Combining the parallel BTreeMap iterator with the parallel iterator for the tree might be a bit of a pain
I think it would be possible to implement Rayon's
ParallelIterator
forList
andVector
so that we can alleviate some of the burden of tree iteration. Of course this only works for commutative operations like sums and we should be careful about introducing parallel iteration in consensus, as that has been a source of bugs in the past.The text was updated successfully, but these errors were encountered: