From c9d7921ef6d6cce80bafa2cf8fb785d08b7f09d1 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Tue, 23 Jul 2024 16:22:35 +0200 Subject: [PATCH] Increased maximum number of supported NUMA nodes to match the number of the evaluation platform. --- src/mx/memory/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mx/memory/config.h b/src/mx/memory/config.h index 0be22ff..3f44028 100644 --- a/src/mx/memory/config.h +++ b/src/mx/memory/config.h @@ -8,7 +8,7 @@ public: /** * @return Number of maximal provided NUMA regions. */ - static constexpr auto max_numa_nodes() { return 2U; } + static constexpr auto max_numa_nodes() { return 8U; } /** * @return Interval of each epoch, if memory reclamation is used. @@ -20,4 +20,4 @@ public: */ static constexpr auto local_garbage_collection() { return false; } }; -} // namespace mx::memory \ No newline at end of file +} // namespace mx::memory