-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am currently evaluating a few of scalable memory allocators, namely nedmalloc and ptmalloc (both built on top of dlmalloc), as a replacement for default malloc / new because of significant contention seen in multithreaded environment. Their published performance seems to be good, however I would…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using MSVC 2010 and I want to use NedMalloc as a separate dll. But I don't know how to compile it for x64 target. Pls help.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
While implementing nedmalloc into my application, I am frequently hitting a situation when nedmalloc refuses to free a block of memory, claiming it did not allocate it.
While debugging I have come up to the point I see a particular condition which is failing, all other (including magic numbers) succeed…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
I'm trying to use a faster memory allocator in C++. I can't use Hoard due to licensing / cost. I was using NEDMalloc in a single threaded setting and got excellent performance, but I'm wondering if I should switch to something else -- as I understand things, NEDMalloc is just a replacement…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a program that loads a file (anywhere from 10MB to 5GB) a chunk at a time (ReadFile), and for each chunk performs a set of mathematical operations (basically calculates the hash).
After calculating the hash, it stores info about the chunk in an STL map (basically <chunkID, hash>) and…
>>> More