The memory-pool tag has no wiki summary.
7
votes
3answers
298 views
C++11 memory pool design pattern?
I have a program that contains a processing phase that needs to use a bunch of different object instances (all allocated on the heap) from a tree of polymorphic types, all eventually derived from a ...
0
votes
0answers
44 views
TBB tbb::memory_pool<tbb::scalable_allocator<char>> How to use it correctly?
I have doubt.
For tbb::memory_pool< tbb::scalable_allocator > shared_memory_pool_;
if that is instantiated in the main thread. And than, I called shared_memory_pool_.malloc(sizeof(my_class)) in a ...
0
votes
0answers
132 views
memory pool usage (boost::pool) for variable sized buffers?
The bottleneck of my current project is heap allocation... profiling stated about 50% of the time one critical thread spends with/in the new operator.
The application cannot use stack memory here and ...
-1
votes
1answer
109 views
Can I just use fixed arrays instead of memory pools?
Instead of making a memory pool system,can't I just allocate huge arrays for each object at the start of the application and just use them and in the extreme case some object does need more instances ...
0
votes
0answers
53 views
Memory Pool deletion problems
Need some help with my memory pool. I have everything up and working, but "deleting" the allocated memory is creating a problem. Basically, even when I Statically allocate an object of the class whose ...
0
votes
2answers
128 views
Growing (and shrinking) memory pool
Let's say, for the purpose of the question, we have a memory pool that has n blocks allocated initially. However, when the capacity is reached, the pool wants to grow and become twice the size it was ...
1
vote
1answer
183 views
Memory pool for object with different size - C#
Do you have some solution, how to make object pool (memory pool) with objects than can contain different data with different size ? So if I request for object in memory pool with some size, it returns ...
2
votes
0answers
241 views
How to create globally-accessable variable on cuda?
This is a pretty complicated question, and I'm not a native English speaker, so I'll thanks if you are patient enough to read my question.
As Cuda is actually operating on two computers, it is ...
0
votes
3answers
155 views
Handling large data in a C program
I am working on a project which runs queries on a database and the results are greater than the memory size. I have heard of memory pool libraries but I'm not sure that it's the best way solution to ...
2
votes
1answer
457 views
Custom allocation using boost singleton_pool slower than default
I wrote custom operator new and operator delete for the class MyOrder. I am allocating memory using boost::singleton pool. Here is the program testing the performance,
#include ...
1
vote
0answers
206 views
Retrieve Tenured Generation memory pool from JVM
I am looking for a way to find the Tunered Generation pool inside the JVM, previously i tried to find this pool by name: "Tunered Gen" but in some cases this pool named as "PS Old Gen".
So i thought ...
-3
votes
2answers
376 views
How to create free memory pool in c? [closed]
In my source code I will not allocate memory at run time , but memory will be allocated from memory pool.
0
votes
0answers
67 views
Allocation in a pool memory
I've searched a lot in the past days about this, but I haven't found anything that answered it.
I have a big memory pool created. Now, lets say that it's the first time that I access the pool and I ...
2
votes
1answer
207 views
Use a custom allocator with boost::bimap
I am working on improving the performance of a program which uses both the Boost Graph Library and boost::bimap. Profiling revealed that most of the time was being spent in memory allocation and ...
1
vote
3answers
673 views
C++ memory pool on shared memory implementation: Is this method of allocation and deallocation correct?
May I request that I any responder consider only "pure" C/C++ (whatever that means)? STL is ok. Boost is not.
I am writing my own C++ memory pool class (on a Linux system) for allocating and ...
2
votes
1answer
526 views
Difference between “memory cache” and “memory pool”
By reading "understanding linux network internals" and "understanding linux kernel" the two books as well as other references, I am quite confused and need some clarifications about the "memory cache" ...
0
votes
1answer
119 views
Constructing data pools for components
I'm running Windows 7 with a Core Duo. I've been using Codeblocks for a while now, which I think I have using GNU compiler.
I have (or will have) many component classes that inherit from the ...
4
votes
5answers
1k views
questions about memory pool
I need some clarifications for the concept & implementation on memory pool.
By memory pool on wiki, it says that
also called fixed-size-blocks allocation, ... ,
as those implementations ...
2
votes
2answers
1k views
C++ custom allocator that utilizes a underlying memory pool
I'm using a memory pool class which reuses allocated memory addresses and a custom allocator which wraps
that class. The following code snippet gives you a basic idea of the interface.
...
5
votes
5answers
5k views
What does posix_memalign/memalign do
I'm trying to understand what functions memalign() and posix_memalign() do. Reading the available documentation didn't help.
Can someone help me understand how it works and what is it used for? Or, ...
2
votes
2answers
798 views
Memory pool algorithms
Im looking for some "smarter" algorithms as to how I handle my VBOs in my OpenGL program.
As it stands, I currently store each of my models in 4MB VBO's, with which a pseudo C++ algorithm is shown ...
2
votes
5answers
313 views
How to grow a buffer without invalidating pointers to it?
The terms 'pool' and 'buffer' may be used interchangeably here.
Suppose I have a pool I want to allocate at the beginning of the programm, as to not always call new all the time.
Now, I don't want to ...
0
votes
5answers
523 views
How to get the pointer to the middle of an array in c#
First, basic info on our environment: We're using c# .net 4.0, on Win7-x64, targeting 32-bit.
We have a preallocated -large- array. In a function, we would like to return a pointer to an arbitrary ...
1
vote
3answers
398 views
How would one implement a variable sized cache object to reduce memory allocations in C++?
Before the performance people tear my head off: yes, I have done profiling before asking this :)
I'm once again looking at my one of a type container, and while I have a solution that works, the ...
3
votes
3answers
230 views
Too Many Garbage Problem on Java
I have an application, basically, create a new byte array (less than 1K) store some data after few seconds (generally less than 1 minute, but some data stored up to 1 hour) write to disk and data will ...
1
vote
1answer
246 views
C++ Memory Pooling by Subclassing
So I was working on a way to memory pool c++ objects easily with minimal modification needed to the class that needs to be pooled.
The memory pool itself is the standard variety you can find ...
5
votes
2answers
4k views
A nonblocking thread-safe memory-pool implementation
I needed a simple non-blocking static-block-size memory-pool. I didn't find such on the web. So everyone, who needs such a solution. This one is free... only works on Win32.
Best regards,
Friedrich
...
2
votes
1answer
450 views
Which object pool backing store to choose?
In our C# (.NET 4.0) application, we allocate and de-allocate a lot of memory, in different size chunks. We want to move to an object pool, to improve performance.
We implemented an object pool ...
0
votes
2answers
856 views
Designing and coding a non-fragmentizing static memory pool
I have heard the term before and I would like to know how to design and code one.
Should I use the STL allocator if available?
How can it be done on devices with no OS?
What are the tradeoffs between ...
1
vote
1answer
196 views
Are there disadvantages of a memory pool per instance over per type?
I'm implementing a memory pool in C for a real time application. A container data structure is used by the real time thread of the program to process a specific type of data which it needs to add and ...
5
votes
2answers
516 views
How do you declare and use an overloaded pool operator delete?
I would like to know how to adapt section 11.14 of the C++-FAQ-lite to arrays.
Basically, I would want something like this:
class Pool {
public:
void* allocate(size_t size) {...}
void ...