Skip to content

Commit

Permalink
Revert comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaseeb123 committed Jan 10, 2025
1 parent 9f4ede3 commit edaff09
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cpp/src/io/utilities/column_buffer_strings.cu
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ std::unique_ptr<column> cudf::io::detail::inline_column_buffer::make_string_colu
auto offsets_col = make_numeric_column(
data_type{type_id::INT64}, size + 1, mask_state::UNALLOCATED, stream, _mr);
auto d_offsets64 = offsets_col->mutable_view().template data<int64_t>();
// it's safe to call with size + 1 because _data is also sized that large
cudf::detail::sizes_to_offsets(
offsets_ptr, offsets_ptr + size + 1, d_offsets64, initial_string_offset, stream);
return make_strings_column(
Expand Down

0 comments on commit edaff09

Please sign in to comment.