From a0e833b8012da9d807e1e23e54c232657fe18322 Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 10 Sep 2022 23:27:05 +0100 Subject: [PATCH] Increased batch size of ReadTargetMemory insight worker task --- src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp b/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp index b814fa47..875098f8 100644 --- a/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp +++ b/src/Insight/InsightWorker/Tasks/ReadTargetMemory.cpp @@ -15,7 +15,7 @@ namespace Bloom * This allows the TargetController to service other commands in-between reads, reducing the likelihood of * command timeouts when we're reading lots of data. */ - constexpr auto readSize = 128; + constexpr auto readSize = 256; const auto readsRequired = static_cast( std::ceil(static_cast(this->size) / static_cast(readSize)) );