Skip to content

Commit

Permalink
use async policy
Browse files Browse the repository at this point in the history
  • Loading branch information
tgujar committed Oct 22, 2024
1 parent 30e3946 commit 2de545b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/copying/concatenate.cu
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ std::unique_ptr<column> for_each_concatenate(host_span<column_view const> views,

auto count = 0;
for (auto& v : views) {
thrust::copy(rmm::exec_policy(stream), v.begin<T>(), v.end<T>(), m_view.begin<T>() + count);
thrust::copy(
rmm::exec_policy_nosync(stream), v.begin<T>(), v.end<T>(), m_view.begin<T>() + count);
count += v.size();
}

Expand Down

0 comments on commit 2de545b

Please sign in to comment.