-
Notifications
You must be signed in to change notification settings - Fork 156
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
Replace rmm::mr::device_memory_resource* with rmm::device_async_resource_ref #1373
Replace rmm::mr::device_memory_resource* with rmm::device_async_resource_ref #1373
Conversation
that enables consumers to specify properties of resources that they expect. These are defined | ||
in the `cuda::mr` namespace of libcu++, but RMM provides some convenience wrappers in | ||
`rmm/resource_ref.hpp`: | ||
- `rmm::device_async_resource_ref` accepts a memory resource that provides synchronous allocation |
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.
Do you mean device_resource_ref
here? It looks like a duplicate of below.
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 typo. Made same error in libcudf.
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.
Fixed
/merge |
Description
Closes #1371
Replaces all occurrences of
rmm::mr::device_memory_resource*
in parameters withrmm::device_async_resource_ref
. Also updates guidance in the DEVELOPER_GUIDE.mdChecklist