-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/branch-24.12' into pylibcudf/s…
…trings/convert_floats
- Loading branch information
Showing
12 changed files
with
212 additions
and
84 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
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
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
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 |
---|---|---|
|
@@ -3,5 +3,6 @@ from . cimport ( | |
convert_booleans, | ||
convert_datetime, | ||
convert_durations, | ||
convert_fixed_point, | ||
convert_floats, | ||
) |
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 |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
convert_booleans, | ||
convert_datetime, | ||
convert_durations, | ||
convert_fixed_point, | ||
convert_floats, | ||
) |
11 changes: 11 additions & 0 deletions
11
python/pylibcudf/pylibcudf/strings/convert/convert_fixed_point.pxd
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION. | ||
|
||
from pylibcudf.column cimport Column | ||
from pylibcudf.types cimport DataType | ||
|
||
|
||
cpdef Column to_fixed_point(Column input, DataType output_type) | ||
|
||
cpdef Column from_fixed_point(Column input) | ||
|
||
cpdef Column is_fixed_point(Column input, DataType decimal_type=*) |
107 changes: 107 additions & 0 deletions
107
python/pylibcudf/pylibcudf/strings/convert/convert_fixed_point.pyx
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 |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION. | ||
|
||
from libcpp.memory cimport unique_ptr | ||
from libcpp.utility cimport move | ||
from pylibcudf.column cimport Column | ||
from pylibcudf.libcudf.column.column cimport column | ||
from pylibcudf.libcudf.strings.convert cimport ( | ||
convert_fixed_point as cpp_fixed_point, | ||
) | ||
from pylibcudf.types cimport DataType, type_id | ||
|
||
|
||
cpdef Column to_fixed_point(Column input, DataType output_type): | ||
""" | ||
Returns a new fixed-point column parsing decimal values from the | ||
provided strings column. | ||
For details, see :cpp:details:`cudf::strings::to_fixed_point` | ||
Parameters | ||
---------- | ||
input : Column | ||
Strings instance for this operation. | ||
output_type : DataType | ||
Type of fixed-point column to return including the scale value. | ||
Returns | ||
------- | ||
Column | ||
New column of output_type. | ||
""" | ||
cdef unique_ptr[column] c_result | ||
|
||
with nogil: | ||
c_result = move( | ||
cpp_fixed_point.to_fixed_point( | ||
input.view(), | ||
output_type.c_obj, | ||
) | ||
) | ||
|
||
return Column.from_libcudf(move(c_result)) | ||
|
||
cpdef Column from_fixed_point(Column input): | ||
""" | ||
Returns a new strings column converting the fixed-point values | ||
into a strings column. | ||
For details, see :cpp:details:`cudf::strings::from_fixed_point` | ||
Parameters | ||
---------- | ||
input : Column | ||
Fixed-point column to convert. | ||
Returns | ||
------- | ||
Column | ||
New strings column. | ||
""" | ||
cdef unique_ptr[column] c_result | ||
|
||
with nogil: | ||
c_result = move( | ||
cpp_fixed_point.from_fixed_point( | ||
input.view(), | ||
) | ||
) | ||
|
||
return Column.from_libcudf(move(c_result)) | ||
|
||
cpdef Column is_fixed_point(Column input, DataType decimal_type=None): | ||
""" | ||
Returns a boolean column identifying strings in which all | ||
characters are valid for conversion to fixed-point. | ||
For details, see :cpp:details:`cudf::strings::is_fixed_point` | ||
Parameters | ||
---------- | ||
input : Column | ||
Strings instance for this operation. | ||
decimal_type : DataType | ||
Fixed-point type (with scale) used only for checking overflow. | ||
Defaults to Decimal64 | ||
Returns | ||
------- | ||
Column | ||
New column of boolean results for each string. | ||
""" | ||
cdef unique_ptr[column] c_result | ||
|
||
if decimal_type is None: | ||
decimal_type = DataType(type_id.DECIMAL64) | ||
|
||
with nogil: | ||
c_result = move( | ||
cpp_fixed_point.is_fixed_point( | ||
input.view(), | ||
decimal_type.c_obj, | ||
) | ||
) | ||
|
||
return Column.from_libcudf(move(c_result)) |
Oops, something went wrong.