Skip to content

Commit

Permalink
Disable dict support for split-page kernel in the parquet reader. (#1…
Browse files Browse the repository at this point in the history
…6128)

Dictionary support for this particular flavor of kernel was being compiled in. Harmless, but caused an unneeded increase in shared memory usage.  This PR disables it.

Authors:
  - https://github.com/nvdbaranec

Approvers:
  - Ed Seidl (https://github.com/etseidl)
  - Paul Mattione (https://github.com/pmattione-nvidia)
  - MithunR (https://github.com/mythrocks)

URL: #16128
  • Loading branch information
nvdbaranec authored Jul 10, 2024
1 parent f592e9c commit 7b8169a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/src/io/parquet/decode_fixed.cu
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ DecodeSplitPageFixedWidthData(cudf::detail::hostdevice_span<PageInfo> pages,
gpuDecodePageDataGeneric<uint8_t,
decode_block_size,
decode_kernel_mask::BYTE_STREAM_SPLIT_FIXED_WIDTH_NESTED,
true,
false,
true,
decode_fixed_width_split_values_func>
<<<dim_grid, dim_block, 0, stream.value()>>>(
Expand All @@ -801,7 +801,7 @@ DecodeSplitPageFixedWidthData(cudf::detail::hostdevice_span<PageInfo> pages,
gpuDecodePageDataGeneric<uint8_t,
decode_block_size,
decode_kernel_mask::BYTE_STREAM_SPLIT_FIXED_WIDTH_FLAT,
true,
false,
false,
decode_fixed_width_split_values_func>
<<<dim_grid, dim_block, 0, stream.value()>>>(
Expand All @@ -812,7 +812,7 @@ DecodeSplitPageFixedWidthData(cudf::detail::hostdevice_span<PageInfo> pages,
gpuDecodePageDataGeneric<uint16_t,
decode_block_size,
decode_kernel_mask::BYTE_STREAM_SPLIT_FIXED_WIDTH_NESTED,
true,
false,
true,
decode_fixed_width_split_values_func>
<<<dim_grid, dim_block, 0, stream.value()>>>(
Expand All @@ -821,7 +821,7 @@ DecodeSplitPageFixedWidthData(cudf::detail::hostdevice_span<PageInfo> pages,
gpuDecodePageDataGeneric<uint16_t,
decode_block_size,
decode_kernel_mask::BYTE_STREAM_SPLIT_FIXED_WIDTH_FLAT,
true,
false,
false,
decode_fixed_width_split_values_func>
<<<dim_grid, dim_block, 0, stream.value()>>>(
Expand Down

0 comments on commit 7b8169a

Please sign in to comment.