-
Notifications
You must be signed in to change notification settings - Fork 916
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
Clean up literal zero cuda_stream_view arguments #7774
Conversation
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.
Not sure how you found all these. Looks good to me.
rerun tests |
The compiler found them for me when I built with rapidsai/rmm#740. :) Otherwise that would take some pretty killer regex-fu. |
rerun tests |
Hmm this is failing from:
While building |
Rerun tests |
I'm going to take this the last mile for @harrism. I'll aim to finish this up over the next couple of days, just holding off until CI is a bit more stable so that it doesn't have to go through multiple merge branch-0.20 -> run CI cycles. |
Codecov Report
@@ Coverage Diff @@
## branch-0.20 #7774 +/- ##
===============================================
+ Coverage 82.30% 82.74% +0.44%
===============================================
Files 101 103 +2
Lines 17053 17721 +668
===============================================
+ Hits 14035 14663 +628
- Misses 3018 3058 +40
Continue to review full report at Codecov.
|
@gpucibot merge |
By this line. |
Reference #7774 Some more changes to files created after the previous cleanup. This PR fixes places using the literal '0' parameter instead of `rmm::cuda_stream_default` Authors: - David Wendt (https://github.com/davidwendt) Approvers: - Nghia Truong (https://github.com/ttnghia) - Mike Wilson (https://github.com/hyperbolic2346) - Paul Taylor (https://github.com/trxcllnt) - Conor Hoekstra (https://github.com/codereport) URL: #7968
Eliminates literal zero arguments to
cuda_stream_view
parameters in libcudf, replacing them withrmm::cuda_stream_default
Followup to rapidsai/rmm#740