Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
pmattione-nvidia committed Oct 31, 2024
1 parent 8984cce commit a0a5060
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/io/parquet/decode_fixed.cu
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,8 @@ CUDF_KERNEL void __launch_bounds__(decode_block_size_t, 8)
constexpr int rle_run_buffer_bytes =
cudf::util::round_up_unsafe(rle_run_buffer_size * sizeof(rle_run), size_t{16});
constexpr int shared_buf_size =
rle_run_buffer_bytes * (static_cast<int>(has_dict_t) + static_cast<int>(has_bools_t) + static_cast<int>(has_lists_t) + 1);
rle_run_buffer_bytes * (static_cast<int>(has_dict_t) + static_cast<int>(has_bools_t) +
static_cast<int>(has_lists_t) + 1);
__shared__ __align__(16) uint8_t shared_buf[shared_buf_size];

// setup all shared memory buffers
Expand Down

0 comments on commit a0a5060

Please sign in to comment.