NVIDIA cuDF is a GPU-accelerated DataFrame library that brings up to 150x faster processing to your existing pandas workflows — with a single line of code.
cudf.pandas intercepts every pandas call and runs it on the GPU first. Falls back to CPU seamlessly for unsupported ops. Your code doesn't know the difference.
# Enable GPU acceleration — just one line!
%load_ext cudf.pandas
# Your existing pandas code unchanged ↓
import pandas as pd
# Read a large parquet file
df = pd.read_parquet("sales_data.parquet")
# Filter, groupby, aggregate — all on GPU
result = (
df[df["revenue"] > 10000]
.groupby(["region", "product"])
.agg({
"revenue": "sum",
"units": "mean",
})
.sort_values("revenue", ascending=False)
)
# Same pandas API, 150x GPU speed
print(result.head(10))
Benchmarks run on NVIDIA A100 vs AMD EPYC CPU. Standard DuckDB database-like operations benchmark.
From exploratory data analysis to production ML pipelines, cuDF powers the full data science stack.
cuDF integrates seamlessly with the Python data science ecosystem — no rewrites needed.
Own the exact-match premium domain for NVIDIA's GPU DataFrame library — the backbone of accelerated data science for 9.5 million pandas users.
Also listed on Afternic · Sedo · Dan.com