-
Notifications
You must be signed in to change notification settings - Fork 311
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
Miscellaneous bug fixes #1561
Miscellaneous bug fixes #1561
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.20 #1561 +/- ##
==============================================
Coverage ? 60.26%
==============================================
Files ? 73
Lines ? 3214
Branches ? 0
==============================================
Hits ? 1937
Misses ? 1277
Partials ? 0 Continue to review full report at Codecov.
|
@@ -71,7 +71,7 @@ bool compare_renumbered_vectors(raft::handle_t const &handle, | |||
v1.end(), | |||
vertex_t{0}); | |||
|
|||
rmm::device_uvector<size_t> map(max, size_t{0}); | |||
rmm::device_uvector<size_t> map(max, cudaStream_t{nullptr}); |
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.
Should we just use handle.get_stream() here?
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.
Yes, we SHOULD.
@gpucibot merge |
Miscellaneous bug fixes: a compile error with CUDA 11.2 and a typo.