Daniel Lemire's blog

, 6 min read

Measuring the memory usage of your C++ program

9 thoughts on “Measuring the memory usage of your C++ program”

  1. I find it interesting that when you replace

    std::vector v2(1000000);

    with

    std::vector v2;
    v2.reserve(1000000);

    Memory usage doesn’t change at all after the reserve() call. Linux only provides allocated pages when they are actually touched

    1. It is a good point and I have updated the blog post accordingly.

      1. Yes, this is why I pre-allocate a large memory footprint and then touch/pin every allocated page at application start time in order to prevent latency hiccups from runtime page faults (which actually increase *real* memory usage).

  2. MD says:
  3. Khalid Kunji says:

    It can be a fun learning exercise, but isn’t it a legal requirement to cover Valgrind whenever discussing C++ and memory? 😛
    A quick look about Heaptrack suggests that people primarily sing its praises for speed. Perhaps I’ll try it sometime as I did have an issue a few months ago where the code took a few hours to reach the pain point when run with Valgrind. The concerns with new tooling are of course to 1) get used to it and 2) wondering how buggy it is since it hasn’t been as battle tested.

    It’s also doesn’t inspire much confidence that when asked about related tools and why he made Heaptrack he replied, “Hey Erwan,
    the simple answer is that I was not aware of these solutions… ” Usually one would like to know something about what is available before diving in headfirst.

    The Cherno over on YouTube has some nice videos on rolling a little bit of your own memory tracking.

    1. Valgrind 3.18 does not support these instructions. I have not tried with valgrind 3.19.

  4. Tim Parker says:

    As with the dynamic library performance article, understanding what you’re actually measuring is often useful before making too many statements about the results.

  5. matklad says:

    > Ivica Bogosavljevic recommends that Linux users try heaptrack to better understand memory usage.

    I can also recommend https://github.com/koute/bytehound, for me it gave much better visibility than heaptrack (the data collection algorithm is similar between the two, but in bytehound I can in one click get a flamegraph of live allocations at a given point in time, which I’ve found the most useful visualization)

  6. Adrian Piccioli says:

    Easy guys, stop discussing

    The NSA just “prohibited” C++ precisely because of memory concerns so all this discussion became virtual = 0

    Good point is you can switch to Rust, yay!
    Bad news is you will be no devs anymore:

    You’ll become the compiler! 🤣

    On a serious note, endure: Our wages will mostly tenfold over time👌🏻