#include <cudf/utilities/export.hpp>
#include <cstdint>
#include <vector>
Go to the source code of this file.
Classes | |
class | cudf::io::text::byte_range_info |
stores offset and size used to indicate a byte range More... | |
Namespaces | |
cudf | |
cuDF interfaces | |
cudf::io | |
IO interfaces. | |
Functions | |
std::vector< byte_range_info > | cudf::io::text::create_byte_range_infos_consecutive (int64_t total_bytes, int64_t range_count) |
Create a collection of consecutive ranges between [0, total_bytes). More... | |
byte_range_info | cudf::io::text::create_byte_range_info_max () |
Create a byte_range_info which represents as much of a file as possible. Specifically, [0, numeric_limits<int64_t>:\:max()) . More... | |