Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 028bad8

Browse files
committedAug 28, 2022
Docs: Remove static scheduling warning
The docs on multithreading still warns that the default scheduler for @threads uses static scheduling. However, since JuliaLang#44136, dynamic scheduling has been the default. This commit removes the warning.
1 parent 6cdc4ce commit 028bad8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎doc/src/manual/multi-threading.md

-3
Original file line numberDiff line numberDiff line change
@@ -361,9 +361,6 @@ threads in Julia:
361361
multiple threads where at least one thread modifies the collection
362362
(common examples include `push!` on arrays, or inserting
363363
items into a `Dict`).
364-
* `@threads` currently uses a static schedule, using all threads and assigning
365-
equal iteration counts to each. In the future the default schedule is likely
366-
to change to be dynamic.
367364
* The schedule used by `@spawn` is nondeterministic and should not be relied on.
368365
* Compute-bound, non-memory-allocating tasks can prevent garbage collection from
369366
running in other threads that are allocating memory. In these cases it may

0 commit comments

Comments
 (0)
Please sign in to comment.