Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move pylibcudf/libcudf/wrappers/decimals to pylibcudf/libcudf/fixed_point #17048

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (c) 2021-2024, NVIDIA CORPORATION.

from libc.stdint cimport int32_t


cdef extern from "cudf/fixed_point/fixed_point.hpp" namespace "numeric" nogil:
cdef cppclass scale_type:
scale_type(int32_t)
2 changes: 1 addition & 1 deletion python/pylibcudf/pylibcudf/libcudf/scalar/scalar.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ from libc.stdint cimport int32_t, int64_t
from libcpp cimport bool
from libcpp.string cimport string
from pylibcudf.libcudf.column.column_view cimport column_view
from pylibcudf.libcudf.fixed_point.fixed_point cimport scale_type
from pylibcudf.libcudf.table.table_view cimport table_view
from pylibcudf.libcudf.types cimport data_type
from pylibcudf.libcudf.wrappers.decimals cimport scale_type


cdef extern from "cudf/scalar/scalar.hpp" namespace "cudf" nogil:
Expand Down
16 changes: 0 additions & 16 deletions python/pylibcudf/pylibcudf/libcudf/wrappers/decimals.pxd

This file was deleted.

Loading