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

Modified message from MaxMemoryPreload #44502

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PerfTools/MaxMemoryPreload/src/preload.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ namespace {
auto allocs = nAllocations_.load(std::memory_order_acquire);
auto deallocs = nDeallocations_.load(std::memory_order_acquire);

std::cerr << "Memory Report"
<< "\n total memory requested: " << finalRequested << "\n max memory used: " << maxActual
<< "\n presently used: " << present << "\n # allocations calls: " << allocs
<< "\n # deallocations calls: " << deallocs << "\n";
std::cerr << "Memory Report: total memory requested: " << finalRequested
<< "\nMemory Report: max memory used: " << maxActual << "\nMemory Report: presently used: " << present
<< "\nMemory Report: # allocations calls: " << allocs
<< "\nMemory Report: # deallocations calls: " << deallocs << "\n";
}

private:
Expand Down