Adapted maximum number of cores to evaluation platform.

This commit is contained in:
Michael Mueller
2024-07-23 16:24:54 +02:00
parent 7a53462109
commit 5aa7a905f7

View File

@@ -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; }