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.
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
Concatenate dictionary of objects along axis=1 #15623
Concatenate dictionary of objects along axis=1 #15623
Changes from 28 commits
7e89e43
1a767fb
9cebaa2
0736e4e
f4c1e77
a55ca67
b08e862
8a3bfb0
de91bd9
29afda0
8047569
a1e0949
3136955
7a994d4
c813de7
b3638d4
4cab646
b1560d1
546e6b7
b296e56
c7c3b65
ea69fe9
932fee5
251a0b4
e810c7e
37c17bb
7488d69
8a1840b
89ed5bd
689c526
d7cedca
8bd0be7
b5de816
2124759
b5b9116
0a5a91b
4ba8e3a
8bf95de
516d28b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
It's best if we can avoid creating instances of GPU objects (
cudf.DataFrame
) in the parametrize arguments. Those are executed at test collection time rather than at test runtime, and make the test suite slow to launch due to a large number of small host-device copies. Let's defer construction using a pattern like this: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.
will do! let me know if you'd like me to clean up the other tests in this file in the same manner
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 passed in the reference to each class for the tests, let me know if this causes weirdness during test collection and i'll make a simple map.
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.
Yes, that’s totally fine. No need to refactor the rest of the file in this PR. A separate PR would be welcome if you’re interested.