-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: Consolidate numba facilities #32770
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
CLN: Consolidate numba facilities #32770
Conversation
Maybe better placed in pandas/core/util? @jreback |
Good point. I can move it to util. |
@@ -0,0 +1,58 @@ | |||
"""Common utilities for Numba operations""" |
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.
no strong opinion, but should this go in pandas.compat?
seems good enough place for now. we can see how / if this grows and move around later. e.g. this is conceptually like pandas/core/computation stuff (though not nearly as big). |
black pandas
git diff upstream/master -u -- "*.py" | flake8 --diff
Precursor to #31845 and other numba engine additions, creates
pandas/core/numba_.py
(open to move elsewhere) as a shared place for common numba operations like default parameters and jitting functions.