Files | Functions
Factories

Files

file  column_factories.hpp
 Column factory APIs.
 
file  dictionary_factories.hpp
 

Functions

std::unique_ptr< columncudf::make_empty_column (data_type type)
 Creates an empty column of the specified type. More...
 
std::unique_ptr< columncudf::make_empty_column (type_id id)
 Creates an empty column of the specified type. More...
 
std::unique_ptr< columncudf::make_numeric_column (data_type type, size_type size, mask_state state=mask_state::UNALLOCATED, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified numeric data_type with an optional null mask. More...
 
template<typename B >
std::unique_ptr< columncudf::make_numeric_column (data_type type, size_type size, B &&null_mask, size_type null_count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified numeric data_type with a null mask. More...
 
std::unique_ptr< columncudf::make_fixed_point_column (data_type type, size_type size, mask_state state=mask_state::UNALLOCATED, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified fixed_point data_type with an optional null mask. More...
 
template<typename B >
std::unique_ptr< columncudf::make_fixed_point_column (data_type type, size_type size, B &&null_mask, size_type null_count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified fixed_point data_type with a null mask. More...
 
std::unique_ptr< columncudf::make_timestamp_column (data_type type, size_type size, mask_state state=mask_state::UNALLOCATED, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified timestamp data_type with an optional null mask. More...
 
template<typename B >
std::unique_ptr< columncudf::make_timestamp_column (data_type type, size_type size, B &&null_mask, size_type null_count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified timestamp data_type with a null mask. More...
 
std::unique_ptr< columncudf::make_duration_column (data_type type, size_type size, mask_state state=mask_state::UNALLOCATED, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified duration data_type with an optional null mask. More...
 
template<typename B >
std::unique_ptr< columncudf::make_duration_column (data_type type, size_type size, B &&null_mask, size_type null_count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified duration data_type with a null mask. More...
 
std::unique_ptr< columncudf::make_fixed_width_column (data_type type, size_type size, mask_state state=mask_state::UNALLOCATED, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified fixed width data_type with an optional null mask. More...
 
template<typename B >
std::unique_ptr< columncudf::make_fixed_width_column (data_type type, size_type size, B &&null_mask, size_type null_count, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct column with sufficient uninitialized storage to hold size elements of the specified fixed width data_type with a null mask. More...
 
std::unique_ptr< columncudf::make_strings_column (cudf::device_span< thrust::pair< char const *, size_type > const > strings, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a STRING type column given a device span of pointer/size pairs. More...
 
std::unique_ptr< columncudf::make_strings_column (cudf::device_span< string_view const > string_views, string_view const null_placeholder, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a STRING type column given a device span of string_view. More...
 
std::unique_ptr< columncudf::make_strings_column (size_type num_strings, std::unique_ptr< column > offsets_column, rmm::device_buffer &&chars_buffer, size_type null_count, rmm::device_buffer &&null_mask)
 Construct a STRING type column given offsets column, chars columns, and null mask and null count. More...
 
std::unique_ptr< cudf::columncudf::make_lists_column (size_type num_rows, std::unique_ptr< column > offsets_column, std::unique_ptr< column > child_column, size_type null_count, rmm::device_buffer &&null_mask, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a LIST type column given offsets column, child column, null mask and null count. More...
 
std::unique_ptr< cudf::columncudf::make_structs_column (size_type num_rows, std::vector< std::unique_ptr< column >> &&child_columns, size_type null_count, rmm::device_buffer &&null_mask, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a STRUCT column using specified child columns as members. More...
 
std::unique_ptr< columncudf::make_column_from_scalar (scalar const &s, size_type size, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a column with size elements that are all equal to the given scalar. More...
 
std::unique_ptr< columncudf::make_dictionary_from_scalar (scalar const &s, size_type size, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a dictionary column with size elements that are all equal to the given scalar. More...
 
std::unique_ptr< columncudf::make_dictionary_column (column_view const &keys_column, column_view const &indices_column, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a dictionary column by copying the provided keys and indices. More...
 
std::unique_ptr< columncudf::make_dictionary_column (std::unique_ptr< column > keys_column, std::unique_ptr< column > indices_column, rmm::device_buffer &&null_mask, size_type null_count)
 Construct a dictionary column by taking ownership of the provided keys and indices columns. More...
 
std::unique_ptr< columncudf::make_dictionary_column (std::unique_ptr< column > keys_column, std::unique_ptr< column > indices_column, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
 Construct a dictionary column by taking ownership of the provided keys and indices columns. More...
 

Detailed Description

Function Documentation

◆ make_column_from_scalar()

std::unique_ptr<column> cudf::make_column_from_scalar ( scalar const &  s,
size_type  size,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a column with size elements that are all equal to the given scalar.

The output column will have the same type as s.type() The output column will contain all null rows if s.invalid()==false The output column will be empty if size==0. For LIST scalars, the column hierarchy from s is preserved.

Parameters
[in]sThe scalar to use for values in the column.
[in]sizeThe number of rows for the output column.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory.
Returns
Constructed column whose rows all contain the scalar value

◆ make_dictionary_column() [1/3]

std::unique_ptr<column> cudf::make_dictionary_column ( column_view const &  keys_column,
column_view const &  indices_column,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a dictionary column by copying the provided keys and indices.

It is expected that keys_column.has_nulls() == false. It is assumed the elements in keys_column are unique and are in a strict, total order. Meaning, keys_column[i] is ordered before keys_column[i+1] for all i in [0,n-1) where n is the number of keys.

The indices values must be in the range [0,keys_column.size()).

The null_mask and null count for the output column are copied from the indices column. If element i in indices_column is null, then element i in the returned dictionary column will also be null.

k = ["a","c","d"]
i = [1,0,null,2,2]
d is now {["a","c","d"],[1,0,undefined,2,2]} bitmask={1,1,0,1,1}
std::unique_ptr< column > make_dictionary_column(column_view const &keys_column, column_view const &indices_column, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a dictionary column by copying the provided keys and indices.

The null_mask and null count for the output column are copied from the indices column.

Exceptions
cudf::logic_errorif keys_column contains nulls
cudf::logic_errorif indices_column type is not INT32
Parameters
keys_columnColumn of unique, ordered values to use as the new dictionary column's keys.
indices_columnIndices to use for the new dictionary column.
streamCUDA stream used for device memory operations and kernel launches.
mrDevice memory resource used to allocate the returned column's device memory.
Returns
New dictionary column.

◆ make_dictionary_column() [2/3]

std::unique_ptr<column> cudf::make_dictionary_column ( std::unique_ptr< column keys_column,
std::unique_ptr< column indices_column,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a dictionary column by taking ownership of the provided keys and indices columns.

The keys_column must contain no nulls and is assumed to have elements that are unique and are in a strict, total order. Meaning, keys_column[i] is ordered before keys_column[i+1] for all i in [0,n-1) where n is the number of keys.

The indices_column can be any integer type and should contain the null-mask to be used for the output column. The indices values must be in the range [0,keys_column.size()).

Exceptions
cudf::logic_errorif keys_column contains nulls
Parameters
keys_columnColumn of unique, ordered values to use as the new dictionary column's keys.
indices_columnIndices values and null-mask to use for the new dictionary column.
streamCUDA stream used for device memory operations and kernel launches.
mrDevice memory resource used to allocate the returned column's device memory.
Returns
New dictionary column.

◆ make_dictionary_column() [3/3]

std::unique_ptr<column> cudf::make_dictionary_column ( std::unique_ptr< column keys_column,
std::unique_ptr< column indices_column,
rmm::device_buffer &&  null_mask,
size_type  null_count 
)

Construct a dictionary column by taking ownership of the provided keys and indices columns.

The keys_column and indices columns must contain no nulls. It is assumed the elements in keys_column are unique and are in a strict, total order. Meaning, keys_column[i] is ordered before keys_column[i+1] for all i in [0,n-1) where n is the number of keys.

The indices values must be in the range [0,keys_column.size()).

Exceptions
cudf::logic_errorif keys_column or indices_column contains nulls
cudf::logic_errorif indices_column type is not an unsigned integer type
Parameters
keys_columnColumn of unique, ordered values to use as the new dictionary column's keys.
indices_columnIndices to use for the new dictionary column.
null_maskNull mask for the output column.
null_countNumber of nulls for the output column.
Returns
New dictionary column.

◆ make_dictionary_from_scalar()

std::unique_ptr<column> cudf::make_dictionary_from_scalar ( scalar const &  s,
size_type  size,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a dictionary column with size elements that are all equal to the given scalar.

The output column will have keys of type s.type() The output column will be empty if size==0.

Exceptions
cudf::logic_errorif s.is_valid()==false
Parameters
[in]sThe scalar to use for values in the column.
[in]sizeThe number of rows for the output column.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory.
Returns
Constructed dictionary column

◆ make_duration_column() [1/2]

template<typename B >
std::unique_ptr<column> cudf::make_duration_column ( data_type  type,
size_type  size,
B &&  null_mask,
size_type  null_count,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified duration data_type with a null mask.

Note
null_count is optional and will be computed if not provided.
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a duration type
Parameters
[in]typeThe desired duration element type
[in]sizeThe number of elements in the column
[in]null_maskNull mask to use for this column.
[in]null_countOptional number of nulls in the null_mask.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed duration type column

Definition at line 275 of file column_factories.hpp.

◆ make_duration_column() [2/2]

std::unique_ptr<column> cudf::make_duration_column ( data_type  type,
size_type  size,
mask_state  state = mask_state::UNALLOCATED,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified duration data_type with an optional null mask.

Note
null_count() is determined by the requested null mask state
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a duration type
cudf::logic_errorif size < 0
Parameters
[in]typeThe desired duration element type
[in]sizeThe number of elements in the column
[in]stateOptional, controls allocation/initialization of the column's null mask. By default, no null mask is allocated.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed duration type column

◆ make_empty_column() [1/2]

std::unique_ptr<column> cudf::make_empty_column ( data_type  type)

Creates an empty column of the specified type.

An empty column contains zero elements and no validity mask.

Parameters
[in]typeThe column data type
Returns
Empty column with desired type

◆ make_empty_column() [2/2]

std::unique_ptr<column> cudf::make_empty_column ( type_id  id)

Creates an empty column of the specified type.

An empty column contains zero elements and no validity mask.

Parameters
[in]idThe column type id
Returns
Empty column with specified type

◆ make_fixed_point_column() [1/2]

template<typename B >
std::unique_ptr<column> cudf::make_fixed_point_column ( data_type  type,
size_type  size,
B &&  null_mask,
size_type  null_count,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified fixed_point data_type with a null mask.

Note
null_count is optional and will be computed if not provided.
Exceptions
cudf::logic_errorif type is not a fixed_point type.
Parameters
[in]typeThe desired fixed_point element type.
[in]sizeThe number of elements in the column.
[in]null_maskNull mask to use for this column.
[in]null_countOptional number of nulls in the null_mask.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory.
Returns
Constructed fixed-point type column

Definition at line 157 of file column_factories.hpp.

◆ make_fixed_point_column() [2/2]

std::unique_ptr<column> cudf::make_fixed_point_column ( data_type  type,
size_type  size,
mask_state  state = mask_state::UNALLOCATED,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified fixed_point data_type with an optional null mask.

Note
The column's null count is determined by the requested null mask state.
Exceptions
cudf::logic_errorif type is not a fixed_point type.
cudf::logic_errorif size < 0
Parameters
[in]typeThe desired fixed_point element type.
[in]sizeThe number of elements in the column.
[in]stateOptional, controls allocation/initialization of the. column's null mask. By default, no null mask is allocated.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory.
Returns
Constructed fixed-point type column

◆ make_fixed_width_column() [1/2]

template<typename B >
std::unique_ptr<column> cudf::make_fixed_width_column ( data_type  type,
size_type  size,
B &&  null_mask,
size_type  null_count,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified fixed width data_type with a null mask.

Note
null_count is optional and will be computed if not provided.
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a fixed width type
Parameters
[in]typeThe desired fixed width element type
[in]sizeThe number of elements in the column
[in]null_maskNull mask to use for this column.
[in]null_countOptional number of nulls in the null_mask.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed fixed-width type column

Definition at line 334 of file column_factories.hpp.

◆ make_fixed_width_column() [2/2]

std::unique_ptr<column> cudf::make_fixed_width_column ( data_type  type,
size_type  size,
mask_state  state = mask_state::UNALLOCATED,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified fixed width data_type with an optional null mask.

Note
null_count() is determined by the requested null mask state
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a fixed width type
cudf::logic_errorif size < 0
Parameters
[in]typeThe desired fixed width type
[in]sizeThe number of elements in the column
[in]stateOptional, controls allocation/initialization of the column's null mask. By default, no null mask is allocated.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed fixed-width type column

◆ make_lists_column()

std::unique_ptr<cudf::column> cudf::make_lists_column ( size_type  num_rows,
std::unique_ptr< column offsets_column,
std::unique_ptr< column child_column,
size_type  null_count,
rmm::device_buffer &&  null_mask,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a LIST type column given offsets column, child column, null mask and null count.

The columns and mask are moved into the resulting lists column.

List columns are structured similarly to strings columns. They contain a set of offsets which represents the lengths of the lists in each row, and a "child" column of data that is referenced by the offsets. Since lists are a nested type, the child column may itself be further nested.

When child column at depth N+1 is itself a list, the offsets column at depth N references the offsets column for depth N+1. When the child column at depth N+1 is a leaf type (int, float, etc), the offsets column at depth N references the data for depth N+1.

Example:
List<int>
input: {{1, 2}, {3, 4, 5}}
offsets (depth 0) {0, 2, 5}
data (depth 0)
offsets (depth 1)
data (depth 1) {1, 2, 3, 4, 5}
Example:
List<List<int>>
input: { {{1, 2}}, {{3, 4, 5}, {6, 7}} }
offsets (depth 0) {0, 1, 3}
data (depth 0)
offsets (depth 1) {0, 2, 5, 7}
data (depth 1)
offsets (depth 2)
data (depth 1) {1, 2, 3, 4, 5, 6, 7}
Parameters
[in]num_rowsThe number of lists the column represents.
[in]offsets_columnThe column of offset values for this column. Each value should represent the starting offset into the child elements that corresponds to the beginning of the row, with the first row starting at 0. The length of row N can be determined by subtracting offsets[N+1] - offsets[N]. The total number of offsets should be 1 longer than the # of rows in the column.
[in]child_columnThe column of nested data referenced by the lists represented by the offsets_column. Note: the child column may itself be further nested.
[in]null_countThe number of null list entries.
[in]null_maskThe bits specifying the null lists in device memory. Arrow format for nulls is used for interpreting this bitmask.
[in]streamOptional stream for use with all memory allocation and device kernels
[in]mrOptional resource to use for device memory allocation of the column's null_mask and children.
Returns
Constructed lists column

◆ make_numeric_column() [1/2]

template<typename B >
std::unique_ptr<column> cudf::make_numeric_column ( data_type  type,
size_type  size,
B &&  null_mask,
size_type  null_count,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified numeric data_type with a null mask.

Note
null_count is optional and will be computed if not provided.
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a numeric type
Parameters
[in]typeThe desired numeric element type
[in]sizeThe number of elements in the column
[in]null_maskNull mask to use for this column.
[in]null_countOptional number of nulls in the null_mask.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed numeric column

Definition at line 100 of file column_factories.hpp.

◆ make_numeric_column() [2/2]

std::unique_ptr<column> cudf::make_numeric_column ( data_type  type,
size_type  size,
mask_state  state = mask_state::UNALLOCATED,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified numeric data_type with an optional null mask.

Note
null_count() is determined by the requested null mask state
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a numeric type
cudf::logic_errorif size < 0
Parameters
[in]typeThe desired numeric element type
[in]sizeThe number of elements in the column
[in]stateOptional, controls allocation/initialization of the column's null mask. By default, no null mask is allocated.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed numeric column

◆ make_strings_column() [1/3]

std::unique_ptr<column> cudf::make_strings_column ( cudf::device_span< string_view const >  string_views,
string_view const  null_placeholder,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a STRING type column given a device span of string_view.

The total number of char bytes must not exceed the maximum size of size_type. The string characters are expected to be UTF-8 encoded sequence of char bytes. Use the strings_column_view class to perform strings operations on this type of column.

Note
For each string_view, if .data() is null_placeholder.data(), that string is considered null. Likewise, a string is considered empty (not null) if .data() is not null_placeholder.data() and .size_bytes() is 0. Otherwise the .data() must be a valid device address pointing to .size_bytes() consecutive bytes. The null_count() for the output column will be equal to the number of input string_views that are null.
Exceptions
std::bad_allocif device memory allocation fails
Parameters
[in]string_viewsThe span of string_view. Each string_view must point to a device memory address or null_placeholder (indicating a null string). The size must be the number of bytes.
[in]null_placeholderstring_view indicating null string in given list of string_views.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used for allocation of the column's null_mask and children columns' device memory.
Returns
Constructed strings column

◆ make_strings_column() [2/3]

std::unique_ptr<column> cudf::make_strings_column ( cudf::device_span< thrust::pair< char const *, size_type > const >  strings,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a STRING type column given a device span of pointer/size pairs.

The total number of char bytes must not exceed the maximum size of size_type. The string characters are expected to be UTF-8 encoded sequence of char bytes. Use the strings_column_view class to perform strings operations on this type of column.

Note
null_count() and null_bitmask are determined if a pair contains a null string. That is, for each pair, if .first is null, that string is considered null. Likewise, a string is considered empty (not null) if .first is not null and .second is 0. Otherwise the .first member must be a valid device address pointing to .second consecutive bytes.
Exceptions
std::bad_allocif device memory allocation fails
Parameters
[in]stringsThe device span of pointer/size pairs. Each pointer must be a device memory address or nullptr (indicating a null string). The size must be the number of bytes.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used for allocation of the column's null_mask and children columns' device memory.
Returns
Constructed strings column

◆ make_strings_column() [3/3]

std::unique_ptr<column> cudf::make_strings_column ( size_type  num_strings,
std::unique_ptr< column offsets_column,
rmm::device_buffer &&  chars_buffer,
size_type  null_count,
rmm::device_buffer &&  null_mask 
)

Construct a STRING type column given offsets column, chars columns, and null mask and null count.

The columns and mask are moved into the resulting strings column.

Parameters
num_stringsThe number of strings the column represents.
offsets_columnThe column of offset values for this column. The number of elements is one more than the total number of strings so the offset[last] - offset[0] is the total number of bytes in the strings vector.
chars_bufferThe buffer of char bytes for all the strings for this column. Individual strings are identified by the offsets and the nullmask.
null_countThe number of null string entries.
null_maskThe bits specifying the null strings in device memory. Arrow format for nulls is used for interpreting this bitmask.
Returns
Constructed strings column

◆ make_structs_column()

std::unique_ptr<cudf::column> cudf::make_structs_column ( size_type  num_rows,
std::vector< std::unique_ptr< column >> &&  child_columns,
size_type  null_count,
rmm::device_buffer &&  null_mask,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct a STRUCT column using specified child columns as members.

Specified child/member columns and null_mask are adopted by resultant struct column.

A struct column requires that all specified child columns have the same number of rows. A struct column's row count equals that of any/all of its child columns. A single struct row at any index is comprised of all the individual child column values at the same index, in the order specified in the list of child columns.

The specified null mask governs which struct row has a null value. This is orthogonal to the null values of individual child columns.

Parameters
[in]num_rowsThe number of struct values in the struct column.
[in]child_columnsThe list of child/members that the struct is comprised of.
[in]null_countThe number of null values in the struct column.
[in]null_maskThe bits specifying the null struct values in the column.
[in]streamOptional stream for use with all memory allocation and device kernels.
[in]mrOptional resource to use for device memory allocation.
Returns
Constructed structs column

◆ make_timestamp_column() [1/2]

template<typename B >
std::unique_ptr<column> cudf::make_timestamp_column ( data_type  type,
size_type  size,
B &&  null_mask,
size_type  null_count,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified timestamp data_type with a null mask.

Note
null_count is optional and will be computed if not provided.
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a timestamp type
Parameters
[in]typeThe desired timestamp element type
[in]sizeThe number of elements in the column
[in]null_maskNull mask to use for this column.
[in]null_countOptional number of nulls in the null_mask.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed timestamp type column

Definition at line 216 of file column_factories.hpp.

◆ make_timestamp_column() [2/2]

std::unique_ptr<column> cudf::make_timestamp_column ( data_type  type,
size_type  size,
mask_state  state = mask_state::UNALLOCATED,
rmm::cuda_stream_view  stream = cudf::get_default_stream(),
rmm::mr::device_memory_resource *  mr = rmm::mr::get_current_device_resource() 
)

Construct column with sufficient uninitialized storage to hold size elements of the specified timestamp data_type with an optional null mask.

Note
null_count() is determined by the requested null mask state
Exceptions
std::bad_allocif device memory allocation fails
cudf::logic_errorif type is not a timestamp type
cudf::logic_errorif size < 0
Parameters
[in]typeThe desired timestamp element type
[in]sizeThe number of elements in the column
[in]stateOptional, controls allocation/initialization of the column's null mask. By default, no null mask is allocated.
[in]streamCUDA stream used for device memory operations and kernel launches.
[in]mrDevice memory resource used to allocate the returned column's device memory
Returns
Constructed timestamp type column