#include <arrow/api.h>
#include <cudf/column/column.hpp>
#include <cudf/detail/transform.hpp>
#include <cudf/table/table.hpp>
#include <cudf/table/table_view.hpp>
#include <cudf/types.hpp>
#include <rmm/mr/device/per_device_resource.hpp>
Go to the source code of this file.
Classes | |
struct | cudf::column_metadata |
Detailed metadata information for arrow array. More... | |
Namespaces | |
cudf | |
cuDF interfaces | |
Functions | |
std::unique_ptr< table > | cudf::from_dlpack (DLManagedTensor const *managed_tensor, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Convert a DLPack DLTensor into a cudf table. More... | |
DLManagedTensor * | cudf::to_dlpack (table_view const &input, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Convert a cudf table into a DLPack DLTensor. More... | |
std::shared_ptr< arrow::Table > | cudf::to_arrow (table_view input, std::vector< column_metadata > const &metadata={}, arrow::MemoryPool *ar_mr=arrow::default_memory_pool()) |
Create arrow::Table from cudf table input More... | |
std::unique_ptr< table > | cudf::from_arrow (arrow::Table const &input, rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource()) |
Create cudf::table from given arrow Table input. More... | |