Skip to content
Snippets Groups Projects
Commit 8338d9a2 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[AbstractWorkStealingScheduler] Increase DEQUEUE_FROM_ANYWHERE_MAX to 512

parent 6bded656
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ auto AbstractWorkStealingScheduler::maybeRecycle(Fiber* fiber) -> bool {
auto AbstractWorkStealingScheduler::nextFiberViaAnywhereQueue()
-> std::optional<std::pair<Fiber*, FiberSource>> {
const size_t KEEP_FREE_SLOTS = 64;
const size_t DEQUEUE_FROM_ANYWHERE_MAX = 128;
const size_t DEQUEUE_FROM_ANYWHERE_MAX = 512;
const uintptr_t remainingCapacityLocalWsQueue = queue.freeSlots();
size_t maxFiberCount;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment