Skip to content

Commit

Permalink
CTAD
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Dec 11, 2024
1 parent e017202 commit 06b8276
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/io/orc/writer_impl.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1409,9 +1409,9 @@ encoded_footer_statistics finish_statistic_blobs(Footer const& footer,
}

auto const& mr = cudf::get_current_device_resource_ref();
auto const d_srcs = cudf::detail::make_device_uvector_async<void*>(h_srcs, stream, mr);
auto const d_dsts = cudf::detail::make_device_uvector_async<void*>(h_dsts, stream, mr);
auto const d_lens = cudf::detail::make_device_uvector_async<size_t>(h_lens, stream, mr);
auto const d_srcs = cudf::detail::make_device_uvector_async(h_srcs, stream, mr);
auto const d_dsts = cudf::detail::make_device_uvector_async(h_dsts, stream, mr);
auto const d_lens = cudf::detail::make_device_uvector_async(h_lens, stream, mr);
cudf::detail::batched_memcpy_async(
d_srcs.begin(), d_dsts.begin(), d_lens.begin(), d_srcs.size(), stream);

Expand Down

0 comments on commit 06b8276

Please sign in to comment.