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.convert/split in favor of inlining pylibcudf #17496

Merged
merged 6 commits into from
Dec 9, 2024
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
Next Next commit
Remove cudf._lib.string.convert/split in favor of inlining pylibcudf
mroeschke committed Dec 3, 2024
commit 04cecfc9b7bd024f8e71b7761833bd162a7ef7fb
1 change: 0 additions & 1 deletion python/cudf/cudf/_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -52,4 +52,3 @@ target_link_libraries(interop PUBLIC nanoarrow)

add_subdirectory(io)
add_subdirectory(nvtext)
add_subdirectory(strings)
1 change: 0 additions & 1 deletion python/cudf/cudf/_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@
sort,
stream_compaction,
string_casting,
strings,
strings_udf,
text,
)
15 changes: 0 additions & 15 deletions python/cudf/cudf/_lib/strings/CMakeLists.txt

This file was deleted.

15 changes: 0 additions & 15 deletions python/cudf/cudf/_lib/strings/__init__.py
Original file line number Diff line number Diff line change
@@ -32,18 +32,3 @@
detokenize,
tokenize_with_vocabulary,
)
from cudf._lib.strings.convert.convert_fixed_point import to_decimal
from cudf._lib.strings.convert.convert_floats import is_float
from cudf._lib.strings.convert.convert_integers import is_integer
from cudf._lib.strings.convert.convert_urls import url_decode, url_encode
from cudf._lib.strings.split.partition import partition, rpartition
from cudf._lib.strings.split.split import (
rsplit,
rsplit_re,
rsplit_record,
rsplit_record_re,
split,
split_re,
split_record,
split_record_re,
)
24 changes: 0 additions & 24 deletions python/cudf/cudf/_lib/strings/convert/CMakeLists.txt

This file was deleted.

Empty file.
Empty file.
76 changes: 0 additions & 76 deletions python/cudf/cudf/_lib/strings/convert/convert_fixed_point.pyx

This file was deleted.

19 changes: 0 additions & 19 deletions python/cudf/cudf/_lib/strings/convert/convert_floats.pyx

This file was deleted.

20 changes: 0 additions & 20 deletions python/cudf/cudf/_lib/strings/convert/convert_integers.pyx

This file was deleted.

32 changes: 0 additions & 32 deletions python/cudf/cudf/_lib/strings/convert/convert_lists.pyx

This file was deleted.

48 changes: 0 additions & 48 deletions python/cudf/cudf/_lib/strings/convert/convert_urls.pyx

This file was deleted.

22 changes: 0 additions & 22 deletions python/cudf/cudf/_lib/strings/split/CMakeLists.txt

This file was deleted.

Empty file.
Empty file.
35 changes: 0 additions & 35 deletions python/cudf/cudf/_lib/strings/split/partition.pyx

This file was deleted.

Loading