You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
427 B
16 lines
427 B
from .methods import concat_dispatch
|
|
from .core import get_parallel_type, meta_nonempty, make_meta
|
|
|
|
|
|
######################################
|
|
# cuDF: Pandas Dataframes on the GPU #
|
|
######################################
|
|
|
|
|
|
@concat_dispatch.register_lazy('cudf')
|
|
@get_parallel_type.register_lazy('cudf')
|
|
@meta_nonempty.register_lazy('cudf')
|
|
@make_meta.register_lazy('cudf')
|
|
def _register_cudf():
|
|
import dask_cudf # noqa: F401
|