1

Is there any function, that convert Dask-cudf dataframe to Cudf dataframe?Like from_cudf for cudf to dask-cudf. dgdf = dask_cudf.from_cudf(df, npartitions=2)

1 Answer 1

1

Running .compute() method on a dask_cudf.DataFrame will convert it to a cudf.DataFrame:

df_cudf = df_dask_cudf.compute()

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.