in ,

How fast can you allocate a large block of memory in C ++ ?, Hacker News

How fast can you allocate a large block of memory in C ++ ?, Hacker News


In C , the most basic memory allocation code is just a call to the new operator:

char*buf=newchar[s];

According to a textbook interpretation, we just allocatedsbytes

If you benchmark this line of code, you might find that it almost entirely free on a per-byte basis for large values ​​ofs. But that is because we are cheating: the call to the new operation “virtually” allocates the memory, but you may not yet have actual memory that you can use. As you access the memory buffer, the system may then decide to allocate the memory pages (often in blocks of (bytes). Thus the cost of memory allocation can be hidden. The great thing with a virtual allocation is that if you never access the memory, you may never pay a price for it.

If you actually want to measure the memory allocation in C , then you need to ask the system to give yous bytes of allocated and initialized memory. You can achieve the desired result in C by adding parentheses after the call to the new operator:

char*buf=newchar[s]();

Then the operating system actually needs to allocate and initialize memory

(2. It may still cheat in the sense that it may recycle existing blocks of memories or otherwise delay allocation. And I expect that it might do so routinely if the value ofsis small. But it gets harder for the system to cheat assgrows larger.

What happens if you allocate hundreds of megabytes in such a manner? The answer depends on the size of the pages. By default, your system probably uses small (4kB) pages. Under Linux, you can enable “transparent huge pages” which dynamically switches to large pages when large blocks of memory are needed. Using larger pages means having to allocate and access fewer pages, so it tends to be cheaper.

In both instances, I get around a couple of gigabytes per second on a recent Linux system (Ubuntu****************************. ) running a conventional Skylake processor. For comparison, you can set memory to zero at tens gigabytes per second and my disk can feed data to the system at more than 2 GB / s. Thus, at least on the system I am currently using, memory allocation is not cheap.My code is available, I use GNU GCC 8.3.

Allocating 823 MB Setting 2020 MB to zero

******************** regular pages (4kB)

1.6 GB / s ************************************************ (GB / s) ****************** transparent huge pages

2.4 GB / s ************************************************ (GB / s) ************ Further remarks. Of course, you can reuse the allocated memory for greater speeds. The memory allocator in my standard library could possibly do this already when I call the new operator followed by the delete operator in a loop. However, you still need to allocate the memory at some point, if only at the beginning of your program. If you program needs to allocate 32 GB of memory, and you can only do so at 1.4 GB / s, then your program will need to spend 32 seconds on memory allocation alone.

Footnotes:

************Several readers have asked why I am ignoring C functions likecalloc,mallocandmmap. The reason is simple: this post is focusing on idiomatic C .

  • ****************************You might wonder why the memory needs to be initialized. The difficulty has to do with security. Though it is certainly possible for the operating system to give you direct access to memory used by another process, it cannot also pass along the data. Thus it needs to erase the data. To my knowledge, most systems achieve this result by zeroing the new memory.
  • ********************** (************************, ************************************** (Read More) ) ******************************
  • What do you think?

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    GIPHY App Key not set. Please check settings

    Apple Stock Has Inflated Another Dangerous 'Dotcom' Bubble In The Nasdaq, Crypto Coins News

    Apple Stock Has Inflated Another Dangerous 'Dotcom' Bubble In The Nasdaq, Crypto Coins News

    Advance JavaScript for Beginners