Add a transaction benchmark using a naïve unscalable leftist heap - #196
Open
polytypic wants to merge 1 commit into
Open
Add a transaction benchmark using a naïve unscalable leftist heap#196polytypic wants to merge 1 commit into
polytypic wants to merge 1 commit into
Conversation
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
5 times, most recently
from
February 25, 2024 20:48
60a0454 to
e69a3ea
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
from
March 13, 2024 07:54
e69a3ea to
f58ca2d
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
3 times, most recently
from
July 17, 2024 08:17
0425887 to
1218728
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
from
August 29, 2024 18:23
1218728 to
fa732ba
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
from
September 20, 2024 18:12
fa732ba to
609c614
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
2 times, most recently
from
November 10, 2024 15:49
cd3dd6c to
b59e19c
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
from
December 16, 2024 10:22
b59e19c to
83ac285
Compare
polytypic
force-pushed
the
add-xt-leftist-heap-benchmark
branch
from
December 16, 2024 10:38
83ac285 to
b95f898
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds another benchmark that stresses the transaction mechanism. The benchmark is based on a naïve leftist heap data structure. The problem with that is that every operation modifies the root. That is a fundamental sequential bottleneck and it means that the data structure simply cannot scale to multiple cores such that thruput would improve by adding workers. Nevertheless this could be a useful benchmark of the transaction mechanism.