File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,12 +122,12 @@ For example, the above conditions imply that:
122122- Write only to locations not shared across iterations (unless a lock or atomic operation is used).
123123
124124Schedule options are:
125+ - `:dynamic` (default) will schedule iterations dynamically to available worker threads,
126+ assuming that the workload for each iteration is uniform.
125127- `:static` creates one task per thread and divides the iterations equally among
126128 them, assigning each task specifically to each thread.
127129 Specifying `:static` is an error if used from inside another `@threads` loop
128130 or from a thread other than 1.
129- - `:dynamic` (default) will schedule iterations dynamically to available worker threads,
130- assuming that the workload for each iteration is uniform.
131131
132132Without the scheduler argument, the exact scheduling is unspecified and varies across Julia releases.
133133
You can’t perform that action at this time.
0 commit comments