Skip to content

Commit 187053a

Browse files
authored
Remove cudf._lib.string_casting in favor of inlining pylibcudf (#17460)
Contributes to #17317 Authors: - Matthew Roeschke (https://github.com/mroeschke) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: #17460
1 parent c650bf7 commit 187053a

File tree

8 files changed

+129
-711
lines changed

8 files changed

+129
-711
lines changed

python/cudf/cudf/_lib/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# the License.
1313
# =============================================================================
1414

15-
set(cython_sources column.pyx groupby.pyx interop.pyx scalar.pyx string_casting.pyx strings_udf.pyx
16-
types.pyx utils.pyx
15+
set(cython_sources column.pyx groupby.pyx interop.pyx scalar.pyx strings_udf.pyx types.pyx
16+
utils.pyx
1717
)
1818
set(linked_libraries cudf::cudf)
1919

python/cudf/cudf/_lib/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from . import (
55
groupby,
66
interop,
7-
string_casting,
87
strings_udf,
98
)
109

0 commit comments

Comments
 (0)