Skip to main content

cuDF - GPU Dataframe (C++)

Project description

 cuDF - GPU DataFrames

📢 cuDF can now be used as a no-code-change accelerator for pandas! To learn more, see here!

cuDF (pronounced "KOO-dee-eff") is a GPU DataFrame library for loading, joining, aggregating, filtering, and otherwise manipulating data. cuDF leverages libcudf, a blazing-fast C++/CUDA dataframe library and the Apache Arrow columnar format to provide a GPU-accelerated pandas API.

You can import cudf directly and use it like pandas:

import cudf

tips_df = cudf.read_csv("https://github.com/plotly/datasets/raw/master/tips.csv")
tips_df["tip_percentage"] = tips_df["tip"] / tips_df["total_bill"] * 100

# display average tip by dining party size
print(tips_df.groupby("size").tip_percentage.mean())

Or, you can use cuDF as a no-code-change accelerator for pandas, using cudf.pandas. cudf.pandas supports 100% of the pandas API, utilizing cuDF for supported operations and falling back to pandas when needed:

%load_ext cudf.pandas  # pandas operations now use the GPU!

import pandas as pd

tips_df = pd.read_csv("https://github.com/plotly/datasets/raw/master/tips.csv")
tips_df["tip_percentage"] = tips_df["tip"] / tips_df["total_bill"] * 100

# display average tip by dining party size
print(tips_df.groupby("size").tip_percentage.mean())

Resources

See the RAPIDS install page for the most up-to-date information and commands for installing cuDF and other RAPIDS packages.

Installation

CUDA/GPU requirements

  • CUDA 12.0+ with a compatible NVIDIA driver
  • Volta architecture or better (Compute Capability >=7.0)

Pip

cuDF can be installed via pip from the NVIDIA Python Package Index. Be sure to select the appropriate cuDF package depending on the major version of CUDA available in your environment:

# CUDA 13
pip install cudf-cu13

# CUDA 12
pip install cudf-cu12

Conda

cuDF can be installed with conda (via miniforge) from the rapidsai channel:

# CUDA 13
conda install -c rapidsai -c conda-forge cudf=25.10 cuda-version=13.0

# CUDA 12
conda install -c rapidsai -c conda-forge cudf=25.10 cuda-version=12.9

We also provide nightly Conda packages built from the HEAD of our latest development branch.

Note: cuDF is supported only on Linux, and with Python versions 3.10 and later.

See the RAPIDS installation guide for more OS and version info.

Build/Install from Source

See build instructions.

Contributing

Please see our guide for contributing to cuDF.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

libcudf_cu12-25.10.0-py3-none-manylinux_2_28_x86_64.whl (627.3 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ x86-64

libcudf_cu12-25.10.0-py3-none-manylinux_2_28_aarch64.whl (623.5 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ ARM64

File details

Details for the file libcudf_cu12-25.10.0-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for libcudf_cu12-25.10.0-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc7de43fd01ff4f567c40497be6935e22664b49cfb98b31a783493e7b9b0fc8e
MD5 a60049019f92998fdad38d1e0982bb8e
BLAKE2b-256 8e73b225c72720518466daa89deb743790fbd326b61504282922b91d563c93e8

See more details on using hashes here.

File details

Details for the file libcudf_cu12-25.10.0-py3-none-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for libcudf_cu12-25.10.0-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 162d00e389fb841d4dc1c45c4cbca1f6ebb84b895f366e8b4c758a6c9aeb4bbd
MD5 617c705d4141ad7afa9774ba74fdb330
BLAKE2b-256 313e875fb162133e5ceb77f9dfd21b1a97672bf3220749964b614de17fd475ad

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page