Skip to content

Commit

Permalink
fix some more
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Dec 20, 2024
1 parent 0a64f1c commit 54d9bb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/io/orc/reader_impl_decode.cu
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ rmm::device_buffer decompress_stripe_data(
switch (decompressor.compression()) {
case compression_type::ZLIB:
if (nvcomp::is_decompression_disabled(nvcomp::compression_type::DEFLATE)) {
gpuinflate(inflate_in_view, inflate_out, inflate_res, gzip_header_included::NO, stream);
gpuinflate(
inflate_in_view, inflate_out_view, inflate_res, gzip_header_included::NO, stream);
} else {
nvcomp::batched_decompress(nvcomp::compression_type::DEFLATE,
inflate_in_view,
Expand Down

0 comments on commit 54d9bb9

Please sign in to comment.