explode.hpp
前往此文件的文档。
1 /*
2  * Copyright (c) 2021-2024, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * https://apache.ac.cn/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <cudf/column/column.hpp>
21 #include <cudf/types.hpp>
23 
24 #include <memory>
25 
26 namespace CUDF_EXPORT cudf {
72 std::unique_ptr<table> explode(
73  table_view const& input_table,
74  size_type explode_column_idx,
77 
118 std::unique_ptr<table> explode_position(
119  table_view const& input_table,
120  size_type explode_column_idx,
123 
162 std::unique_ptr<table> explode_outer(
163  table_view const& input_table,
164  size_type explode_column_idx,
167 
208 std::unique_ptr<table> explode_outer_position(
209  table_view const& input_table,
210  size_type explode_column_idx,
213  // end of group
215 
216 } // namespace CUDF_EXPORT cudf
一组相同大小的 cudf::column_view。
cudf::column 的类定义。
std::unique_ptr< table > explode_outer(table_view const &input_table, size_type explode_column_idx, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
展开列表列的元素,保留其中的任何空条目或空列表。
std::unique_ptr< table > explode(table_view const &input_table, size_type explode_column_idx, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
展开列表列的元素。
std::unique_ptr< table > explode_outer_position(table_view const &input_table, size_type explode_column_idx, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
展开列表列的元素,保留任何空条目或空列表,并包含一个位置列...
std::unique_ptr< table > explode_position(table_view const &input_table, size_type explode_column_idx, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
展开列表列的元素并包含一个位置列。
rmm::cuda_stream_view const get_default_stream()
获取当前默认流。
rmm::device_async_resource_ref get_current_device_resource_ref()
获取当前设备内存资源引用。
cuda::mr::async_resource_ref< cuda::mr::device_accessible > device_async_resource_ref
int32_t size_type
列和表的行索引类型。
定义: types.hpp:95
cuDF 接口
定义: host_udf.hpp:37
(mutable)_table_view 的类定义
libcudf 的类型声明。