NVIDIA / NVIDIA/cudf

[FEA] Support `polars.Expr.str.to_time` in `cudf-polars`

Open
#19,033 3 comments 0 reactions 0 assignees View on GitHub
cudf-polars feature request Python
Dominant language
C++
Stars
9.8k
Forks
1.1k
Avg merge
3d 6m
Merged PRs (30d)
278

Description

**Is your feature request related to a problem? Please describe.**
Today on `branch-25.08`, we lack support for [polars.Expr.str.to_time](https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.str.to_time.html). Running the example from the docs yields:
```
import polars as pl
engine = pl.GPUEngine(raise_on_fail=True)

s = pl.Series(["01:00", "02:00", "03:00"])

df = pl.DataFrame({"s": s}).lazy()
df = df.with_columns(pl.col('s').str.to_time("%H:%M"))
res = df.collect(engine=engine)
print(res)
```

```
NotImplementedError: dtype=Time conversion not supported'
```

**Describe the solution you'd like**
I'd like the above code to be able to execute using the polars GPU backend. This is blocked on support for the polars `Time` only dtype and a libcudf API.

**Describe alternatives you've considered**
N/A

**Additional context**
https://github.com/rapidsai/cudf/issues/16480

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.