reshape.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 
17 #pragma once
18 
19 #include <cudf/column/column.hpp>
21 #include <cudf/types.hpp>
22 #include <cudf/utilities/export.hpp>
24 
25 #include <memory>
26 
27 namespace CUDF_EXPORT cudf {
53 std::unique_ptr<column> interleave_columns(
54  table_view const& input,
57 
77 std::unique_ptr<table> tile(
78  table_view const& input,
79  size_type count,
82 
86 enum class flip_endianness : bool { NO, YES };
87 
104 std::unique_ptr<column> byte_cast(
105  column_view const& input_column,
106  flip_endianness endian_configuration,
109  // end of group
111 
112 } // namespace CUDF_EXPORT cudf
设备数据的一种非拥有、不可变视图,表示为元素列,其中某些元素可能为空...
一组大小相同的 cudf::column_view。
cudf::column 的类定义。
std::unique_ptr< table > 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())
将输入表的行重复 count 次以形成新表。
flip_endianness
配置字节转换是否翻转字节序。
std::unique_ptr< column > 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())
将表的列交织成一个单列。
std::unique_ptr< column > 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())
将列的元素转换为字节列表。
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 接口
(mutable)_table_view 的类定义
libcudf 的类型声明。