Skip to content

Commit

Permalink
Merge pull request #4308 from rjzamora/set-index-with-sort-values
Browse files Browse the repository at this point in the history
[REVIEW] Replace dask_cudf sort_values and improve set_index
  • Loading branch information
Keith Kraus authored Mar 17, 2020
2 parents 9070740 + 58bb900 commit 9827c09
Show file tree
Hide file tree
Showing 8 changed files with 524 additions and 459 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
- PR #4236 Update dask_cudf.io.to_parquet to use cudf to_parquet
- PR #4311 Port nvstrings String Manipulations functions to cuDF Python/Cython
- PR #4373 Port nvstrings Regular Expressions functions to cuDF Python/Cython
- PR #4308 Replace dask_cudf sort_values and improve set_index
- PR #4407 Enable `.str.slice` & `.str.get` and `.str.zfill` unit-tests
- PR #4412 Require Dask + Distributed 2.12.0+
- PR #4377 Support loading avro files that contain nested arrays
Expand Down
11 changes: 3 additions & 8 deletions python/dask_cudf/dask_cudf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
from dask.dataframe import from_delayed

import cudf
from cudf._version import get_versions

from . import backends
from .core import (
DataFrame,
Series,
concat,
from_cudf,
from_dask_dataframe,
from_delayed,
)
from .core import DataFrame, Series, concat, from_cudf, from_dask_dataframe
from .io import read_csv, read_json, read_orc, to_orc

try:
Expand Down
278 changes: 0 additions & 278 deletions python/dask_cudf/dask_cudf/batcher_sortnet.py

This file was deleted.

Loading

0 comments on commit 9827c09

Please sign in to comment.