[ENHANCEMENT]: Improve make_window_extent
in the case of linear probing
#581
Labels
helps: rapids
Helps or needed by RAPIDS
type: improvement
Improvement / enhancement to an existing function
Is your feature request related to a problem? Please describe.
The current
make_window_extent
function always calculates prime capacity, regardless of the probing scheme used. This approach is suboptimal for linear probing, where the capacity does not need to be a prime number.Describe the solution you'd like
If it's linear probing, return the window extent based on CG size and window size without the prime table lookup.
A trait similar to the above idea is needed to dispatch between linear probing and double hashing
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: