Skip to content

Commit a462c5a

Browse files
jakobnissenKristofferC
authored andcommitted
Docs: Remove static scheduling warning (#46519)
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. (cherry picked from commit 72222d6)
1 parent 9db7f85 commit a462c5a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

doc/src/manual/multi-threading.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,6 @@ threads in Julia:
307307
multiple threads where at least one thread modifies the collection
308308
(common examples include `push!` on arrays, or inserting
309309
items into a `Dict`).
310-
* `@threads` currently uses a static schedule, using all threads and assigning
311-
equal iteration counts to each. In the future the default schedule is likely
312-
to change to be dynamic.
313310
* The schedule used by `@spawn` is nondeterministic and should not be relied on.
314311
* Compute-bound, non-memory-allocating tasks can prevent garbage collection from
315312
running in other threads that are allocating memory. In these cases it may

0 commit comments

Comments
 (0)