forked from nv-morpheus/Morpheus
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CUDF's
Column.from_column_view
by copying it and adjusting. (nv…
…-morpheus#2004) Closes nv-morpheus#1934 ## By Submitting this PR I confirm: - I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md). - When the PR is ready for review, new or existing tests cover these changes. - When the PR is ready for review, the documentation is up to date with these changes. Authors: - Christopher Harris (https://github.com/cwharris) Approvers: - Michael Demoret (https://github.com/mdemoret-nv) URL: nv-morpheus#2004
- Loading branch information
Showing
3 changed files
with
261 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
from __future__ import annotations | ||
import morpheus._lib.cudf_helpers | ||
import typing | ||
from cudf.core.buffer.exposure_tracked_buffer import ExposureTrackedBuffer | ||
from cudf.core.buffer.spillable_buffer import SpillableBuffer | ||
from cudf.core.dtypes import StructDtype | ||
import _cython_3_0_11 | ||
import cudf | ||
import rmm | ||
|
||
__all__ = [ | ||
"ExposureTrackedBuffer", | ||
"SpillableBuffer", | ||
"StructDtype", | ||
"cudf" | ||
"as_buffer", | ||
"bitmask_allocation_size_bytes", | ||
"cudf", | ||
"rmm" | ||
] | ||
|
||
|
||
__pyx_capi__: dict # value = {'make_table_from_table_with_metadata': <capsule object "PyObject *(cudf::io::table_with_metadata, int)">, 'make_table_from_table_info_data': <capsule object "PyObject *(morpheus::TableInfoData, PyObject *)">, 'make_table_info_data_from_table': <capsule object "morpheus::TableInfoData (PyObject *)">, 'data_from_table_view_indexed': <capsule object "PyObject *(cudf::table_view, PyObject *, PyObject *, PyObject *, PyObject *)">} | ||
__test__ = {} | ||
bitmask_allocation_size_bytes: _cython_3_0_11.cython_function_or_method # value = <cyfunction bitmask_allocation_size_bytes> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters