Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed May 23, 2022
1 parent b70f21e commit 9ecc7a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/src/io/comp/uncomp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -529,9 +529,8 @@ size_t decompress_zstd(host_span<uint8_t const> src,
CUDF_EXPECTS(hd_stats[0].status == 0, "ZSTD decompression failed");

// Copy temporary output to `dst`
CUDF_CUDA_TRY(
cudaMemcpyAsync(dst.data(), d_dst.data(), hd_stats[0].bytes_written, cudaMemcpyDeviceToHost, stream.value()));

CUDF_CUDA_TRY(cudaMemcpyAsync(
dst.data(), d_dst.data(), hd_stats[0].bytes_written, cudaMemcpyDeviceToHost, stream.value()));

return hd_stats[0].bytes_written;
}
Expand Down

0 comments on commit 9ecc7a1

Please sign in to comment.