[FEA] Support for GPU Buffer in cudf.read_parquet
in Python
#17742
Labels
feature request
New feature or request
cudf.read_parquet
in Python
#17742
Is your feature request related to a problem? Please describe.
Hi all,
Following a previous discussion in the community, I would like to request an enhancement to the
cudf.read_parquet(filepath_or_buffer, ...)
API. Specifically, to enable it to work with GPU buffers as input, allowing for Parquet files already in GPU memory to be processed directly.Reasons for this improvement:
cudf.read_parquet
supports CPU memory buffers but not GPU memory buffers.Describe the solution you'd like
As discussed, implementing this feature would likely require only plumbing through the
libcudf
bindings to handle GPU buffers seamlessly.Additional context: Current limitation & Error
When attempting to use cudf.read_parquet with a GPU memory buffer (e.g., a CuPy ndarray), the following error is encountered:
The text was updated successfully, but these errors were encountered: