Skip to content

Commit

Permalink
Update cpp/src/io/parquet/decode_fixed.cu
Browse files Browse the repository at this point in the history
Co-authored-by: nvdbaranec <[email protected]>
  • Loading branch information
pmattione-nvidia and nvdbaranec authored Sep 26, 2024
1 parent 326b386 commit 41cb982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/io/parquet/decode_fixed.cu
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ static __device__ int gpuUpdateValidityAndRowIndicesNested(
for (int d_idx = 0; d_idx <= max_depth; d_idx++) {
auto& ni = s->nesting_info[d_idx];

int is_valid = ((d >= ni.max_def_level) && in_row_bounds) ? 1 : 0;
int const is_valid = ((d >= ni.max_def_level) && in_row_bounds) ? 1 : 0;

// thread and block validity count
block_scan_results valid_count_results;
Expand Down

0 comments on commit 41cb982

Please sign in to comment.