-
Notifications
You must be signed in to change notification settings - Fork 915
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
Enable compiled binary ops in libcudf, python and java #8741
Merged
rapids-bot
merged 17 commits into
rapidsai:branch-21.10
from
karthikeyann:fea-enable_compiled_binops
Aug 23, 2021
Merged
Changes from 4 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1ccc242
add experimental::detail::binary_operation
karthikeyann 0734a85
use experimental::detail::binary_operation in libcudf functions
karthikeyann d65fe3a
use compiled experimental::binary_operation in python
karthikeyann 010bd4a
use compiled experimental::binary_operation in java
karthikeyann 0f35ff2
add logical_and logical_or to bool output type list
karthikeyann 67c94ab
add NullMax, NullMin string unit tests
karthikeyann 06fb13a
Merge branch 'branch-21.08' of github.com:rapidsai/cudf into fea-enab…
karthikeyann 6684fe2
enable decimal32 decimal64 conversions
karthikeyann dd9fc3e
fix merge error
karthikeyann 524bdcf
fixed point scalar to device_view fix mem access
karthikeyann cd3c244
Merge branch 'branch-21.10' of github.com:rapidsai/cudf into fea-enab…
karthikeyann 50e4437
remove unused include
karthikeyann 0f5d3cf
reorg code, jit::binary_operation, compiled as cudf::binary_operation
karthikeyann 35c9ebb
review comments jni, cython fix as well
karthikeyann 61e22bd
remove debug rmm_mode=cuda cmake change
karthikeyann 62b52d7
delete commented code
karthikeyann e7e81ce
Merge branch 'branch-21.10' of github.com:rapidsai/cudf into fea-enab…
karthikeyann 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 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
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.
Parameter order here is incorrect. Should be
stream, mr
Same applies for the other 3 declarations in this file.
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.
@copydoc
is used at many places in our cpp documentation to avoid duplication of doc text, most often used in detail APIs. There is no cleaner way so far.Note: Alternatively, we could contribute to doxygen to reorder the
@param
as listed in the function signature. Timeline: Uncertain.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.
Right, but isn't this going to result in incorrect documentation? My expectation is that you will end up getting something like:
...which is the incorrect order.
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.
This is how it's rendered now.
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.
This is not better too.
(I generated this temporarily to show. it's not in released documentation)
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.
detail APIs are not in released libcudf documentation. They are excluded by doxygen.