aperiodic task scheduling

29
APERIODIC TASK SCHEDULING Notation:

Upload: lynna

Post on 04-Feb-2016

65 views

Category:

Documents


0 download

DESCRIPTION

APERIODIC TASK SCHEDULING. Notation:. Earliest Due Date (EDD) - Jackson’s Rule. Set of tasks:. Problem:. Algorithm:. Earliest Due Date (EDD) - Jackson’s Rule. Earliest Due Date (EDD) – Example 1. Earliest Due Date (EDD) – Example 2. Earliest Due Date (EDD) – Guaranteed Feasibility. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: APERIODIC TASK SCHEDULING

APERIODIC TASK SCHEDULING

Notation:

Page 2: APERIODIC TASK SCHEDULING

Earliest Due Date (EDD) - Jackson’s Rule

Set of tasks:

Problem:

Algorithm:

Page 3: APERIODIC TASK SCHEDULING

Earliest Due Date (EDD) - Jackson’s Rule

Page 4: APERIODIC TASK SCHEDULING

Earliest Due Date (EDD) – Example 1

Page 5: APERIODIC TASK SCHEDULING

Earliest Due Date (EDD) – Example 2

Page 6: APERIODIC TASK SCHEDULING

Earliest Due Date (EDD) – Guaranteed Feasibility

Order tasks by increasing deadlines. Then:

Page 7: APERIODIC TASK SCHEDULING

Earliest Deadline First (EDF) – Horn’s Algorithm

Page 8: APERIODIC TASK SCHEDULING

Earliest Deadline First (EDF) – Horn’s Algorithm

Page 9: APERIODIC TASK SCHEDULING

Earliest Deadline First (EDF) – Example

Page 10: APERIODIC TASK SCHEDULING

Earliest Deadline First (EDF) – Guarantee of Schedualability

Dynamic Scheduling:

Assume Schedulable

Need to Guarantee that

Assuming all tasks are ordered by increasing deadlines:

Worst case finishing time:

For Guaranteed Schedulability:

Page 11: APERIODIC TASK SCHEDULING

EDF - Non-Preemptive Scheduling

The problem is NP hard

Page 12: APERIODIC TASK SCHEDULING

Non-Acyclic Search Tree Scheduling

Page 13: APERIODIC TASK SCHEDULING

Bratley’s Algorithm

Page 14: APERIODIC TASK SCHEDULING

Jack Stankovic’s Spring Algorithm

This does not yield an optimal schedule, but the general problem is NP hard. This does lend itself to artificial intelligence and learning.

The objective is to find a feasible schedule when tasks are have different types of constraints, such as

– precedence relations,

– resource constraints,

– arbitrary arrivals,

– non-preemptive properties, and

– importance levels.

A heuristic function H is used to drive the scheduling toward a plausible path.

At each level of the search, function H is applied to each of the remaining tasks. The task with the smallest value determined by the heuristic function H is selected to extend the current schedule. If a schedule is not looking strongly feasible, a minimal amount of backtracking is used.

Page 15: APERIODIC TASK SCHEDULING

Jack Stankovic’s Spring Algorithm

Precedence constraints can be handled by adding a term E =1 if the task is eligible and E = infinity if it is not.

Page 16: APERIODIC TASK SCHEDULING

Jack Stankovic’s Spring Algorithm

Page 17: APERIODIC TASK SCHEDULING

Scheduling with Precedence Constraints

Latest Deadline First - Optimizes max Lateness

Page 18: APERIODIC TASK SCHEDULING

Latest Deadline First

Page 19: APERIODIC TASK SCHEDULING

EDF with Precedence Constraints

The problem of scheduling a set of n tasks with precedent constraints and dynamic activations can be solved if the tasks are preemptable.

The basic ideas is transform a set of dependent tasks into a set of independent tasks by adequate modification of timing parameters. Then, tasks are scheduled by the Earliest Deadline First (EDF) algorithm, iff is schedulable. Basically, all release times and deadlines are modified so that each task cannot start before its predecessors and cannot preempt their successors.

Page 20: APERIODIC TASK SCHEDULING

EDF with Precedence Constraints

Modifying the release time:

Page 21: APERIODIC TASK SCHEDULING

EDF with Precedence Constraints

Modifying the Deadlines:

Page 22: APERIODIC TASK SCHEDULING

Summary

Page 23: APERIODIC TASK SCHEDULING
Page 24: APERIODIC TASK SCHEDULING
Page 25: APERIODIC TASK SCHEDULING
Page 26: APERIODIC TASK SCHEDULING
Page 27: APERIODIC TASK SCHEDULING
Page 28: APERIODIC TASK SCHEDULING
Page 29: APERIODIC TASK SCHEDULING