-
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
Push DeviceScalar construction into Cython for list.contains #7862
Closed
brandon-b-miller
wants to merge
18
commits into
rapidsai:branch-0.19
from
brandon-b-miller:7854-fix-list-contains
Closed
Push DeviceScalar construction into Cython for list.contains #7862
brandon-b-miller
wants to merge
18
commits into
rapidsai:branch-0.19
from
brandon-b-miller:7854-fix-list-contains
Conversation
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
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
Updating the Java bindings package version to match the libcudf version for 0.20 also as [Deprecation announcement for CUDA 10.1 & 10.2 in v0.19](https://docs.rapids.ai/notices/rsn0005/), to update README to drop cuda 10.1 and cuda 10.2. Please let me know if we are going to support other cuda version 11.x except 11.0 Authors: - pxLi (@pxLi) Approvers: - Jason Lowe (@jlowe) - Robert (Bobby) Evans (@revans2) URL: rapidsai#7747
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
[gpuCI] Forward-merge branch-0.19 to branch-0.20 [skip ci]
brandon-b-miller
added
bug
Something isn't working
3 - Ready for Review
Ready for review by team
Python
Affects Python cuDF API.
Cython
non-breaking
Non-breaking change
labels
Apr 5, 2021
kkraus14
reviewed
Apr 5, 2021
@@ -237,9 +237,10 @@ def contains(self, search_key): | |||
Series([False, True, True]) | |||
dtype: bool | |||
""" | |||
search_key = cudf.Scalar(search_key) |
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.
I think this is the only thing we were missing. Can we keep the Cython as taking a DeviceScalar
with this change?
We may want to pull this into 0.19, this API is pretty unusable without this fix. |
Closing to retarget 0.19 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
3 - Ready for Review
Ready for review by team
bug
Something isn't working
non-breaking
Non-breaking change
Python
Affects Python cuDF API.
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.
Fixes #7854