-
Notifications
You must be signed in to change notification settings - Fork 902
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename concatenate_tests.cu to .cpp #8555
Rename concatenate_tests.cu to .cpp #8555
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-21.08 #8555 +/- ##
===============================================
Coverage ? 83.00%
===============================================
Files ? 109
Lines ? 18215
Branches ? 0
===============================================
Hits ? 15119
Misses ? 3096
Partials ? 0 Continue to review full report at Codecov.
|
typed_data, h_data.data(), data_size(), cudaMemcpyHostToDevice, stream.value())); | ||
CUDA_TRY(cudaMemcpyAsync( | ||
typed_mask, h_mask.data(), mask_size(), cudaMemcpyHostToDevice, stream.value())); | ||
stream.synchronize(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could have stuck with the default stream and just synced it, but this is more general. 👍
@gpucibot merge |
Found this file can be changed to .cpp by modifying the
TypedColumnTest
to build its test data in the CPU and then cudaMemcpy it to the GPU. The remain ~1000 lines did not require any updates. Only a fewlists_column_wrapper
ctors needed to be corrected as similar to PR #8527.