Files | Functions

Files

file  copying.hpp
 Column APIs for gather, scatter, split, slice, etc.
 

Functions

std::unique_ptr< tablecudf::scatter (table_view const &source, column_view const &scatter_map, table_view const &target, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Scatters the rows of the source table into a copy of the target table according to a scatter map. More...
 
std::unique_ptr< tablecudf::scatter (std::vector< std::reference_wrapper< scalar const >> const &source, column_view const &indices, table_view const &target, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Scatters a row of scalar values into a copy of the target table according to a scatter map. More...
 
std::unique_ptr< tablecudf::boolean_mask_scatter (table_view const &input, table_view const &target, column_view const &boolean_mask, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Scatters rows from the input table to rows of the output corresponding to true values in a boolean mask. More...
 
std::unique_ptr< tablecudf::boolean_mask_scatter (std::vector< std::reference_wrapper< scalar const >> const &input, table_view const &target, column_view const &boolean_mask, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Scatters scalar values to rows of the output corresponding to true values in a boolean mask. More...
 

Detailed Description

Function Documentation

◆ boolean_mask_scatter() [1/2]

std::unique_ptr<table> cudf::boolean_mask_scatter ( std::vector< std::reference_wrapper< scalar const >> const &  input,
table_view const &  target,
column_view const &  boolean_mask,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Scatters scalar values to rows of the output corresponding to true values in a boolean mask.

The ith scalar in input will be written to the ith column of the output table at the location of every true value in boolean_mask. All other rows in the output will equal the same row in target.

Example:
input: {11}
boolean_mask: {true, false, false, false, true, true, false, true, true, false}
target: {{ 2, 2, 3, 4, 4, 7, 7, 7, 8, 10}}
output: {{ 11, 2, 3, 4, 11, 11, 7, 11, 11, 10}}
Exceptions
std::invalid_argumentif input.size() != target.num_columns()
cudf::data_type_errorif any ith input_column type != ith target_column type
cudf::data_type_errorif boolean_mask.type() != bool
std::invalid_argumentif boolean_mask.size() != target.num_rows()
Parameters
inputscalars to scatter
targettable_view to modify with scattered values from input
boolean_maskcolumn_view which acts as boolean mask
streamCUDA stream used for device memory operations and kernel launches
mrDevice memory resource used to allocate device memory of the returned table
Returns
Returns a table by scattering input into target as per boolean_mask

◆ boolean_mask_scatter() [2/2]

std::unique_ptr<table> cudf::boolean_mask_scatter ( table_view const &  input,
table_view const &  target,
column_view const &  boolean_mask,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Scatters rows from the input table to rows of the output corresponding to true values in a boolean mask.

The ith row of input will be written to the output table at the location of the ith true value in boolean_mask. All other rows in the output will equal the same row in target.

boolean_mask should have number of trues <= number of rows in input. If boolean mask is true, corresponding value in target is updated with value from corresponding input column, else it is left untouched.

Example:
input: {{1, 5, 6, 8, 9}}
boolean_mask: {true, false, false, false, true, true, false, true, true, false}
target: {{ 2, 2, 3, 4, 4, 7, 7, 7, 8, 10}}
output: {{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}
Exceptions
std::invalid_argumentif input.num_columns() != target.num_columns()
cudf::data_type_errorif any ith input_column type != ith target_column type
cudf::data_type_errorif boolean_mask.type() != bool
std::invalid_argumentif boolean_mask.size() != target.num_rows()
std::invalid_argumentif number of true in boolean_mask > input.num_rows()
Parameters
inputtable_view (set of dense columns) to scatter
targettable_view to modify with scattered values from input
boolean_maskcolumn_view which acts as boolean mask
streamCUDA stream used for device memory operations and kernel launches
mrDevice memory resource used to allocate device memory of the returned table
Returns
Returns a table by scattering input into target as per boolean_mask

◆ scatter() [1/2]

std::unique_ptr<table> cudf::scatter ( std::vector< std::reference_wrapper< scalar const >> const &  source,
column_view const &  indices,
table_view const &  target,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Scatters a row of scalar values into a copy of the target table according to a scatter map.

Scatters values from the source row into the target table out-of-place, returning a "destination table". The scatter is performed according to a scatter map such that row scatter_map[i] of the destination table is replaced by the source row. All other rows of the destination table equal corresponding rows of the target table.

The number of elements in source must match the number of columns in target and their corresponding datatypes must be the same.

If the same index appears more than once in the scatter map, the result is undefined.

If any values in scatter_map are outside of the interval [-n, n) where n is the number of rows in the target table, behavior is undefined.

Exceptions
std::invalid_argumentif the number of scalars does not match the number of columns in target
std::invalid_argumentif indices contains null values
cudf::data_type_errorif the data types of the scalars and target columns do not match
Parameters
sourceThe input scalars containing values to be scattered into the target columns
indicesA non-nullable column of integral indices that indicate the rows in the target table to be replaced by source.
targetThe set of columns into which values from the source_table are to be scattered
streamCUDA stream used for device memory operations and kernel launches
mrDevice memory resource used to allocate the returned table's device memory
Returns
Result of scattering values from source to target

◆ scatter() [2/2]

std::unique_ptr<table> cudf::scatter ( table_view const &  source,
column_view const &  scatter_map,
table_view const &  target,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Scatters the rows of the source table into a copy of the target table according to a scatter map.

Scatters values from the source table into the target table out-of-place, returning a "destination table". The scatter is performed according to a scatter map such that row scatter_map[i] of the destination table gets row i of the source table. All other rows of the destination table equal corresponding rows of the target table.

The number of columns in source must match the number of columns in target and their corresponding datatypes must be the same.

If the same index appears more than once in the scatter map, the result is undefined.

If any values in scatter_map are outside of the interval [-n, n) where n is the number of rows in the target table, behavior is undefined.

A negative value i in the scatter_map is interpreted as i+n, where n is the number of rows in the target table.

Exceptions
std::invalid_argumentif the number of columns in source does not match the number of columns in target
std::invalid_argumentif the number of rows in source does not match the number of elements in scatter_map
cudf::data_type_errorif the data types of the source and target columns do not match
std::invalid_argumentif scatter_map contains null values
Parameters
sourceThe input columns containing values to be scattered into the target columns
scatter_mapA non-nullable column of integral indices that maps the rows in the source table to rows in the target table. The size must be equal to or less than the number of elements in the source columns.
targetThe set of columns into which values from the source_table are to be scattered
streamCUDA stream used for device memory operations and kernel launches
mrDevice memory resource used to allocate the returned table's device memory
Returns
Result of scattering values from source to target