Skip to content

Commit

Permalink
Move cudf._lib.aggregation to cudf.core._internals (#17516)
Browse files Browse the repository at this point in the history
Contributes to #17317

Authors:
  - Matthew Roeschke (https://github.com/mroeschke)

Approvers:
  - Matthew Murray (https://github.com/Matt711)

URL: #17516
  • Loading branch information
mroeschke authored Dec 6, 2024
1 parent 06e937b commit c0a4c6c
Show file tree
Hide file tree
Showing 6 changed files with 291 additions and 249 deletions.
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

0 comments on commit c0a4c6c

Please sign in to comment.