cudf.pandas
Posted on January 3, 2025 • 1 min read • 75 wordsTest the code block feature with Python code.
cuDF pandas accelerator mode (cudf.pandas
) is built on cuDF and accelerates pandas code on the GPU.
It supports 100% of the Pandas API, using the GPU for supported operations,
and automatically falling back to pandas for other operations.
%load_ext cudf.pandas
# pandas API is now GPU accelerated
import pandas as pd
df = pd.read_csv("filepath") # uses the GPU!
df.groupby("col").mean() # uses the GPU!
df.rolling(window=3).sum() # uses the GPU!
df.apply(set, axis=1) # uses the CPU (fallback)