-
Notifications
You must be signed in to change notification settings - Fork 89
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
Add rehash functionality #380
Conversation
Benchmark Resultsstatic_set_rehash_unique_occupancy[0] NVIDIA RTX A6000
Elem/s here means traversed slots per second |
Naive kernel without using shared memory for comparison: Benchmark Resultsstatic_set_rehash_unique_occupancy[0] NVIDIA RTX A6000
|
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.
First pass
|
||
/** | ||
* @brief Rebuilds the container. | ||
* |
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.
docs explaining the difference between two overloads of rehash
/rehash_async
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.
Addressed in dcb0536 (I think)
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.
Good to go after resolving conflicts.
This PR adds the ability to
rehash
aka resize or regenerate an open addressing container.Closes #21