Skip to content
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

Migrate lists/count_elements to pylibcudf #16072

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix doc string
  • Loading branch information
Matt711 committed Jul 1, 2024
commit c0c33888e5a5399ca48db9d39f11fba681d792f7
4 changes: 4 additions & 0 deletions python/cudf/cudf/_lib/pylibcudf/lists.pyx
Original file line number Diff line number Diff line change
@@ -214,10 +214,14 @@ cpdef Column index_of(Column input, ColumnOrScalar search_key, bool find_first_o
cpdef Column count_elements(Column input):
"""Count the number of rows in each
list element in the given lists column.

For details, see :cpp:func:`count_elements`.

Parameters
----------
input : Column
The input column

Returns
-------
Column
Loading