-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate cudf::strings::slice_strings APIs that accept delimiters (#…
…13373) Deprecating `cudf::strings::slice_strings` functions: https://docs.rapids.ai/api/libcudf/stable/group__strings__slice.html#gaf1504116d31b0ec4f119f1477bb87ee1 ``` std::unique_ptr<column> slice_strings( strings_column_view const& strings, string_scalar const& delimiter, size_type count, rmm::mr::device_memory_resource* mr); ``` and https://docs.rapids.ai/api/libcudf/stable/group__strings__slice.html#ga21f01493d15c18d67b66a94f20a24389 ``` std::unique_ptr<column> slice_strings( strings_column_view const& strings, strings_column_view const& delimiter_strings, size_type count, rmm::mr::device_memory_resource* mr); ``` These are not being used by cuDF (Cython) or Spark (JNI) and are quite convoluted and difficult to maintain. Marking these as `deprecated` in 23.06 to be removed in 23.08 if possible. Due to the warning/error compile settings, the benchmarks and the gtests are removed for these functions. Authors: - David Wendt (https://github.com/davidwendt) Approvers: - Yunsong Wang (https://github.com/PointKernel) - Nghia Truong (https://github.com/ttnghia) URL: #13373
- Loading branch information
1 parent
43c04e2
commit 132540e
Showing
3 changed files
with
9 additions
and
265 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
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
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