From 4c1a7bd1a0521476ae3faa92bd601569b4fc87a6 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 14 Apr 2013 01:08:46 -0700 Subject: gras: increase chunk size for fair benchmarks --- lib/block_allocator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/block_allocator.cpp') diff --git a/lib/block_allocator.cpp b/lib/block_allocator.cpp index 205f99d..8f42e57 100644 --- a/lib/block_allocator.cpp +++ b/lib/block_allocator.cpp @@ -7,9 +7,9 @@ using namespace gras; -const size_t AT_LEAST_BYTES = 16*(1024); //16 kiB per buffer -const size_t AHH_TOO_MANY_BYTES = 32*(1024*1024); //32 MiB enough for me -const size_t THIS_MANY_BUFFERS = 8; +const size_t AT_LEAST_BYTES = 32*(1024); //kiB per buffer +const size_t AHH_TOO_MANY_BYTES = 32*(1024*1024); //MiB enough for me +const size_t THIS_MANY_BUFFERS = 8; //pool size void BlockActor::buffer_returner(const size_t index, SBuffer &buffer) { -- cgit