encode.hpp
前往此文件的文档。
1 /*
2  * Copyright (c) 2020-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 #pragma once
17 
18 #include <cudf/column/column.hpp>
22 
23 namespace CUDF_EXPORT cudf {
24 namespace dictionary {
59 std::unique_ptr<column> encode(
60  column_view const& column,
61  data_type indices_type = data_type{type_id::INT32},
64 
80 std::unique_ptr<column> decode(
81  dictionary_column_view const& dictionary_column,
84  // end of group
86 } // namespace dictionary
87 } // namespace CUDF_EXPORT cudf
设备数据作为列元素的非拥有、不可变视图,其中某些元素可能为null...
包含可为空的设备数据作为列元素的容器。
定义: column.hpp:47
指示列中元素的逻辑数据类型。
定义: types.hpp:243
用于对字典列进行操作的包装器类。
cudf::column 的类定义。
column view 类定义
cudf::dictionary_column_view 的类定义。
rmm::cuda_stream_view const get_default_stream()
获取当前默认流。
std::unique_ptr< column > encode(column_view const &column, data_type indices_type=data_type{type_id::INT32}, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
通过字典编码现有列来构造字典列。
std::unique_ptr< column > decode(dictionary_column_view const &dictionary_column, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
通过使用提供的 dictionary_column 中的键聚集到新列中来创建列...
rmm::device_async_resource_ref get_current_device_resource_ref()
获取当前设备内存资源引用。
cuda::mr::async_resource_ref< cuda::mr::device_accessible > device_async_resource_ref
cuDF 接口
定义: host_udf.hpp:37