Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move cudf._lib.aggregation to cudf.core._internals #17516

Merged
merged 3 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion python/cudf/cudf/_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# =============================================================================

set(cython_sources
aggregation.pyx
column.pyx
copying.pyx
csv.pyx
Expand Down
245 changes: 0 additions & 245 deletions python/cudf/cudf/_lib/aggregation.pyx

This file was deleted.

2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/groupby.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ from cudf._lib.scalar import as_device_scalar

import pylibcudf

from cudf._lib.aggregation import make_aggregation
from cudf.core._internals.aggregation import make_aggregation

# The sets below define the possible aggregations that can be performed on
# different dtypes. These strings must be elements of the AggregationKind enum.
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/reduce.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ from cudf._lib.types cimport dtype_to_pylibcudf_type, is_decimal_type_id

import pylibcudf

from cudf._lib.aggregation import make_aggregation
from cudf.core._internals.aggregation import make_aggregation


@acquire_spill_lock()
Expand Down
Loading
Loading