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

Remove cudf._lib.column in favor of pylibcudf. #17760

Open
wants to merge 21 commits into
base: branch-25.04
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b511f4a
Remove cudf._lib.column
mroeschke Jan 16, 2025
94a96f0
Start working through circular import errors
mroeschke Jan 16, 2025
119c0fd
Remove other access of cudf._lib.column as libcudf
mroeschke Jan 16, 2025
00d8709
Fix more tests
mroeschke Jan 16, 2025
bff0fa5
Add column_from_self_view, and fix other tests
mroeschke Jan 17, 2025
0581459
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/c…
mroeschke Jan 17, 2025
1034df9
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/c…
mroeschke Jan 21, 2025
cd60209
Type output of dtype_from_pylibcudf_column
mroeschke Jan 21, 2025
d578f6f
Replace column_from_self_view with existing copy
mroeschke Jan 21, 2025
cde7573
Merge branch 'branch-25.02' into cudf/_lib/column
mroeschke Jan 22, 2025
01b20bc
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/c…
mroeschke Jan 24, 2025
323b1b0
Merge branch 'cudf/_lib/column' of https://github.com/mroeschke/cudf …
mroeschke Jan 24, 2025
c1ff886
Fold in some doc changes from scalar refactor
mroeschke Jan 24, 2025
1e85b3e
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/c…
mroeschke Jan 24, 2025
622b4ef
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/c…
mroeschke Jan 27, 2025
b3aa5cd
Adjust search_sorted output return
mroeschke Jan 27, 2025
16626f2
Remove c_value
mroeschke Jan 27, 2025
5e134e6
Merge branch 'branch-25.02' into cudf/_lib/column
galipremsagar Jan 28, 2025
05936c6
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/c…
mroeschke Jan 28, 2025
ec92112
Merge branch 'cudf/_lib/column' of https://github.com/mroeschke/cudf …
mroeschke Jan 28, 2025
5a9725e
Merge remote-tracking branch 'upstream/branch-25.04' into cudf/_lib/c…
mroeschke Jan 31, 2025
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
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# the License.
# =============================================================================

set(cython_sources column.pyx scalar.pyx strings_udf.pyx)
set(cython_sources scalar.pyx strings_udf.pyx)
set(linked_libraries cudf::cudf)

rapids_cython_create_modules(
Expand Down
43 changes: 0 additions & 43 deletions python/cudf/cudf/_lib/column.pxd

This file was deleted.

82 changes: 0 additions & 82 deletions python/cudf/cudf/_lib/column.pyi

This file was deleted.

Loading
Loading