You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes the logic in `cudf::strings::detail::copy_range` handling of nulls in the target range. The optimization check for nulls is removed simplifying the logic and making it more reliable as well. The benchmark showed no significant change in performance.
Also adds a specific gtest for this case.
Error was introduced in #15010Closes#16618
Authors:
- David Wendt (https://github.com/davidwendt)
Approvers:
- Nghia Truong (https://github.com/ttnghia)
- Bradley Dice (https://github.com/bdice)
URL: #16626
Describe the bug
cudaErrorIllegalAddress
while copying values to nullable string series. This is a regression from the behavior in24.02
.Steps/Code to reproduce bug
However, the following does work:
as does:
Expected behavior
expected the value to be copied to the specified range without causing
cudaErrorIllegalAddress
Environment overview (please complete the following information)
Additional context
Morpheus depends heavily on this behavior.
The text was updated successfully, but these errors were encountered: