Skip to content

Commit

Permalink
Don't expose in wrappers module
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Oct 10, 2024
1 parent 7394afe commit 4dc7b88
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 61 deletions.
1 change: 0 additions & 1 deletion python/pylibcudf/pylibcudf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,3 @@ add_subdirectory(libcudf)
add_subdirectory(strings)
add_subdirectory(io)
add_subdirectory(nvtext)
add_subdirectory(wrappers)
2 changes: 0 additions & 2 deletions python/pylibcudf/pylibcudf/__init__.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ from . cimport (
transpose,
types,
unary,
wrappers,
)
from .column cimport Column
from .gpumemoryview cimport gpumemoryview
Expand Down Expand Up @@ -80,6 +79,5 @@ __all__ = [
"transpose",
"types",
"unary",
"wrappers",
"nvtext",
]
7 changes: 2 additions & 5 deletions python/pylibcudf/pylibcudf/libcudf/wrappers/durations.pxd
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# Copyright (c) 2020-2024, NVIDIA CORPORATION.
# Copyright (c) 2020, NVIDIA CORPORATION.

from libc.stdint cimport int32_t, int64_t
from libc.stdint cimport int64_t


cdef extern from "cudf/wrappers/durations.hpp" namespace "cudf" nogil:
ctypedef int32_t duration_D
ctypedef int32_t duration_h
ctypedef int32_t duration_m
ctypedef int64_t duration_s
ctypedef int64_t duration_ms
ctypedef int64_t duration_us
Expand Down
7 changes: 2 additions & 5 deletions python/pylibcudf/pylibcudf/libcudf/wrappers/timestamps.pxd
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# Copyright (c) 2020-2024, NVIDIA CORPORATION.
# Copyright (c) 2020, NVIDIA CORPORATION.

from libc.stdint cimport int32_t, int64_t
from libc.stdint cimport int64_t


cdef extern from "cudf/wrappers/timestamps.hpp" namespace "cudf" nogil:
ctypedef int32_t timestamp_D
ctypedef int32_t timestamp_h
ctypedef int32_t timestamp_m
ctypedef int64_t timestamp_s
ctypedef int64_t timestamp_ms
ctypedef int64_t timestamp_us
Expand Down
22 changes: 0 additions & 22 deletions python/pylibcudf/pylibcudf/wrappers/CMakeLists.txt

This file was deleted.

3 changes: 0 additions & 3 deletions python/pylibcudf/pylibcudf/wrappers/__init__.pxd

This file was deleted.

1 change: 0 additions & 1 deletion python/pylibcudf/pylibcudf/wrappers/__init__.py

This file was deleted.

11 changes: 0 additions & 11 deletions python/pylibcudf/pylibcudf/wrappers/durations.pxd

This file was deleted.

11 changes: 0 additions & 11 deletions python/pylibcudf/pylibcudf/wrappers/timestamps.pxd

This file was deleted.

0 comments on commit 4dc7b88

Please sign in to comment.