-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused functionality in cudf._lib.utils.pyx (#17586)
Contributes to #17317 More can be removed once my other cudf._lib PRs are in Authors: - Matthew Roeschke (https://github.com/mroeschke) Approvers: - Bradley Dice (https://github.com/bdice) URL: #17586
- Loading branch information
Showing
4 changed files
with
38 additions
and
337 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
# Copyright (c) 2020-2024, NVIDIA CORPORATION. | ||
|
||
from libcpp.memory cimport unique_ptr | ||
from libcpp.string cimport string | ||
from libcpp.vector cimport vector | ||
|
||
from pylibcudf.libcudf.column.column cimport column_view | ||
from pylibcudf.libcudf.table.table cimport table, table_view | ||
|
||
|
||
cdef data_from_unique_ptr( | ||
unique_ptr[table] c_tbl, column_names, index_names=*) | ||
cpdef data_from_pylibcudf_table(tbl, column_names, index_names=*) | ||
cpdef data_from_pylibcudf_io(tbl_with_meta, column_names = *, index_names = *) | ||
cdef data_from_table_view( | ||
table_view tv, object owner, object column_names, object index_names=*) | ||
cdef table_view table_view_from_columns(columns) except * | ||
cdef table_view table_view_from_table(tbl, ignore_index=*) except* | ||
cdef columns_from_unique_ptr(unique_ptr[table] c_tbl) | ||
cdef columns_from_table_view(table_view tv, object owners) | ||
cpdef columns_from_pylibcudf_table(tbl) | ||
cpdef _data_from_columns(columns, column_names, index_names=*) |
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
Oops, something went wrong.