From f291e5b772aa4881fc47fa027ce8d4eb6c29e8c4 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 31 Jan 2024 13:23:52 -0800 Subject: [PATCH 1/2] Update cudf.pandas FAQ. --- docs/cudf/source/cudf_pandas/faq.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/cudf/source/cudf_pandas/faq.md b/docs/cudf/source/cudf_pandas/faq.md index bbeaf0a5f00..dde7afb1360 100644 --- a/docs/cudf/source/cudf_pandas/faq.md +++ b/docs/cudf/source/cudf_pandas/faq.md @@ -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? From 42a1b430f8d5010949f10cb200ceb14056d9c294 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Thu, 1 Feb 2024 12:08:55 -0600 Subject: [PATCH 2/2] Update diff description. --- docs/cudf/source/cudf_pandas/benchmarks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cudf/source/cudf_pandas/benchmarks.md b/docs/cudf/source/cudf_pandas/benchmarks.md index 1a916dbee6a..9c747ed9c8f 100644 --- a/docs/cudf/source/cudf_pandas/benchmarks.md +++ b/docs/cudf/source/cudf_pandas/benchmarks.md @@ -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