-
Notifications
You must be signed in to change notification settings - Fork 45
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
Add memory tracing and tracking to Pluto's native memory_resources #271
Conversation
2896925
to
e1f8b11
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #271 +/- ##
===========================================
- Coverage 79.48% 79.40% -0.09%
===========================================
Files 881 881
Lines 67691 67843 +152
===========================================
+ Hits 53807 53868 +61
- Misses 13884 13975 +91 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
e9ee58d
to
747fe07
Compare
Private downstream CI failed. |
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.
Thanks @wdeconinck for this PR. Very important work in a nice coding. I have just two remarks.
@@ -212,7 +212,7 @@ int main(int argc, char* argv[]) { | |||
// std::pmr::memory_resource* mr = std::pmr::new_delete_resource(); | |||
auto new_delete_resource = std::make_unique<TraceMemoryResource>("new_delete_resource", std::pmr::new_delete_resource()); | |||
|
|||
auto pinned_resource = std::make_unique<TraceMemoryResource>("pinned_resource", std::make_unique<PinnedMemoryResource>()); | |||
auto pinned_resource = std::make_unique<TraceMemoryResource>("pinned_resource", pluto::pinned_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.
I am wondering if it is possible to have pluto::traced_pinned_resource("pinned_resource") in addition to pluto::pinned_resource instead of writing: std::make_unique<TraceMemoryResource>("pinned_resource", pluto::pinned_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.
The point of this PR is exactly to not need the TraceMemoryResource anymore. The sandbox code is not yet adapted but just made to compile. This can be for the future.
|
||
#include "MemoryPoolResource.h" | ||
|
||
#define LOG PLUTO_DEBUGGING | ||
|
||
namespace pluto { | ||
|
||
class HostMemoryResource : public async_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.
If async is not utilised in unit tests, perhaps we could stick with just memory_resource for the time being.
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.
Thank you for this suggestion! I have made the change.
…m resource which happens when bytes > largest_required_pool_block
…mory_tracking, add tracing
bc7cb20
to
bc41849
Compare
Private downstream CI succeeded. |
Add memory tracking and tracing to all pluto memory resources