-
Notifications
You must be signed in to change notification settings - Fork 66
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
Switch rmm device_memory_resource to device_async_resource_ref #2011
Switch rmm device_memory_resource to device_async_resource_ref #2011
Conversation
Signed-off-by: Paul Mattione <[email protected]>
build |
build |
build |
src/main/cpp/src/bloom_filter.cu
Outdated
@@ -31,6 +31,7 @@ | |||
|
|||
#include <rmm/cuda_stream_view.hpp> | |||
#include <rmm/exec_policy.hpp> | |||
#include <rmm/resource_ref.hpp> |
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.
Including the header in cu
file is redundant, since we already did that in the header of this source file (bloom_filter.hpp
).
This is applied for all other source files.
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.
Done.
Signed-off-by: Paul Mattione <[email protected]>
Signed-off-by: Paul Mattione <[email protected]>
Signed-off-by: Paul Mattione <[email protected]>
Signed-off-by: Paul Mattione <[email protected]>
build |
1 similar comment
build |
build |
2 similar comments
build |
build |
build |
Switch the soon-to-be-removed rmm device_memory_resource to device_async_resource_ref. However this PR does not update the resource adaptor, as that solution is not ready yet.