From b898cbabbf2821da8dcaba92e6c724a24069c8bc Mon Sep 17 00:00:00 2001 From: Paul Mattione Date: Fri, 4 Oct 2024 12:32:53 -0400 Subject: [PATCH] Style fixes --- cpp/src/io/parquet/decode_fixed.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/io/parquet/decode_fixed.cu b/cpp/src/io/parquet/decode_fixed.cu index 62709e0b27f..42f90880fe9 100644 --- a/cpp/src/io/parquet/decode_fixed.cu +++ b/cpp/src/io/parquet/decode_fixed.cu @@ -327,7 +327,7 @@ static __device__ int gpuUpdateValidityAndRowIndicesNested( int const valid_map_offset = ni.valid_map_offset; int const vindex = value_count + thread_value_count; // absolute input value index int const bit_offset = (valid_map_offset + vindex + write_start) - - first_row; // absolute bit offset into the output validity map + first_row; // absolute bit offset into the output validity map int const write_end = cudf::detail::warp_size - __clz(in_write_row_bounds); // last bit in the warp to store int const bit_count = write_end - write_start;