YDS is a scheduling algorithm for dynamic speed scaling processors which minimizes the total energy consumption. It was named after and developed by Yao et al. There is both an online and an offline version of the algorithm.
Offline Algorithm
Definitions:
The algorithm then works as follows:
While J ≠ { }
Determine the time interval I of maximum density Δ I .
In I process the jobs of S I at speed Δ I according to EDF
Set J := J ∖ S I .
Remove I from the time horizon and update the release times and deadlines of unscheduled jobs accordingly.
end While
In other terms it's a recursive algorithm that will follow these steps until all jobs are scheduled:
- Calculate all intensities for all possible combinations of intervals. This means that for every start time and end time combination the intensity of work is calculated. For this the times of all jobs whose arrival time and deadline lie inside the interval are added and divided by the interval length. To speed up the process, only combinations of arrival times and later deadlines need to be considered, as times without arrival of a process or deadline can be shrunk to a smaller interval with the same processes, thus increasing intensity, and negative intervals are invalid. Then the maximum intensity interval is selected. In case of multiple equally intense intervals, one can be chosen at will, as intensities of non-overlapping intervals do not influence each other, and removing a part of an interval will not change the intensity of the rest, as processes are removed proportionally.
- The processes inside this interval are scheduled using Earliest Deadline First, meaning that the job inside this interval whose deadline will arrive soonest is scheduled first, and so on. The jobs are executed at the above calculated intensity to fit all jobs inside the interval.
- The interval is removed from the timeline, as no more calculations can be scheduled here. To simplify further calculations, all arrival times and deadlines of remaining jobs are recalculated to omit already occupied times. For example, assume a job
A with arrival timea A = 0 , deadlined A = 10 and a workloadw A = 5 , and a jobB witha B = 5 ,d B = 10 andw B = 4 . Assume the previous interval was from time3 to8 . To omit this interval the times ofA andB need to be adjusted; workloads are unaffected, as no work has been done for eitherA orB .a A d A 5 , as10 − ( 8 − 3 ) = 5 . This is the time jobA has left before its deadline. The arrival timea B 3 , as it would have been inside the removed interval.d B 5 , as the time left after the removed interval is2 . It is important, however, to remember the actual arrival and deadline times for later assembly of the scheduling. - Repeat steps 1-3 until all jobs have been scheduled.
- Assemble jobs into final scheduling according to their allotted time intervals. Remember, though, that an interval may be split in two by another interval calculated earlier.
For any Job instance, the algorithm computes an optimal schedule minimizing the total energy consumption.
References
YDS algorithm Wikipedia(Text) CC BY-SA