Interoperability between cuDF and CuPy#
This notebook provides introductory examples of how you can use cuDF and CuPy together to take advantage of CuPy array functionality (such as advanced linear algebra operations).
import timeit
import cupy as cp
from packaging import version
import cudf
if version.parse(cp.__version__) >= version.parse("10.0.0"):
cupy_from_dlpack = cp.from_dlpack
else:
cupy_from_dlpack = cp.fromDlpack
Converting a cuDF DataFrame to a CuPy Array#
If we want to convert a cuDF DataFrame to a CuPy ndarray, There are multiple ways to do it:
We can use the dlpack interface.
We can also use
DataFrame.values
.We can also convert via the CUDA array interface by using cuDF’s
to_cupy
functionality.
nelem = 10000
df = cudf.DataFrame(
{
"a": range(nelem),
"b": range(500, nelem + 500),
"c": range(1000, nelem + 1000),
}
)
%timeit arr_cupy = cupy_from_dlpack(df.to_dlpack())
%timeit arr_cupy = df.values
%timeit arr_cupy = df.to_cupy()
329 μs ± 1.35 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
656 μs ± 3.17 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
646 μs ± 4.06 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
arr_cupy = cupy_from_dlpack(df.to_dlpack())
arr_cupy
array([[ 0, 500, 1000],
[ 1, 501, 1001],
[ 2, 502, 1002],
...,
[ 9997, 10497, 10997],
[ 9998, 10498, 10998],
[ 9999, 10499, 10999]])
Converting a cuDF Series to a CuPy Array#
There are also multiple ways to convert a cuDF Series to a CuPy array:
We can pass the Series to
cupy.asarray
as cuDF Series exposes__cuda_array_interface__
.We can leverage the dlpack interface
to_dlpack()
.We can also use
Series.values
col = "a"
%timeit cola_cupy = cp.asarray(df[col])
%timeit cola_cupy = cupy_from_dlpack(df[col].to_dlpack())
%timeit cola_cupy = df[col].values
417 μs ± 7.84 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
737 μs ± 5.5 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
505 μs ± 4.88 μs per loop (mean ± std. dev. of 7 runs, 1,000 loops each)
cola_cupy = cp.asarray(df[col])
cola_cupy
array([ 0, 1, 2, ..., 9997, 9998, 9999])
From here, we can proceed with normal CuPy workflows, such as reshaping the array, getting the diagonal, or calculating the norm.
reshaped_arr = cola_cupy.reshape(50, 200)
reshaped_arr
array([[ 0, 1, 2, ..., 197, 198, 199],
[ 200, 201, 202, ..., 397, 398, 399],
[ 400, 401, 402, ..., 597, 598, 599],
...,
[9400, 9401, 9402, ..., 9597, 9598, 9599],
[9600, 9601, 9602, ..., 9797, 9798, 9799],
[9800, 9801, 9802, ..., 9997, 9998, 9999]])
reshaped_arr.diagonal()
array([ 0, 201, 402, 603, 804, 1005, 1206, 1407, 1608, 1809, 2010,
2211, 2412, 2613, 2814, 3015, 3216, 3417, 3618, 3819, 4020, 4221,
4422, 4623, 4824, 5025, 5226, 5427, 5628, 5829, 6030, 6231, 6432,
6633, 6834, 7035, 7236, 7437, 7638, 7839, 8040, 8241, 8442, 8643,
8844, 9045, 9246, 9447, 9648, 9849])
cp.linalg.norm(reshaped_arr)
array(577306.967739)
Converting a CuPy Array to a cuDF DataFrame#
We can also convert a CuPy ndarray to a cuDF DataFrame. Like before, there are multiple ways to do it:
Easiest; We can directly use the
DataFrame
constructor.We can use CUDA array interface with the
DataFrame
constructor.We can also use the dlpack interface.
For the latter two cases, we’ll need to make sure that our CuPy array is Fortran contiguous in memory (if it’s not already). We can either transpose the array or simply coerce it to be Fortran contiguous beforehand.
%timeit reshaped_df = cudf.DataFrame(reshaped_arr)
11.9 ms ± 76.2 μs per loop (mean ± std. dev. of 7 runs, 100 loops each)
reshaped_df = cudf.DataFrame(reshaped_arr)
reshaped_df.head()
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 |
1 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | ... | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 |
2 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | ... | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 |
3 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | ... | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 |
4 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | ... | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 |
5 rows × 200 columns
We can check whether our array is Fortran contiguous by using cupy.isfortran or looking at the flags of the array.
cp.isfortran(reshaped_arr)
False
In this case, we’ll need to convert it before going to a cuDF DataFrame. In the next two cells, we create the DataFrame by leveraging dlpack and the CUDA array interface, respectively.
%%timeit
fortran_arr = cp.asfortranarray(reshaped_arr)
reshaped_df = cudf.DataFrame(fortran_arr)
11.9 ms ± 116 μs per loop (mean ± std. dev. of 7 runs, 100 loops each)
%%timeit
fortran_arr = cp.asfortranarray(reshaped_arr)
reshaped_df = cudf.from_dlpack(fortran_arr.toDlpack())
10.2 ms ± 84.3 μs per loop (mean ± std. dev. of 7 runs, 100 loops each)
fortran_arr = cp.asfortranarray(reshaped_arr)
reshaped_df = cudf.DataFrame(fortran_arr)
reshaped_df.head()
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 |
1 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | ... | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 |
2 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | ... | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 |
3 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | ... | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 |
4 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | ... | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 |
5 rows × 200 columns
Converting a CuPy Array to a cuDF Series#
To convert an array to a Series, we can directly pass the array to the Series
constructor.
cudf.Series(reshaped_arr.diagonal()).head()
0 0
1 201
2 402
3 603
4 804
dtype: int64
Interweaving CuDF and CuPy for Smooth PyData Workflows#
RAPIDS libraries and the entire GPU PyData ecosystem are developing quickly, but sometimes a one library may not have the functionality you need. One example of this might be taking the row-wise sum (or mean) of a Pandas DataFrame. cuDF’s support for row-wise operations isn’t mature, so you’d need to either transpose the DataFrame or write a UDF and explicitly calculate the sum across each row. Transposing could lead to hundreds of thousands of columns (which cuDF wouldn’t perform well with) depending on your data’s shape, and writing a UDF can be time intensive.
By leveraging the interoperability of the GPU PyData ecosystem, this operation becomes very easy. Let’s take the row-wise sum of our previously reshaped cuDF DataFrame.
reshaped_df.head()
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ... | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 |
1 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | ... | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 |
2 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | ... | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 |
3 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | ... | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 |
4 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | ... | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 |
5 rows × 200 columns
We can just transform it into a CuPy array and use the axis
argument of sum
.
new_arr = cupy_from_dlpack(reshaped_df.to_dlpack())
new_arr.sum(axis=1)
array([ 19900, 59900, 99900, 139900, 179900, 219900, 259900,
299900, 339900, 379900, 419900, 459900, 499900, 539900,
579900, 619900, 659900, 699900, 739900, 779900, 819900,
859900, 899900, 939900, 979900, 1019900, 1059900, 1099900,
1139900, 1179900, 1219900, 1259900, 1299900, 1339900, 1379900,
1419900, 1459900, 1499900, 1539900, 1579900, 1619900, 1659900,
1699900, 1739900, 1779900, 1819900, 1859900, 1899900, 1939900,
1979900])
With just that single line, we’re able to seamlessly move between data structures in this ecosystem, giving us enormous flexibility without sacrificing speed.
Converting a cuDF DataFrame to a CuPy Sparse Matrix#
We can also convert a DataFrame or Series to a CuPy sparse matrix. We might want to do this if downstream processes expect CuPy sparse matrices as an input.
The sparse matrix data structure is defined by three dense arrays. We’ll define a small helper function for cleanliness.
def cudf_to_cupy_sparse_matrix(data, sparseformat="column"):
"""Converts a cuDF object to a CuPy Sparse Column matrix."""
if sparseformat not in (
"row",
"column",
):
raise ValueError("Let's focus on column and row formats for now.")
_sparse_constructor = cp.sparse.csc_matrix
if sparseformat == "row":
_sparse_constructor = cp.sparse.csr_matrix
return _sparse_constructor(cupy_from_dlpack(data.to_dlpack()))
We can define a sparsely populated DataFrame to illustrate this conversion to either sparse matrix format.
df = cudf.DataFrame()
nelem = 10000
nonzero = 1000
for i in range(20):
arr = cp.random.normal(5, 5, nelem)
arr[cp.random.choice(arr.shape[0], nelem - nonzero, replace=False)] = 0
df["a" + str(i)] = arr
df.head()
a0 | a1 | a2 | a3 | a4 | a5 | a6 | a7 | a8 | a9 | a10 | a11 | a12 | a13 | a14 | a15 | a16 | a17 | a18 | a19 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 0.0 | 2.594997 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.000000 |
1 | 0.0 | 0.000000 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 12.298933 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 13.365414 | 0.0 | 0.0 | 0.0 | 9.570602 |
2 | 0.0 | 0.000000 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 7.694972 |
3 | 0.0 | 3.133451 | 0.0 | 5.547976 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.000000 |
4 | 0.0 | 0.000000 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 0.0 | 0.0 | 0.0 | 0.000000 |
sparse_data = cudf_to_cupy_sparse_matrix(df)
print(sparse_data)
<Compressed Sparse Column sparse matrix of dtype 'float64'
with 20000 stored elements and shape (10000, 20)>
Coords Values
(256, 0) 17.50353888434092
(513, 0) 6.613259173884363
(641, 0) 5.236991865559398
(514, 0) 2.084534287250942
(1026, 0) 4.780794956908807
(899, 0) 0.15927569132029307
(134, 0) 8.79610336994913
(390, 0) -0.09960099214576523
(518, 0) 14.36043457391467
(1542, 0) 2.9619363633208575
(7, 0) 2.1168396228702853
(1159, 0) 2.6548234466061
(1287, 0) 3.3950019985690147
(904, 0) 2.8316835838774064
(1416, 0) 12.715256374292272
(139, 0) 5.843177034117902
(12, 0) 10.397694789372576
(140, 0) 8.214364222079977
(1038, 0) 4.565444506171
(1422, 0) 5.259042534946423
(16, 0) 4.428437177198361
(1168, 0) 9.142273171189185
(1296, 0) 11.842402399561852
(1041, 0) 7.75958314787127
(1425, 0) 7.379142504404486
: :
(9063, 19) 7.783265378162702
(8937, 19) 0.2784017198783989
(9705, 19) 4.058218000312452
(9450, 19) 4.456135894113211
(8811, 19) 7.2693594099268966
(9067, 19) 9.411595648359489
(9323, 19) 5.480853690054376
(9836, 19) 2.777381234413877
(9838, 19) -1.7916405777965294
(8816, 19) 1.971504645688868
(9328, 19) 6.1381859221538315
(9457, 19) 2.34924299918275
(8818, 19) 6.342804034792675
(9330, 19) 1.9077031456341524
(9971, 19) 5.628091448168788
(9844, 19) 8.343738759860887
(9335, 19) 8.355615399157207
(9847, 19) 12.16858586387871
(9592, 19) 0.3794812011484011
(9082, 19) 7.729984113971071
(9722, 19) 8.535108095921773
(9978, 19) 5.496714912431453
(9852, 19) -1.7458870863480969
(8831, 19) 2.091460235233761
(9215, 19) 9.46158427616279
From here, we could continue our workflow with a CuPy sparse matrix.
For a full list of the functionality built into these libraries, we encourage you to check out the API docs for cuDF and CuPy.