column_stream.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #pragma once
6 
7 #include <cudf/column/column.hpp>
8 
9 #include <cuda/stream>
10 
11 #include <memory>
12 
18 namespace CUDF_EXPORT cudf {
43 [[nodiscard]] std::unique_ptr<column> rebind_stream(column&& col, cuda::stream_ref stream);
44  // end of group
46 } // namespace CUDF_EXPORT cudf
A container of nullable device data as a column of elements.
Definition: column.hpp:37
Class definition for cudf::column.
std::unique_ptr< column > rebind_stream(column &&col, cuda::stream_ref stream)
Rebinds column's device buffers to use stream for deallocation.
cuDF interfaces
Definition: host_udf.hpp:27