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
Spark-rapids uncovered an error in string processing NVIDIA/spark-rapids#9948. The issue arises when lists are present, num_rows/skip_rows is utilized, and the string column contains rows that begin and end in different pages. In this particular case, the code used to calculate page start/end value indices incorrectly set the start value to 0, resulting in an overestimation of the string buffer size, and the introduction of uninitialized data to the resulting column.
This condition is hard to test for because libcudf will always start a page at a new row boundary.
The text was updated successfully, but these errors were encountered:
Spark-rapids uncovered an error in string processing NVIDIA/spark-rapids#9948. The issue arises when lists are present, num_rows/skip_rows is utilized, and the string column contains rows that begin and end in different pages. In this particular case, the code used to calculate page start/end value indices incorrectly set the start value to
0
, resulting in an overestimation of the string buffer size, and the introduction of uninitialized data to the resulting column.This condition is hard to test for because libcudf will always start a page at a new row boundary.
The text was updated successfully, but these errors were encountered: