#include "types.hpp"
#include <cudf/detail/utilities/visitor_overload.hpp>
#include <cudf/table/table_view.hpp>
#include <cudf/types.hpp>
#include <cudf/utilities/error.hpp>
#include <cudf/utilities/memory_resource.hpp>
#include <map>
#include <string>
#include <utility>
#include <variant>
#include <vector>
Go to the source code of this file.
Classes | |
struct | cudf::io::schema_element |
Allows specifying the target types for nested JSON data via json_reader_options' set_dtypes method. More... | |
class | cudf::io::json_reader_options |
Input arguments to the read_json interface. More... | |
class | cudf::io::json_reader_options_builder |
Builds settings to use for read_json() . More... | |
class | cudf::io::json_writer_options |
Settings to use for write_json() . More... | |
class | cudf::io::json_writer_options_builder |
Builder to build options for writer_json() More... | |
Namespaces | |
cudf | |
cuDF interfaces | |
cudf::io | |
IO interfaces. | |
Enumerations | |
enum class | cudf::io::json_recovery_mode_t { cudf::io::FAIL , cudf::io::RECOVER_WITH_NULL } |
Control the error recovery behavior of the json parser. More... | |
Functions | |
table_with_metadata | cudf::io::read_json (json_reader_options options, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Reads a JSON dataset into a set of columns. 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... | |