-
Notifications
You must be signed in to change notification settings - Fork 212
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
[REVIEW] host_memory_resource #272
[REVIEW] host_memory_resource #272
Conversation
Too slow with pinned resource.
Discussion of this here: rapidsai/cudf#4020 Suggest @vuule or @OlivierNV review this PR for suitability. |
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.
Looks great, mostly straightforward. Couple of comments.
Co-Authored-By: Mark Harris <[email protected]>
…mm into fea-ext-host-memory-resource
rerun tests |
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.
Looks good, just a few refactoring suggestions.
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.
Looks good. Suggested minor changes to complement one of @trevorsm7 suggestions.
See refactored and improved aligned allocation functionality in This addresses most review comments as well as fixing the UB from the misaligned load/store. |
rerun tests |
return static_cast<void *>(ptr); | ||
|
||
// If the requested alignment isn't supported, use default | ||
alignment = (detail::is_supported_alignment(alignment)) |
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 there be an error or warning when the requested alignment isn't supported?
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.
This comes straight from the documentation and requirements of std::pmr::memory_resource
:
Allocates storage with a size of at least bytes bytes. The returned storage is aligned to the specified alignment if such alignment is supported, and to alignof(std::max_align_t) otherwise.
This is also documented in the host_memory_resource
.
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.
Seems strange to fail silently, but I suppose that's fine if documented.
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.
It's not failing. It's still allocating memory, but with a different alignment.
Co-Authored-By: Mark Harris <[email protected]>
Towards partial completion of #260, this PR introduces
host_memory_resource
to control host memory management.host_memory_resource
should have analignment
parameter for consistency withstd::pmr::memory_resource
aligned.hpp
for aligned memory allocation/free