-
Notifications
You must be signed in to change notification settings - Fork 920
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix an issue in cudf::row_bit_count involving structs and lists at mu…
…ltiple levels. (#11779) `row_bit_count` keeps track of a stack of "branches" which represent a span of rows to be included in the computed size. As you traverse through a hierarchy of lists, that span of rows is maintained as a stack. The code that was handling jumping out from the bottom of a stack to a new column was making the faulty assumption that the jump was only 1 level up. Authors: - https://github.com/nvdbaranec Approvers: - Nghia Truong (https://github.com/ttnghia) - Mike Wilson (https://github.com/hyperbolic2346) - Alessandro Bellina (https://github.com/abellina) URL: #11779
- Loading branch information
1 parent
1003e33
commit 5a416a0
Showing
2 changed files
with
44 additions
and
4 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