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.string_casting in favor of inlining pylibcudf #17460

Merged
merged 18 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
fcef8cb
Remove cudf._lib.string_casting in favor of inlining pylibcudf
mroeschke Nov 27, 2024
38ad168
Fix bugs
mroeschke Nov 27, 2024
857b7fc
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Nov 27, 2024
c5eb463
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 3, 2024
fddbc6f
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 4, 2024
51ab8e7
Merge branch 'branch-25.02' into cudf/_lib/string_casting
mroeschke Dec 5, 2024
0f6ad0d
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 9, 2024
fcd2253
Merge branch 'cudf/_lib/string_casting' of https://github.com/mroesch…
mroeschke Dec 9, 2024
9bbc8e2
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 10, 2024
d310048
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 11, 2024
6c90597
Use converted_col
mroeschke Dec 11, 2024
d866226
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 11, 2024
1232e19
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 13, 2024
27ac8a7
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 13, 2024
ab452ec
Add back stream_compaction
mroeschke Dec 13, 2024
b78d8d3
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 13, 2024
7b523d2
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/s…
mroeschke Dec 17, 2024
4b4285e
Remove copying
mroeschke Dec 17, 2024
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 @@ -13,7 +13,7 @@
# =============================================================================

set(cython_sources column.pyx copying.pyx groupby.pyx interop.pyx scalar.pyx stream_compaction.pyx
string_casting.pyx strings_udf.pyx types.pyx utils.pyx
strings_udf.pyx types.pyx utils.pyx
)
set(linked_libraries cudf::cudf)

Expand Down
1 change: 0 additions & 1 deletion python/cudf/cudf/_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
groupby,
interop,
stream_compaction,
string_casting,
strings_udf,
)

Expand Down
Loading
Loading