From 3220bd3db52d410398e11370698c0c9f311a2ddd Mon Sep 17 00:00:00 2001 From: Kajari Ghosh Date: Fri, 20 Apr 2018 09:07:07 -0400 Subject: [PATCH] 1gb-8threads --- include/engine/unpacking_cache.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/engine/unpacking_cache.hpp b/include/engine/unpacking_cache.hpp index 822a2c13f..3302db92c 100644 --- a/include/engine/unpacking_cache.hpp +++ b/include/engine/unpacking_cache.hpp @@ -62,7 +62,7 @@ class UnpackingCache // SHARED STORAGE CACHE // Number of lines we need for shared storage cache = 524288000 / 20 = 26214400 - UnpackingCache(unsigned timestamp) : m_cache(1458888), m_current_data_timestamp(timestamp){}; + UnpackingCache(unsigned timestamp) : m_cache(2917776), m_current_data_timestamp(timestamp){}; UnpackingCache(std::size_t cache_size, unsigned timestamp) : m_cache(cache_size), m_current_data_timestamp(timestamp){};