You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Today on branch-25.08, we lack support for polars.Expr.str.find_many. Running the example from the docs yields:
Describe the solution you'd like
I'd like the above code to be able to execute using the polars GPU backend. This API returns a list where the indices are the positons of the starting characters of all the found patterns. This seems to be a bit of a mix of cudf::strings::findall and cudf::strings::find_re, and is also blocked on being able to return a list[str] dtype.
Is your feature request related to a problem? Please describe.
Today on
branch-25.08
, we lack support for polars.Expr.str.find_many. Running the example from the docs yields:Describe the solution you'd like
I'd like the above code to be able to execute using the polars GPU backend. This API returns a list where the indices are the positons of the starting characters of all the found patterns. This seems to be a bit of a mix of
cudf::strings::findall
andcudf::strings::find_re
, and is also blocked on being able to return alist[str]
dtype.Describe alternatives you've considered
N/A
Additional context
#16480
The text was updated successfully, but these errors were encountered: