-
Notifications
You must be signed in to change notification settings - Fork 902
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-23.10' into 14088
- Loading branch information
Showing
94 changed files
with
724 additions
and
449 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
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
80 changes: 80 additions & 0 deletions
80
cpp/include/cudf/strings/detail/convert/fixed_point_to_string.cuh
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,80 @@ | ||
/* | ||
* Copyright (c) 2023, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
#pragma once | ||
|
||
#include <cudf/strings/detail/convert/int_to_string.cuh> | ||
|
||
namespace cudf::strings::detail { | ||
|
||
/** | ||
* @brief Returns the number of digits in the given fixed point number. | ||
* | ||
* @param value The value of the fixed point number | ||
* @param scale The scale of the fixed point number | ||
* @return int32_t The number of digits required to represent the fixed point number | ||
*/ | ||
__device__ inline int32_t fixed_point_string_size(__int128_t const& value, int32_t scale) | ||
{ | ||
if (scale >= 0) return count_digits(value) + scale; | ||
|
||
auto const abs_value = numeric::detail::abs(value); | ||
auto const exp_ten = numeric::detail::exp10<__int128_t>(-scale); | ||
auto const fraction = count_digits(abs_value % exp_ten); | ||
auto const num_zeros = std::max(0, (-scale - fraction)); | ||
return static_cast<int32_t>(value < 0) + // sign if negative | ||
count_digits(abs_value / exp_ten) + // integer | ||
1 + // decimal point | ||
num_zeros + // zeros padding | ||
fraction; // size of fraction | ||
} | ||
|
||
/** | ||
* @brief Converts the given fixed point number to a string. | ||
* | ||
* Caller is responsible for ensuring that the output buffer is large enough. The required output | ||
* buffer size can be obtained by calling `fixed_point_string_size`. | ||
* | ||
* @param value The value of the fixed point number | ||
* @param scale The scale of the fixed point number | ||
* @param out_ptr The pointer to the output string | ||
*/ | ||
__device__ inline void fixed_point_to_string(__int128_t const& value, int32_t scale, char* out_ptr) | ||
{ | ||
if (scale >= 0) { | ||
out_ptr += integer_to_string(value, out_ptr); | ||
thrust::generate_n(thrust::seq, out_ptr, scale, []() { return '0'; }); // add zeros | ||
return; | ||
} | ||
|
||
// scale < 0 | ||
// write format: [-]integer.fraction | ||
// where integer = abs(value) / (10^abs(scale)) | ||
// fraction = abs(value) % (10^abs(scale)) | ||
if (value < 0) *out_ptr++ = '-'; // add sign | ||
auto const abs_value = numeric::detail::abs(value); | ||
auto const exp_ten = numeric::detail::exp10<__int128_t>(-scale); | ||
auto const num_zeros = std::max(0, (-scale - count_digits(abs_value % exp_ten))); | ||
|
||
out_ptr += integer_to_string(abs_value / exp_ten, out_ptr); // add the integer part | ||
*out_ptr++ = '.'; // add decimal point | ||
|
||
thrust::generate_n(thrust::seq, out_ptr, num_zeros, []() { return '0'; }); // add zeros | ||
out_ptr += num_zeros; | ||
|
||
integer_to_string(abs_value % exp_ten, out_ptr); // add the fraction part | ||
} | ||
|
||
} // namespace cudf::strings::detail |
Oops, something went wrong.