Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Oct 10, 2024
1 parent 0e24685 commit 96d753c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pylibcudf/pylibcudf/contiguous_split.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ cpdef Table unpack(PackedColumns input):
cdef table_view v = cpp_unpack(dereference(input.c_obj))
# Since `Table.from_table_view` doesn't support an arbitrary owning object,
# we copy the table, see <https://github.com/rapidsai/cudf/issues/17040>.
cdef unique_ptr[table] t = make_unique[table](v) # Copy
cdef unique_ptr[table] t = make_unique[table](v)
return Table.from_libcudf(move(t))


Expand Down Expand Up @@ -164,5 +164,5 @@ cpdef Table unpack_from_memoryviews(memoryview metadata, gpumemoryview gpu_data)
cdef table_view v = cpp_unpack(metadata_ptr, gpu_data_ptr)
# Since `Table.from_table_view` doesn't support an arbitrary owning object,
# we copy the table, see <https://github.com/rapidsai/cudf/issues/17040>.
cdef unique_ptr[table] t = make_unique[table](v) # Copy
cdef unique_ptr[table] t = make_unique[table](v)
return Table.from_libcudf(move(t))

0 comments on commit 96d753c

Please sign in to comment.