Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Loop scheduling
Parallel computing technique

In parallel computing, loop scheduling is the problem of assigning proper iterations of parallelizable loops among n processors to achieve load balancing and maintain data locality with minimum dispatch overhead.

Typical loop scheduling methods are:

  • static even scheduling: evenly divide loop iteration space into n chunks and assign each chunk to a processor
  • dynamic scheduling: a chunk of loop iteration is dispatched at runtime by an idle processor. When the chunk size is 1 iteration, it is also called self-scheduling.
  • guided scheduling: similar to dynamic scheduling, but the chunk sizes per dispatch keep shrinking until reaching a preset value.
We don't have any images related to Loop scheduling yet.
We don't have any YouTube videos related to Loop scheduling yet.
We don't have any PDF documents related to Loop scheduling yet.
We don't have any Books related to Loop scheduling yet.
We don't have any archived web articles related to Loop scheduling yet.

See also