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

[WIP] Remove old dask-cudf documentation and add README #6665

Closed
wants to merge 3 commits into from
Closed
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: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
- PR #6614 Add support for conversion to Pandas nullable dtypes and fix related issue in `cudf.to_json`
- PR #6622 Update `to_pandas` api docs
- PR #6623 Add operator overloading to column and clean up error messages
- PR #6665 Update stale dask-cudf documentation

## Bug Fixes

Expand Down
78 changes: 0 additions & 78 deletions docs/cudf/source/dask-cudf.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/cudf/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Welcome to cuDF's documentation!
api.rst
10min.ipynb
basics.rst
dask-cudf.md
10min-cudf-cupy.ipynb
guide-to-udfs.ipynb
internals.md
Expand Down
12 changes: 12 additions & 0 deletions python/dask_cudf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Dask-cuDF

A [cuDF](https://github.com/rapidsai/cudf)-backed [Dask-DataFrame](https://docs.dask.org/en/latest/dataframe.html) API for out-of-core and multi-GPU ETL.

## Brief Introduction

Dask is a task-based library for parallel scheduling and execution. In addition to its central scheduling machinery, the library also includes the [Dask-DataFrame](https://docs.dask.org/en/latest/dataframe.html) module, which is a scalable version of the [Pandas](https://pandas.pydata.org/) DataFrame/Series API. Dask-cuDF builds upon Dask-DataFrame to provide a convenient API for the decomposition and processing of large cuDF DataFrame and/or Series objects.

### Documentation Links

- [10 Minutes to cuDF and Dask-cuDF](https://docs.rapids.ai/api/cudf/stable/10min.html)
- [Dask-CUDA](https://github.com/rapidsai/dask-cuda) (for multi-GPU Scaling)