Skip to content
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
dd8764e
Some clarifications, improvements to GroupedRollingWindows in cudf-po…
Matt711 Aug 22, 2025
c60a6e2
clean up
Matt711 Aug 22, 2025
a94b6ab
Merge branch 'branch-25.10' into imp/polars/over
Matt711 Aug 22, 2025
57c6b4b
Merge branch 'branch-25.10' into imp/polars/over
Matt711 Aug 26, 2025
3fda0a0
Support rank(...).over(...) expressions in cudf-polars
Matt711 Aug 27, 2025
23e639b
merge conflict
Matt711 Aug 27, 2025
4ceedf2
implement dense, min, max, and average
Matt711 Aug 28, 2025
f7301bb
Merge branch 'branch-25.10' into fea/polars/rank-over
Matt711 Aug 28, 2025
d0522b0
add version guards
Matt711 Aug 28, 2025
1fc7711
Merge branch 'branch-25.10' into fea/polars/rank-over
Matt711 Aug 28, 2025
e3ee3bd
use a single groupby scan
Matt711 Aug 28, 2025
a197348
Merge branch 'branch-25.10' into fea/polars/rank-over
Matt711 Aug 28, 2025
8694426
Merge branch 'branch-25.10' into fea/polars/rank-over
Matt711 Sep 4, 2025
099a03c
address review
Matt711 Sep 4, 2025
fea62a7
Support ordered grouped windows in cudf-polars
Matt711 Sep 4, 2025
0bfe8bc
Merge branch 'branch-25.10' into fea/polars/over-expr-with-orderby
Matt711 Sep 4, 2025
14d637f
Merge branch 'branch-25.10' into fea/polars/over-expr-with-orderby
Matt711 Sep 5, 2025
b17d867
catch streaming test warning
Matt711 Sep 5, 2025
ba233bf
Merge branch 'branch-25.10' into fea/polars/over-expr-with-orderby
Matt711 Sep 5, 2025
24b27f8
Merge branch 'branch-25.10' into fea/polars/over-expr-with-orderby
Matt711 Sep 5, 2025
5693e76
make unary op implementations easier to support
Matt711 Sep 5, 2025
5ecaedc
not yet
Matt711 Sep 5, 2025
1bec1b7
Support forward/backward filling null values in a grouped window context
Matt711 Sep 5, 2025
1a298d5
Support cum_sum(...).over(...) expressions in cudf-polars
Matt711 Sep 5, 2025
b4b7764
Merge branch 'branch-25.10' into fea/polars/cum-sum-over
Matt711 Sep 6, 2025
bfefc98
address review
Matt711 Sep 6, 2025
a0eab9e
code coverage
Matt711 Sep 6, 2025
c8f89ae
by exprs can contain tuples
Matt711 Sep 6, 2025
d25e0c3
code coverage
Matt711 Sep 7, 2025
ac65b75
mean not avg
Matt711 Sep 7, 2025
16f8982
Merge branch 'branch-25.10' into fea/polars/cum-sum-over
Matt711 Sep 8, 2025
2a7a8a8
merge conflict
Matt711 Sep 8, 2025
d13beaa
Merge branch 'branch-25.10' into fea/polars/cum-sum-over
Matt711 Sep 9, 2025
d157a24
merge conflict
Matt711 Oct 8, 2025
f1989a9
Merge branch 'branch-25.12' into fea/polars/cum-sum-over
Matt711 Oct 8, 2025
c361978
simplify test
Matt711 Oct 8, 2025
48fb152
Merge branch 'branch-25.12' into fea/polars/cum-sum-over
Matt711 Oct 8, 2025
f174799
Merge branch 'branch-25.12' into fea/polars/cum-sum-over
Matt711 Oct 9, 2025
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
4 changes: 4 additions & 0 deletions python/cudf_polars/cudf_polars/dsl/expressions/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ class ExecutionContext(IntEnum):
FRAME = enum.auto()
GROUPBY = enum.auto()
ROLLING = enum.auto()
# Follows GROUPBY semantics but useful
# to differentiate from GROUPBY so we can
# implement agg/per-row ops independently
WINDOW = enum.auto()


class Expr(Node["Expr"]):
Expand Down
Loading
Loading