energy-efficient real-time task scheduling in ... · energy-efficient real-time task scheduling in...

41
Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen * , Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng Shih Embedded Systems and Wireless Networking Lab. Department of Computer Science and Information Engineering, National Taiwan University *Fisheries Agency, Council of Agriculture, Executive Yuan, Taiwan

Upload: others

Post on 12-Mar-2020

10 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems

Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng Shih

Embedded Systems and Wireless Networking Lab.Department of Computer Science and Information Engineering,

National Taiwan University*Fisheries Agency, Council of Agriculture,

Executive Yuan, Taiwan

Page 2: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page2ASP-DAC 2007, Yokohama Japan

Agenda

IntroductionScheduling Algorithms

Energy-Efficient Scheduling for Homogeneous Multiprocessor Systems

• Negligible leakage power consumption • Non-negligible leakage power consumption

Energy-Efficient Scheduling for Heterogeneous Two-Processor SystemsAllocation Cost Minimization for Multiprocessor Synthesis under Energy Constraints

Conclusion and Open Issues

Page 3: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page3ASP-DAC 2007, Yokohama Japan

Motivations for Power Saving

Rapid Increasing of Power ConsumptionModern hardware design increases the power consumption of circuits. The power consumption of processors increases dramatically.

Slow Increasing of the Battery CapacityThe battery capacity increases about 5% per yearBattery life time is a major concern for embedded systems

Embedded Systems vs ServersThe reduction of power is also needed to cut the power bill off

Page 4: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page4ASP-DAC 2007, Yokohama Japan

Hardware Methodology for Power Saving

Dynamic power management (DPM)The operation mode of the systemACPI

Micro-architecture techniqueAdaptive architectureCache management

Dynamic voltage scaling (DVS)Supply voltage scaling

• Intel Xscale, StrongARM; Transmeta Crusoe, Intel Pentium 4

• Intel SpeedStep, AMD PowerNow!Threshold voltage scaling

Page 5: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page5ASP-DAC 2007, Yokohama Japan

Dynamic Voltage ScalingA higher supply voltage usually results in a higher frequency (or higher execution speed)

s = k * (Vdd-Vt)2/(Vdd), where• s is the corresponding speed of the supply voltage Vdd and• Vt is the threshold voltage

The dynamic power consumption function P() of the execution speeds of a processor is a convex function:

P(s) = Cef Vdd2 s, in which Cef is the switch capacitance

related to tasks under executionsP(s) = Cef s3/k2 , when Vt = 0

The static power consumption comes from the leakage current

A constant or A sub-linear function of speed s

Page 6: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page6ASP-DAC 2007, Yokohama Japan

An Example of Power Consumption Functions

s3

β

s3+β

Page 7: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page7ASP-DAC 2007, Yokohama Japan

Energy EfficiencyEnergy-efficient scheduling is to minimize the energy consumption while the performance index or the timing constraint is guaranteed

To minimize the energy consumption resulting from the dynamic voltage scaling circuitsSlow down the execution speed while the timing constraints could be met

To minimize the energy consumption resulting from the leakage currentTurn the circuit off whenever needed

Page 8: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page8ASP-DAC 2007, Yokohama Japan

Non-Negligible Leakage Power

Page 9: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page9ASP-DAC 2007, Yokohama Japan

Why Multiprocessor?

Energy = t×s3

Energy = 2t×(0.5s)3 =0.25 s3

t

t

Case 1

Case 2

Page 10: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page10ASP-DAC 2007, Yokohama Japan

Related Work[Gruian et al. ASP-DAC’01, Zhang et al. DAC’02]:

Heuristic algorithms based on the well-known list-scheduling[Mishra et al. IPDPS’03]:

Heuristic algorithms based on the well-known list-scheduling for tasks with precedence constraints with communication costs

[Anderson and Baruah ICDCS’04]: Heuristic partition algorithms to trade the number of processors with the energy consumption

[Aydin and Yang IPDPS’03, AlEnawy and AydinRTAS’05]:

Heuristic algorithms based on traditional bin packing strategies

Page 11: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page11ASP-DAC 2007, Yokohama Japan

Agenda

IntroductionScheduling Algorithms

Energy-Efficient Scheduling for Homogeneous Multiprocessor Systems

• Negligible leakage power consumption • Non-negligible leakage power consumption

Energy-Efficient Scheduling for Heterogeneous Two-Processor SystemsAllocation Cost Minimization for Multiprocessor Synthesis under Energy Constraints

Conclusion and Open Issues

Page 12: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page12ASP-DAC 2007, Yokohama Japan

Problem DefinitionGiven a set T of n periodic real-time tasks:

τi is characterized by its• arrival time: 0• computing requirement: ci cycles• period: pi• relative deadline: pi

A homogeneous multiprocessor environment with Mprocessors

The objective is to derive a feasible schedule so that

each task is on a processor,each task completes in time, andthe energy consumption is minimized

Page 13: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page13ASP-DAC 2007, Yokohama Japan

Algorithm Largest-Task First (LTF)

τ1 τ3τ2 τ4 τ5

L1

L2

L3

M = 3

τ1

τ2

τ3 τ4

τ5

1. Sort tasks in a non-increasing order of ci/pi

2. Assign tasks in a greedy manner to the processor with the smallest load

3. Execute tasks on a processor at the speed with 100% utilization

[Aydin et al. RTSS’01]: EDF schedule by executing tasks at a constant speed with 100% utilization is optimal for energy-efficiency when tasks are with an identical power consumption function

Jian-Jia Chen, Heng-Ruey Hsu, Kai-Hsiang Chuang, Chia-Lin Yang, Ai-Chun Pang, and Tei-Wei Kuo, "Multiprocessor Energy-Efficient Scheduling with Task Migration Considerations", in ECRTS 2004.

Jian-Jia Chen, Heng-Ruey Hsu, and Tei-Wei Kuo, "Leakage-Aware Energy-Efficient Scheduling of Real-Time Tasks in Multiprocessor Systems", in RTAS 2006.

Algorithm LTF is a 1.13-approximation algorithm

Loads (ci/pi)

Page 14: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page14ASP-DAC 2007, Yokohama Japan

Leakage-Aware Largest-Task-First (LA+LTF)

τ1 τ3τ2 τ4 τ5

L1

L2

L3

M = 3

τ1

τ2

τ3 τ4

τ5

Loads (ci/pi)

1. Sort tasks in a non-increasing order of their loads (ci/pi)

2. Assign tasks in a greedy manner to the processor with the smallest total estimated utilizations

3. Decide execution speeds

Algorithm LA+LTF is a 1.283-approximation algorithm when the overhead on turning

processors on/off is negligible

Page 15: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page15ASP-DAC 2007, Yokohama Japan

Scheduling Scheme Non-negligible Overhead on Turning Processors on/off

The total load of tasks in T is no more than s0

An optimal solution will execute tasks on only one processorIt becomes a uniprocessor scheduling problem

Apply the 2-approximation algorithm for uniprocessorEDF scheduling strategy by Irani et al. in SODA 2003

The total load of tasks in T is greater than s0Apply Algorithm LA+LTF for task assignmentApply Algorithm FF (first-fit) for task re-assignment

Page 16: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page16ASP-DAC 2007, Yokohama Japan

Algorithm FF (First-Fit)

s0s0

M=4

Execute tasks in an EDF order

When a processor is idle, idle at speed Smin

SCla+ltf+ff

The energy consumption of SCLA+LTF+FFis at most twice of the optimal solution

Page 17: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page17ASP-DAC 2007, Yokohama Japan

Simulation Results

• Normalized energy: the energy consumption of the derived schedule divided by a lower bound of the input instance

• M=8

Esw = 0.1 Esw = 0.3

Page 18: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page18ASP-DAC 2007, Yokohama Japan

Agenda

IntroductionScheduling Algorithms

Energy-Efficient Scheduling for Homogeneous Multiprocessor Systems

• Negligible leakage power consumption • Non-negligible leakage power consumption

Energy-Efficient Scheduling for Heterogeneous Two-Processor SystemsAllocation Cost Minimization for Multiprocessor Synthesis under Energy Constraints

Conclusion and Future Work

Page 19: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page19ASP-DAC 2007, Yokohama Japan

Processing element modelsDVS PE

• Ideal PE (Smin ~ Smax) vs. Non-Ideal PE (Smin = S1, S2, …, SM=Smax)• Dynamic power consumption vs. static power consumption• Power consumption: P1(s)

Non-DVS PE• Workload-independence vs. workload-dependence• A networking device or an FPGA • Power consumption: P2

Task models: a set T of n tasks Period: piWorst-case execution cycles on the DVS PE: ciExecution requirement on the non-DVS PE: uiFeasibility constraints:

and ∑ −≤

PE DVSnon on the 1

iiu

τ

System Models

maxPE DVS on the S

pc

ii

i ≤∑τ

Chia-Mei Hung, Jian-Jia Chen, and Tei-Wei Kuo, "Energy-Efficient Real-Time Task Scheduling for a DVS System with a Non-DVS Processing Element", in IEEE Real-Time Systems Symposium (RTSS) 2006

Page 20: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page20ASP-DAC 2007, Yokohama Japan

Algorithm E-GREEDYSort the tasks in a non-increasing order ofPut all the tasks on the non-DVS PE initially

Consider tasks in the order to move to the DVS PE:

Workload-independent non-DVS PE

ipic

u i

0.60.50.40.30.2

0.150.250.20.20.25τ 4τ 3τ 2τ 1τ

ii pciu

τ3 τ2 τ1τ4τ5

1)( while

Minimize

Tin PE DVS on the

PE DVS on the

−≥ ∑∑∑

ii

i

ii

ii

uu

pc

ττ

τ

1

τ3τ4τ5

τ1τ2DVS PE

Non-DVS PE

τ2τ4τ5

τ1τ3DVS PE

Non-DVS PE

Is the solution better?YES!!

Is the solution better?No!!

E-GREEDY: an 8-approximation algorithm

Page 21: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page21ASP-DAC 2007, Yokohama Japan

S-GREEDYSteps

1. Sort the tasks non-increasingly according to2. Put all the tasks on the DVS PE3. Generate a solution (A): go through from the first task

If a task keeps saving more energy during its migration, then move it to the non-DVS PE if feasible; otherwise fix it on the DVS PE

iu

ipic

Workload-dependent non-DVS PE

τ5τ4τ3τ2τ1DVS PE

Non-DVS PE

)0 ,1 ,4.0 ,)(( minmax23

1 ==== SSPssP0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu

Page 22: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page22ASP-DAC 2007, Yokohama Japan

S-GREEDYDVS PE

Non-DVS PE

0)1(2040)20(0.8 minimize

1

13

1

==>−×++

xx..x.

τ1

τ5τ4τ3τ2τ1

0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu )0 ,1 ,4.0 ,)(( minmax2

31 ==== SSPssP

Workload-dependent non-DVS PE

Page 23: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page23ASP-DAC 2007, Yokohama Japan

S-GREEDYDVS PE

Non-DVS PE

0)1(3040)20(0.6 minimize

2

23

2

==>−×++

xx..x.

τ1

τ5τ4τ3

τ2

τ2

)0 ,1 ,4.0 ,)(( minmax23

1 ==== SSPssP0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu

Workload-dependent non-DVS PE

Page 24: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page24ASP-DAC 2007, Yokohama Japan

S-GREEDYDVS PE

Non-DVS PE

τ5τ4τ3

582.0)1(4040)20(0.4 minimize

3

33

3

==>−×++

xx..x.

τ1τ2

)0 ,1 ,4.0 ,)(( minmax23

1 ==== SSPssP0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu

Workload-dependent non-DVS PE

Page 25: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page25ASP-DAC 2007, Yokohama Japan

S-GREEDYDVS PE

Non-DVS PE

τ5τ4

666.0)1(5040)250(0.35 minimize

4

43

4

==>−×++

xx..x.

τ1τ2

τ3

)0 ,1 ,4.0 ,)(( minmax23

1 ==== SSPssP0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu

Workload-dependent non-DVS PE

Page 26: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page26ASP-DAC 2007, Yokohama Japan

S-GREEDYDVS PE

Non-DVS PE

τ5 τ4

1)1(6040)150(0.45 minimize

5

53

5

==>−×++

xx..x.

τ1τ2

τ3τ5

)0 ,1 ,4.0 ,)(( minmax23

1 ==== SSPssP0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu

Workload-dependent non-DVS PE

Page 27: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page27ASP-DAC 2007, Yokohama Japan

S-GREEDY

Steps1. Sort the tasks non-increasingly according to2. Put all the tasks on the DVS PE3. Generate a solution (A): go through from the

first task, if a task keeps saving more energy during its migration, then move it to the non-DVS PE; otherwise fix it on the DVS PE

4. Generate a solution (B): move the most energy-saving task to the non-DVS PE

iu

ipic

Workload-dependent non-DVS PE

Page 28: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page28ASP-DAC 2007, Yokohama Japan

S-GREEDY

Only τ1 is moved to the non-DVS PE

)0 ,1 ,4.0 ,)(( minmax23

1 ==== SSPssP0.60.50.40.30.2

0.150.250.20.20.21τ 2τ 3τ 4τ 5τ

ii pciu

Workload-dependent non-DVS PE

Page 29: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page29ASP-DAC 2007, Yokohama Japan

S-GREEDY

Steps of S-GREEDY1. Sort the tasks non-increasingly according to2. Put all the tasks on the DVS PE3. Generate a solution (A): go through from the

first task, if a task keeps saving more energy during its migration, then move it to the non-DVS PE; otherwise fix it on the DVS PE

4. Generate a solution (B): move the most energy-saving task to the non-DVS PE

5. Return the better solution between (A) and (B)

A 0.5-approximation ratio

iu

ipic

Workload-dependent non-DVS PE

Page 30: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page30ASP-DAC 2007, Yokohama Japan

Evaluation Results (1)Non-Ideal DVS PE & workload-independent non-DVS PE:

n=10,

P2=558mW

U1*=1

ε= 1

Page 31: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page31ASP-DAC 2007, Yokohama Japan

Evaluation Results (2)Ideal DVS PE & workload-dependent non-DVS PE:

n=10, P2=558mW, U1*=1

Page 32: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page32ASP-DAC 2007, Yokohama Japan

Agenda

IntroductionScheduling Algorithms

Energy-Efficient Scheduling for Homogeneous Multiprocessor Systems

• Negligible leakage power consumption • Non-negligible leakage power consumption

Energy-Efficient Scheduling for Heterogeneous Two-Processor SystemsAllocation Cost Minimization for Multiprocessor Synthesis under Energy Constraints

Conclusion and Open Issues

Page 33: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page33ASP-DAC 2007, Yokohama Japan

Problem DefinitionInput

m processor types: Mj with cost Cj , j = 1 .. mn independent periodic real-time tasks:

• Period of task τi : pi• Relative deadline of task τi : pi• Required cycles of a task instance of task τi at Mj : ci,j

An energy budget in the hyper-period L of tasks: Ebudget

OutputSelect a multisubset of these m processor typesAssign each task to one allocated processorDetermine execution speeds of tasksConsume no more than Ebudget in energy Minimize the allocation cost of allocated processors

J.-J. Chen and T.-W. Kuo. Allocation cost minimization for periodic hard real-time tasks in energy-constrained DVS systems. In ICCAD 2006.

Page 34: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page34ASP-DAC 2007, Yokohama Japan

Approaches for Non-Ideal Processors

Formulate the problem into an integer linear programming problem

Relax the problem into a naïve linear programming (LP) problem → unbounded in worst casesRelax the problem into m linear programming

• Sort processor types from cheap to expensive ones• Restrict no processor type with index larger than j is used

for each j=1,2,…,mFind the solution with the minimum objective value among the m linear programming relaxations with feasible solutions

• Algorithm ROUNDING – Assign tasks onto processors based on the optimal LP

solution– Have (m+2)-approximation

• Algorithm E-ROUNDING

Page 35: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page35ASP-DAC 2007, Yokohama Japan

Evaluation Results

RoundingE-Rounding

RoundingE-Rounding

Energy constraint is Emin + (Emax – Emin)*(constraint ratio)

The allocation cost of the derived solution is normalized to a lower

bound

Page 36: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page36ASP-DAC 2007, Yokohama Japan

Approaches for Ideal ProcessorsOne processor type:

Incrementally allocate processors until the energy consumption is satisfiedAt most use (1.189)m*+1 processors, where m* is the optimal cost

Multiple processor types:Determine the (virtual) discrete speeds of processors manuallyApply algorithms for non-ideal processors to assign tasks and energy constraint on each processor typeAdopt the incremental approach to allocate processors in each processor type

τ1 τ3τ2 τ4 τ5

L1

L2

L3

M = 3

τ1

τ2

τ3 τ4

τ5

ci/pi 1. Sort tasks in a non-increasing order of ci/pi

2. Assign tasks in a greedy manner to the processor with the smallest load

3. Execute tasks on a processor at the speed with 100% utilization

Page 37: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page37ASP-DAC 2007, Yokohama Japan

Evaluation Results

Page 38: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page38ASP-DAC 2007, Yokohama Japan

SummaryEnergy-Efficient Multiprocessor Scheduling

Homogeneous multiprocessor systems• Negligible-leakage: A 1.13-approximation algorithm for

homogeneous systems• Non-negligible leakage

– A 1.283-approximation algorithm with negligible overhead in turning on/off processors

– 2-approximation algorithms for the other caseHeterogeneous multiprocessor systems

• Approximation algorithms for systems with two processorsEnergy-Constrained DVS Synthesis

Approximation algorithms based on parametric linear programming relaxations

• Ideal processor types• Non-ideal processor types

Page 39: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page39ASP-DAC 2007, Yokohama Japan

Additional MaterialChip-multiprocessor (CMP) architecture [Yang, Chen, and Kuo in DATE 2005]Multiprocessor energy-efficient scheduling for tasks with different power characteristics [Chen and Kuo in ICPP 2005]Energy-efficient slack reclamation for multiprocessor systems [Chen, Yang, and Kuo in SUTC 2006]Energy-efficient scheduling with task rejection [Chen, Kuo, Yang, and King in DATE 2007]Multiprocessor instantaneous temperature minimization [Chen, Hung and Kuo in RTAS 2007]

Page 40: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Page40ASP-DAC 2007, Yokohama Japan

Open IssuesEnergy-Efficient Scheduling for

DVS systems and I/O devicesHeterogeneous multiprocessorsTasks with precedence constraintsTasks with uncertain execution paths

Energy-Aware Synthesis Multi-dimensional floor-planningTasks with precedence constraints

Thermal-Aware IssuesThermal-constrained schedulingThermal-constrained synthesis

Page 41: Energy-Efficient Real-Time Task Scheduling in ... · Energy-Efficient Real-Time Task Scheduling in Multiprocessor DVS Systems Jian-Jia Chen*, Chuan Yue Yang, Tei-Wei Kuo, and Chi-Sheng

Questions and Suggestions?