-
Notifications
You must be signed in to change notification settings - Fork 912
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
Implement concatenate_rows for list type #8049
Conversation
Rerun tests. |
# Conflicts: # cpp/tests/reshape/interleave_columns_tests.cpp
Codecov Report
@@ Coverage Diff @@
## branch-0.20 #8049 +/- ##
===============================================
+ Coverage 82.88% 82.90% +0.01%
===============================================
Files 103 103
Lines 17668 17877 +209
===============================================
+ Hits 14645 14821 +176
- Misses 3023 3056 +33
Continue to review full report at Codecov.
|
@gpucibot merge |
Current PR is to provide Java API for `cudf::lists::concatenate_rows`, which is added in #8049. Authors: - Alfred Xu (https://github.com/sperlingxx) Approvers: - Jason Lowe (https://github.com/jlowe) - Robert (Bobby) Evans (https://github.com/revans2) URL: #8171
This PR closes #7767. It implements
lists::concatenate_rows
that performs concatenation of all list elements at the same rows from the given table of list elements.For example:
Currently, only lists columns of one depth level are supported.