Column APIs for interleave and tile. More...
#include <cudf/column/column.hpp>
#include <cudf/table/table_view.hpp>
#include <cudf/types.hpp>
#include <cudf/utilities/export.hpp>
#include <cudf/utilities/memory_resource.hpp>
#include <memory>
Go to the source code of this file.
Namespaces | |
cudf | |
cuDF interfaces | |
Enumerations | |
enum class | cudf::flip_endianness : bool { NO , YES } |
Configures whether byte casting flips endianness. | |
Functions | |
std::unique_ptr< column > | cudf::interleave_columns (table_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Interleave columns of a table into a single column. More... | |
std::unique_ptr< table > | cudf::tile (table_view const &input, size_type count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Repeats the rows from input table count times to form a new table. More... | |
std::unique_ptr< column > | cudf::byte_cast (column_view const &input_column, flip_endianness endian_configuration, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref()) |
Converts a column's elements to lists of bytes. More... | |
Column APIs for interleave and tile.
Definition in file reshape.hpp.