-
Notifications
You must be signed in to change notification settings - Fork 915
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
Change device_vector to device_uvector in nvtext source files #7512
Change device_vector to device_uvector in nvtext source files #7512
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7512 +/- ##
===============================================
+ Coverage 81.86% 82.29% +0.43%
===============================================
Files 101 101
Lines 16884 17264 +380
===============================================
+ Hits 13822 14208 +386
+ Misses 3062 3056 -6
Continue to review full report at Codecov.
|
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.
Use back_element and async version of set_element.
@gpucibot merge |
…ai#7512) Reference rapidsai#7287 This PR changes `cpp/src/text/*` source files to use `rmm::device_uvector` instead of `rmm:device_vector`. This allows keeping the memory operations on the provided kernel stream. Authors: - David (@davidwendt) Approvers: - Paul Taylor (@trxcllnt) - Mark Harris (@harrism) URL: rapidsai#7512
Reference #7287
This PR changes
cpp/src/text/*
source files to usermm::device_uvector
instead ofrmm:device_vector
. This allows keeping the memory operations on the provided kernel stream.