Skip to content
Snippets Groups Projects
Commit 7c4d3c1d authored by Markus Blatt's avatar Markus Blatt
Browse files

I was curious and added comparison to pool allocator, which seems faster.

[[Imported from SVN: r5258]]
parent 3394e70f
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
#include <dune/common/timer.hh>
#include <dune/common/smallobject.hh>
#include <dune/common/poolallocator.hh>
using namespace Dune;
......@@ -36,7 +37,7 @@ int main ( int argc, char **argv )
{
Timer timer;
const unsigned long iterations = 1 << 30;
const unsigned long iterations = 1 << 26;
std :: cout << "Performing " << iterations << " iterations." << std :: endl;
timer.reset();
......@@ -56,6 +57,18 @@ int main ( int argc, char **argv )
}
double timeB = timer.elapsed();
std :: cout << "Time with SmallObject: " << timeB << std :: endl;
std :: cout << "Result: SmallObject is " << (timeA / timeB) << " times faster." << std :: endl;
timer.reset();
PoolAllocator<B,100> pool;
for( unsigned long i = 0; i < iterations; ++i )
{
B *b = pool.allocate(1);
pool.construct(b, B((int)i ));
pool.destroy(b);
pool.deallocate(b,1);
}
double timeB2 = timer.elapsed();
std :: cout << "Time with pool allocator: " << timeB2 << std :: endl;
std :: cout << "Result: pool allocator is " << (timeA / timeB2) << " times faster." << std :: endl;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment