Skip to content
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

Merged
merged 8 commits into from
Apr 1, 2025

Conversation

wdeconinck
Copy link
Member

Add memory tracking and tracing to all pluto memory resources

@wdeconinck wdeconinck force-pushed the feature/pluto_memory_trace_and_track branch from 2896925 to e1f8b11 Compare April 1, 2025 08:59
@codecov-commenter
Copy link

Codecov Report

Attention: Patch coverage is 50.43860% with 113 lines in your changes missing coverage. Please review.

Project coverage is 79.40%. Comparing base (f537250) to head (e9ee58d).

Files with missing lines Patch % Lines
pluto/src/pluto/memory.cc 31.86% 62 Missing ⚠️
...to/src/pluto/memory_resource/MemoryPoolResource.cc 55.55% 24 Missing ⚠️
pluto/src/pluto/trace.cc 50.00% 16 Missing ⚠️
.../src/pluto/memory_resource/DeviceMemoryResource.cc 38.46% 8 Missing ⚠️
...to/src/pluto/memory_resource/HostMemoryResource.cc 70.00% 3 Missing ⚠️
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.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@wdeconinck wdeconinck force-pushed the feature/pluto_memory_trace_and_track branch from e9ee58d to 747fe07 Compare April 1, 2025 11:33
@wdeconinck wdeconinck marked this pull request as ready for review April 1, 2025 11:33
@wdeconinck wdeconinck requested a review from sbrdar April 1, 2025 11:34
Copy link

github-actions bot commented Apr 1, 2025

Private downstream CI failed.
Workflow name: private-downstream-ci
View the logs at https://github.com/ecmwf/private-downstream-ci/actions/runs/14195744020.

Copy link
Collaborator

@sbrdar sbrdar left a 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());
Copy link
Collaborator

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()).

Copy link
Member Author

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 {
Copy link
Collaborator

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.

Copy link
Member Author

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.

@wdeconinck wdeconinck force-pushed the feature/pluto_memory_trace_and_track branch from bc7cb20 to bc41849 Compare April 1, 2025 15:01
@wdeconinck wdeconinck merged commit fba4ec5 into develop Apr 1, 2025
139 checks passed
@wdeconinck wdeconinck changed the title Feature/pluto memory trace and track Add memory tracing and tracking to Pluto's native memory_resources Apr 1, 2025
@wdeconinck wdeconinck deleted the feature/pluto_memory_trace_and_track branch April 1, 2025 15:09
Copy link

github-actions bot commented Apr 1, 2025

Private downstream CI succeeded.
Workflow name: private-downstream-ci
View the logs at https://github.com/ecmwf/private-downstream-ci/actions/runs/14200320631.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants