1 / 15

Scheduling Algorithms for Multiprogramming in a Hard-Real-Time Environment

Scheduling Algorithms for Multiprogramming in a Hard-Real-Time Environment. C.L. Liu and James W. Layland. Presented by Pete Perlegos. Assumptions. The requests for all tasks for which hard deadlines exist are periodic, with constant interval between requests.

rbrady
Télécharger la présentation

Scheduling Algorithms for Multiprogramming in a Hard-Real-Time Environment

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Scheduling Algorithms for Multiprogramming in a Hard-Real-Time Environment C.L. Liu and James W. Layland Presented by Pete Perlegos

  2. Assumptions • The requests for all tasks for which hard deadlines exist are periodic, with constant interval between requests. • Deadlines consist of run-ability constraints only – i.e. each task must be completed before the next request for it comes. • The tasks are independent in that requests for a certain task do not depend on the initiation or the completion of requests for other tasks. • Run-time for each task is constant for that task and does not vary with time. Run-time here refers to the time which is taken by a processor to execute the task without interruption. • Any nonperiodic tasks in the system are special; they are initialization or failure-recovery routines; they displace periodic tasks while they themselves are being run, and do not themselves have hard, critical deadlines.

  3. Type of Scheduling Algorithms • The scheduling algorithms to be studied in this paper are preemptive and priority driven.

  4. Critical Instant • A critical instant for a task is defined to be an instant at which a request for that task will have the largest response time. • Theorem 1. A critical instant for any task occurs whenever the task is requested simultaneously with requests for all higher priority tasks.

  5. Feasible Scheduling • One of the values of this result is that a simple direct calculation can determine whether or not a given priority assignment will yield a feasible scheduling algorithm. • Specifically, if the requests for all tasks at their critical instants are fulfilled before their respective deadlines, then the scheduling algorithm is feasible.

  6. Feasible Scheduling • (a) (T1 higher priority) Feasible • (b) (T1 higher priority) C2 can be increased to 2 • (c) (T2 higher priority) C1 and C2 can be at most 1 T1=2, T2=5 C1=1, C2=1

  7. Priority Assignment • More generally, it seems that a “reasonable” rule of priority assignment is to assign priorities to tasks according to their request rates, independent if their run-times. Specifically, tasks with higher request rates will have higher priorities. This will be called rate-monotonic priority assignment. • Theorem 2. If a feasible priority assignment exists for some task set, the rate-monotonic priority assignment is feasible for that task set.

  8. Processor Utilization m U = S(Ci/Ti) T=request periods 1/T=frequency C=run-time i=1

  9. Processor Utilization • Theorem 3. For a set of two tasks with fixed priority assignment, the least upper bound to the processor utilization factor is U=2(2½-1). • Theorem 4. For a set of m tasks with fixed priority order, and the restriction that the ratio between any two request periods is less than 2, the least upper bound to the processor utilization factor is U=m(21/m-1). • Theorem 5. For a set of m tasks with fixed priority order, the least upper bound to the processor utilization factor is U=m(21/m-1).

  10. Processor Utilization • For large m, U = ln2 = 0.69 • This is not very good.

  11. Deadline Driven Scheduling Algorithm • Theorem 7. For a given set of m tasks, the deadline driven scheduling algorithm is feasible if and only if (C1/T1) + (C2/T2) + … + (Cm/Tm) < 1 • Total demand cannot exceed the available processor time.

  12. Deadline Driven Scheduling Algorithm • The deadline driven scheduling algorithm is optimum in the sense that if a set of tasks can be scheduled by any algorithm, it can be scheduled by the deadline driven scheduling algorithm.

  13. Mixed Scheduling Algorithm Implement deadline driven scheduler for the slower paced tasks. • Let tasks 1, 2,…, k, the k tasks of shortest periods, be scheduled according to the fixed priority rate-monotonic scheduling algorithm, and let the remaining tasks k+1, k+2,…, m, be scheduled according to the deadline driven scheduling algorithm when the processor is not occupied by tasks 1, 2,…, k.

  14. Comparison Example with 3 tasks T1=3, T2=4, T3=5 C1=1, C2=1, C3=1(rate-monotonic), 2(mixed) • Fixed priority rate-monotonic scheduling algorithm: U = 1/3 + 1/4 + 1/5 = 78.3% • Mixed scheduling algorithm: U = 1/3 + 1/4 + 2/5 = 98.3%

  15. Conclusion • A combination of the two scheduling algorithms discussed appears to provide most of the benefits of the deadline driven scheduling algorithm, and yet may be readily implemented without much additional cost beyond a fixed priority assignment.

More Related