Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix memcheck error in ORC reader call to cudf::io::copy_uncompressed_kernel #13643

Merged
merged 2 commits into from
Jun 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cpp/src/io/orc/reader_impl.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,8 @@ table_with_metadata reader::impl::read(uint64_t skip_rows,
CUDF_EXPECTS(not is_stripe_data_empty or stripe_info->indexLength == 0,
"Invalid index rowgroup stream data");

stripe_data.emplace_back(total_data_size, _stream);
stripe_data.emplace_back(
davidwendt marked this conversation as resolved.
Show resolved Hide resolved
cudf::util::round_up_safe(total_data_size, BUFFER_PADDING_MULTIPLE), _stream);
auto dst_base = static_cast<uint8_t*>(stripe_data.back().data());

// Coalesce consecutive streams into one read
Expand Down