-
Notifications
You must be signed in to change notification settings - Fork 909
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
Pure-python masked UDFs #9174
Merged
rapids-bot
merged 41 commits into
rapidsai:branch-21.12
from
brandon-b-miller:fea-masked-udf-pure-python
Sep 29, 2021
Merged
Pure-python masked UDFs #9174
Changes from 31 commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
8d98b73
impl
brandon-b-miller 45c47ee
purge c++ code
brandon-b-miller c2e0218
enable cuda 11.0
brandon-b-miller 69f92cf
enable tests for __pow__
brandon-b-miller b636af9
solve multiple problems
brandon-b-miller bdf5823
masks are required for entry
brandon-b-miller 470d25e
support returning a single number
brandon-b-miller e271ce4
formatting
brandon-b-miller 0a971f0
bugfix
brandon-b-miller 2f7e6f8
remove header
brandon-b-miller 13a94cb
fix bool typing
brandon-b-miller b2a68e6
template kernels
brandon-b-miller 5cb75e7
switch back to forall
brandon-b-miller 49d9978
implement construct_signature
brandon-b-miller 2ba8bd2
support offsets
brandon-b-miller 11b2fd1
cache kernels
brandon-b-miller 7379fe1
merge latest
brandon-b-miller 775dd57
style
brandon-b-miller 04c38e6
skip cases where pandas null logic differs
brandon-b-miller 7a01bdb
style
brandon-b-miller 627d197
update tests slightly
brandon-b-miller d3e2e0b
updates to pipeline.py
brandon-b-miller 394fad3
Merge branch 'branch-21.10' into fea-masked-udf-pure-python
brandon-b-miller 306f5e1
address many reviews
brandon-b-miller 05adec7
cleanup
brandon-b-miller edbae6c
minor updtes
brandon-b-miller e224bee
Apply suggestions from code review
brandon-b-miller a446b75
address reviews
brandon-b-miller b54e11e
remove creating buffers if the column has no mask
brandon-b-miller 16406ff
put buffer back in for blank mask for now
brandon-b-miller ba2d898
merge latest and resolve conflicts
brandon-b-miller 30d6013
fix import bug
brandon-b-miller a369641
clarify exec context
brandon-b-miller e51d780
Merge branch 'branch-21.10' into fea-masked-udf-pure-python
brandon-b-miller 3c0c76f
rework unmasked kernels slightly
brandon-b-miller 6deb96a
un purge c++
brandon-b-miller 51b4fc9
cpp cleanup
brandon-b-miller 4249334
Merge branch 'branch-21.10' into fea-masked-udf-pure-python
brandon-b-miller 9f3c60e
Merge branch 'branch-21.10' into fea-masked-udf-pure-python
brandon-b-miller 71c71b8
address reviews
brandon-b-miller b0580e9
Merge branch 'branch-21.12' into fea-masked-udf-pure-python
brandon-b-miller File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Can we make these imports absolute to be consistent with the rest of the code-base?