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
Changes from 1 commit
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
Next Next commit
Move cudf._lib.aggregation to cudf.core._internals
  • Loading branch information
mroeschke committed Dec 4, 2024
commit 1ff0833eeaac85465c7d5f897d25b6f7c31f1b4f
1 change: 0 additions & 1 deletion python/cudf/cudf/_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -13,7 +13,6 @@
# =============================================================================

set(cython_sources
aggregation.pyx
column.pyx
copying.pyx
csv.pyx
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
@@ -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.
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/reduce.pyx
Original file line number Diff line number Diff line change
@@ -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()
Loading
Loading