Files | |
file | csv.hpp |
file | io/json.hpp |
file | orc.hpp |
file | parquet.hpp |
Typedefs | |
using | cudf::io::parquet_chunked_writer = chunked_parquet_writer |
Deprecated type alias for the chunked_parquet_writer More... | |
Functions | |
void | cudf::io::write_csv (csv_writer_options const &options, rmm::cuda_stream_view stream=cudf::get_default_stream()) |
Writes a set of columns to CSV format. More... | |
constexpr bool | cudf::io::is_supported_write_csv (data_type type) |
Checks if a cudf::data_type is supported for CSV writing. More... | |
void | cudf::io::write_json (json_writer_options const &options, rmm::cuda_stream_view stream=cudf::get_default_stream()) |
Writes a set of columns to JSON format. More... | |
constexpr bool | cudf::io::is_supported_write_json (data_type type) |
Checks if a cudf::data_type is supported for JSON writing. More... | |
void | cudf::io::write_orc (orc_writer_options const &options, rmm::cuda_stream_view stream=cudf::get_default_stream()) |
Writes a set of columns to ORC format. More... | |
std::unique_ptr< std::vector< uint8_t > > | cudf::io::write_parquet (parquet_writer_options const &options, rmm::cuda_stream_view stream=cudf::get_default_stream()) |
Writes a set of columns to parquet format. More... | |
std::unique_ptr< std::vector< uint8_t > > | cudf::io::merge_row_group_metadata (std::vector< std::unique_ptr< std::vector< uint8_t >>> const &metadata_list) |
Merges multiple raw metadata blobs that were previously created by write_parquet into a single metadata blob. More... | |
using cudf::io::parquet_chunked_writer = typedef chunked_parquet_writer |
Deprecated type alias for the chunked_parquet_writer
Definition at line 1525 of file parquet.hpp.
|
constexpr |
Checks if a cudf::data_type is supported for CSV writing.
type | The data_type to check. |
|
constexpr |
Checks if a cudf::data_type is supported for JSON writing.
type | The data_type to check. |
Definition at line 1356 of file io/json.hpp.
std::unique_ptr<std::vector<uint8_t> > cudf::io::merge_row_group_metadata | ( | std::vector< std::unique_ptr< std::vector< uint8_t >>> const & | metadata_list | ) |
Merges multiple raw metadata blobs that were previously created by write_parquet into a single metadata blob.
[in] | metadata_list | List of input file metadata |
void cudf::io::write_csv | ( | csv_writer_options const & | options, |
rmm::cuda_stream_view | stream = cudf::get_default_stream() |
||
) |
Writes a set of columns to CSV format.
The following code snippet demonstrates how to write columns to a file:
options | Settings for controlling writing behavior |
stream | CUDA stream used for device memory operations and kernel launches |
void cudf::io::write_json | ( | json_writer_options const & | options, |
rmm::cuda_stream_view | stream = cudf::get_default_stream() |
||
) |
Writes a set of columns to JSON format.
The following code snippet demonstrates how to write columns to a file:
options | Settings for controlling writing behavior |
stream | CUDA stream used for device memory operations and kernel launches |
void cudf::io::write_orc | ( | orc_writer_options const & | options, |
rmm::cuda_stream_view | stream = cudf::get_default_stream() |
||
) |
Writes a set of columns to ORC format.
The following code snippet demonstrates how to write columns to a file:
options | Settings for controlling reading behavior |
stream | CUDA stream used for device memory operations and kernel launches |
std::unique_ptr<std::vector<uint8_t> > cudf::io::write_parquet | ( | parquet_writer_options const & | options, |
rmm::cuda_stream_view | stream = cudf::get_default_stream() |
||
) |
Writes a set of columns to parquet format.
The following code snippet demonstrates how to write columns to a file:
options | Settings for controlling writing behavior |
stream | CUDA stream used for device memory operations and kernel launches |