From cb17ab1cccb317a0f8b29d5ebc35ddddf713f24d Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 23 Apr 2020 18:29:52 +0200 Subject: [PATCH] Increase read buffer size --- core-buffer/include/buffer_config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index f5bec4a..e4535f9 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -23,7 +23,7 @@ namespace core_buffer { const std::string FILE_EXTENSION = ".h5"; // How many frames do we read at once during replay. - const size_t REPLAY_BLOCK_SIZE = 100; + const size_t REPLAY_BLOCK_SIZE = 200; // Size of sf_buffer RB in elements. const size_t BUFFER_RB_SIZE = 1000;