-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
ENH: Add numba engine to groupby.var/std #44862
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
Conversation
mroeschke
commented
Dec 13, 2021
- tests added / passed
- Ensure all linting tests pass, see here for how to run them
- whatsnew entry
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.
thanks @mroeschke followup request
@@ -1272,6 +1272,7 @@ def _numba_agg_general( | |||
func: Callable, | |||
engine_kwargs: dict[str, bool] | None, | |||
numba_cache_key_str: str, | |||
*aggregator_args, |
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.
why are these not kwargs?
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.
Numba functions don't play nice with kwargs currently numba/numba#2916
``compute.use_numba`` | ||
|
||
.. versionadded:: 1.4.0 | ||
|
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.
in a followup can you try to use shared docstrings here (and the other functions) for the engine/engine_kwargs
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.
Sure I can try to upstream these doc parameters from rolling too