From 5aa7a905f7c053a12d4e7d73867a4094ac687be2 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Tue, 23 Jul 2024 16:24:54 +0200 Subject: [PATCH] Adapted maximum number of cores to evaluation platform. --- src/mx/tasking/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mx/tasking/config.h b/src/mx/tasking/config.h index 493a2c9..ae837bc 100644 --- a/src/mx/tasking/config.h +++ b/src/mx/tasking/config.h @@ -12,7 +12,7 @@ public: }; // Maximal number of supported cores. - static constexpr auto max_cores() { return 128U; } + static constexpr auto max_cores() { return 64U; } // Maximal size for a single task, will be used for task allocation. static constexpr auto task_size() { return 64U; }