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.sort to cudf.core._internals #17488

Merged
merged 19 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c53f128
Move cudf._lib.sort to cudf.core._internals
mroeschke Dec 3, 2024
6aa25ee
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 3, 2024
0d33c8d
Merge branch 'branch-25.02' into cudf/_lib/sort
mroeschke Dec 3, 2024
47d8e76
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 3, 2024
f375237
Merge branch 'cudf/_lib/sort' of https://github.com/mroeschke/cudf in…
mroeschke Dec 3, 2024
c079275
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 4, 2024
464d259
Merge branch 'branch-25.02' into cudf/_lib/sort
mroeschke Dec 5, 2024
7842412
Merge branch 'branch-25.02' into cudf/_lib/sort
mroeschke Dec 5, 2024
64c0f13
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 6, 2024
926e30c
Simplfy some implementations
mroeschke Dec 6, 2024
1fa1611
Remove list call
mroeschke Dec 6, 2024
8459f92
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 6, 2024
131f911
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 6, 2024
18413d7
Remove breakpoints
mroeschke Dec 6, 2024
6e71c08
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 9, 2024
e570324
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 10, 2024
4e56a9b
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 13, 2024
cbc9afc
Use list comp
mroeschke Dec 13, 2024
dd6385e
Merge remote-tracking branch 'upstream/branch-25.02' into cudf/_lib/sort
mroeschke Dec 13, 2024
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: 2 additions & 2 deletions python/cudf/cudf/_lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# the License.
# =============================================================================

set(cython_sources column.pyx copying.pyx groupby.pyx interop.pyx scalar.pyx sort.pyx
stream_compaction.pyx string_casting.pyx strings_udf.pyx types.pyx utils.pyx
set(cython_sources column.pyx copying.pyx groupby.pyx interop.pyx scalar.pyx stream_compaction.pyx
string_casting.pyx strings_udf.pyx types.pyx utils.pyx
)
set(linked_libraries cudf::cudf)

Expand Down
1 change: 0 additions & 1 deletion python/cudf/cudf/_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
copying,
groupby,
interop,
sort,
stream_compaction,
string_casting,
strings_udf,
Expand Down
365 changes: 0 additions & 365 deletions python/cudf/cudf/_lib/sort.pyx

This file was deleted.

Loading
Loading