From 54d9bb941791e9e3b4fbfadf7b0425d94d2c2280 Mon Sep 17 00:00:00 2001 From: Vukasin Milovanovic Date: Thu, 19 Dec 2024 17:34:45 -0800 Subject: [PATCH] fix some more --- cpp/src/io/orc/reader_impl_decode.cu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/src/io/orc/reader_impl_decode.cu b/cpp/src/io/orc/reader_impl_decode.cu index be7254db51c..b661bb4ff90 100644 --- a/cpp/src/io/orc/reader_impl_decode.cu +++ b/cpp/src/io/orc/reader_impl_decode.cu @@ -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,