-
Notifications
You must be signed in to change notification settings - Fork 1
Update dfuds tree #55
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
02494ac
add dfuds implementation and tests
Sanya239 42915a6
fix DFUDSTree.size
Sanya239 5f8cfb5
fix clang format
Sanya239 b070dc0
rafactor dfuds_tree and utils
Sanya239 fc9519a
add dfuds benchmark
Sanya239 772b8d5
fix build errors
Sanya239 a9afe37
refactor everything
Sanya239 91740f6
fix compilation error
Sanya239 40eaaf1
remove duplicated bit member funcion
Sanya239 f341656
fix implementation to supprot 0-based indexation in rmm.open
Sanya239 037aa4a
rename rmm.bit_impl to rmm.bit and enchance tests
Sanya239 cfac24f
Support SdslRmMTree in DFUDS benchmarks
Sanya239 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When the third-party benchmark preset defines
SDSL_SUPPORT, this alias instantiatesDFUDSTreewithSdslRmMTree. DFUDS traversal callsselect0indegree,first_child, andparent, butSdslRmMTree::select0_implis currently a stub returningnpos; for any non-leaf random tree,first_child(root)wrapsnpos + 1back to 0 and the DFS loop walks invalid nodes instead of measuring the tree. Keep this benchmark onRmMTreeor implementselect0in the SDSL adapter before selecting it here.Useful? React with 👍 / 👎.