From 028bad820483ee0708e820c4258bbb755e2c8fe5 Mon Sep 17 00:00:00 2001 From: Jakob Nybo Nissen Date: Sun, 28 Aug 2022 12:09:43 +0200 Subject: [PATCH] Docs: Remove static scheduling warning The docs on multithreading still warns that the default scheduler for @threads uses static scheduling. However, since #44136, dynamic scheduling has been the default. This commit removes the warning. --- doc/src/manual/multi-threading.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/src/manual/multi-threading.md b/doc/src/manual/multi-threading.md index ffe8980cff3de..9ebba4fd7f676 100644 --- a/doc/src/manual/multi-threading.md +++ b/doc/src/manual/multi-threading.md @@ -361,9 +361,6 @@ threads in Julia: multiple threads where at least one thread modifies the collection (common examples include `push!` on arrays, or inserting items into a `Dict`). - * `@threads` currently uses a static schedule, using all threads and assigning - equal iteration counts to each. In the future the default schedule is likely - to change to be dynamic. * The schedule used by `@spawn` is nondeterministic and should not be relied on. * Compute-bound, non-memory-allocating tasks can prevent garbage collection from running in other threads that are allocating memory. In these cases it may