-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Allow different volumes for leaf and internal nodes #897
Conversation
c4ea987
to
c6b6ccd
Compare
For the most part, the results from Ascent benchmarks are fine. Some improvement in Serial queries; the only slowdown is kNN callback (5-8%). Cuda has about 5% slowdown in radius search for dense geometries. This is expected given that there's now more divergence. |
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.
How do we know these are all the changes that were required? Is there any test that can be added at this time (runtime and/or compile-time)?
These are not all the changes that are required. Callbacks will have to be wrapped, too. I have a DBSCAN change that allows to use I decided to create this PR to make this change independent of others, and to easier track the performance regresson. It can be done in parallel with the existing PRs (#892), and will have to be done anyway. |
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.
Fine
Change spatial traversal to fix perf regression from #897
No description provided.