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

Update cudf.pandas FAQ. #14940

Merged
merged 3 commits into from
Feb 1, 2024
Merged
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
2 changes: 1 addition & 1 deletion docs/cudf/source/cudf_pandas/benchmarks.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ source pandas/py-pandas/bin/activate
pip install --extra-index-url=https://pypi.nvidia.com cudf-cu12 # or cudf-cu11
```

5. Modify pandas join/group code to use `cudf.pandas` and be compatible with pandas 1.5 APIs:
5. Modify pandas join/group code to use `cudf.pandas` and remove the `dtype_backend` keyword argument (not supported):

```bash
diff --git a/pandas/groupby-pandas.py b/pandas/groupby-pandas.py
Expand Down
3 changes: 2 additions & 1 deletion docs/cudf/source/cudf_pandas/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ There are a few known limitations that you should be aware of:
print(lst) # lst is unchanged, as this specific UDF could not run on the GPU
[10]
```
- `cudf.pandas` (and cuDF in general) is currently only compatible with pandas 1.5.x.
- `cudf.pandas` (and cuDF in general) is only compatible with pandas 2. Version
24.02 of cudf was the last to support pandas 1.5.x.

## Can I force running on the CPU?

Expand Down
Loading