42
1/42 Embedded Systems Design: Optimization Challenges Paul Pop Embedded Systems Lab (ESLAB) Linkping University, Sweden

Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

1 of 141/42

Embedded Systems Design:Optimization Challenges

Paul PopEmbedded Systems Lab (ESLAB)

Linköping University, Sweden

Page 2: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

2 of 142/42

Outline

!Embedded systems" Example area: automotive electronics

" Embedded systems design

" Optimization problems" Fault-tolerant mapping and scheduling" Voltage scaling" Communication delay analysis

" Assessment and message

Page 3: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

3 of 143/42

1%

99%

Embedded Systems

General purpose systems Embedded systems

Microprocessor market shares

Page 4: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

4 of 144/42

Example Area: Automotive Electronics

" What is �automotive electronics�?" Vehicle functions

implemented with electronics" Body electronics" System electronics: chassis, engine" Information/entertainment

Page 5: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

5 of 145/42

Automotive Electronics Market Size

8.9Market ($billions) 10.5 13.1 14.1 15.8 17.4 19.3 21.0

0200

400600

8001000

12001400

1998 1999 2000 2001 2002 2003 2004 2005

Cost of Electronics / Car ($)

90% of future innovations in vehicles:based on electronic embedded systems

2006: 25% of the total cost of a car will be electronics

Page 6: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

6 of 146/42

Automotive Electronics Platform Example

Source: Expanding automotive electronic systems, IEEE Computer, Jan. 2002

Page 7: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

7 of 147/42

Outline

" Embedded systems" Example area: automotive electronics

!Embedded systems design

" Optimization problems" Fault-tolerant mapping and scheduling" Voltage scaling" Communication delay analysis

" Assessment and message

Page 8: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

8 of 148/42

Embedded Systems Design

Model of system implementation

Estimation:exec. time

System platform

System model

System-leveldesign tasks

Analysis

Softwaresynthesis

Hardware synthesis

"Growing complexity"Constraints

"Time, energy, size"Cost, time-to-market"Safety, reliability

"Heterogeneous"Hardware components"Comm. protocols

" Mapping and scheduling

" Voltage scaling

" Communicationdelay analysis

Page 9: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

9 of 149/42

Embedded System Design, Cont.

" Goal: automated design optimization techniques" Successfully manage the complexity of embedded systems" Meet the constraints imposed by the application domain" Shorten the time-to-market" Reduce development and manufacturing costs

Optimization: the keyto successful design

Page 10: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

10 of 1410/42

Outline

" Embedded systems" Example area: automotive electronics

" Embedded systems design

!Optimization problems" Fault-tolerant mapping and scheduling" Voltage scaling" Communication delay analysis

" Assessment and message

Page 11: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

11 of 1411/42

Optimization Problems

1. Mapping and scheduling1.1 Mapping to minimize communication1.2 Mapping and scheduling1.3 Fault-tolerant mapping and scheduling

2. Voltage scaling2.1 Continuous voltage scaling2.2 Discrete voltage scaling

3. Communication delay analysis

Page 12: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

12 of 1412/42

#Given" Application: set of interacting processes" Platform: set of nodes

Problem #1.1: Mapping

P1

P4

P2 P3

m1 m2

m3 m4

! Assessment" Optimal solutions even for large problem sizes

N1 N2

P1

P4

P2 P3

m1 m2

m3 m4

Determine" Mapping of processes to nodes

" Such that the communication is minimized

Page 13: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

13 of 1413/42

Problem #1.2: Mapping and Scheduling

#Given" Application: set of interacting processes" Platform: set of nodes" Timing constraints: deadlines

Determine" Mapping of processes and messages" Schedule tables for processes and messages

" Such that the timing constraints are satisfied

S2 S1

P1 P4

P2

m1 m2 m3 m4

P3

N1

N2

Bus

Schedule table

Deadline

P1

P4

P2 P3

m1 m2

m3 m4

N1 N2

Page 14: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

14 of 1414/42

Problem #1.2: !Assessment

" Scheduling is NP-complete even in simpler context" D. Ullman, “NP-Complete Scheduling Problems”, Journal of

Computer Systems Science, volume 10, pages 384–393, 1975.

" ILP formulation" Can�t obtain optimal solutions for large problem sizes

" Alternative: divide the problem" Scheduling

" Heuristic: List scheduling" Mapping

" Simulated annealing" Tabu-search" Problem-specific greedy algorithms

Page 15: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

15 of 1415/42

Messages:Schedule tables

Messages:Fault-tolerant protocol

Processes:Schedule tables

Fault-Tolerant Mapping and Scheduling

...

Transient faults

TDMA bus: TTP

Processes:Re-execution and replication

Page 16: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

16 of 1416/42

Fault-Tolerance Techniques

P1 P1 P1

Re-execution

N1

P1

P1

P1

Replication

N1

N2

N3

P1

P1

N1

N2

P1

Re-executedreplicas

2

Page 17: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

17 of 1417/42

Problem #1.3: Formulation

Application: set of process graphs Architecture: time-triggered system

...

Fault-model: transient faults

#Given" Application: set of interacting processes" Platform: set of nodes" Timing constraints: deadlines" Fault model: number of transient faults in the system period

Determine" Mapping of processes and messages" Schedule tables for processes and messages" Fault-tolerance policy assignment

" Such that the timing constraints are satisfied

Page 18: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

18 of 1418/42

P1N1

N2

TTP

P2

P3

S1S2

P4m

2

Missed

Fault-Tolerance Policy Assignment

P1P2P3

N1 N2

40 506060

8080

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

P1N1

N2

TTP

P2

P3

S1S2 m2

P4P1N1

N2

TTP

P2

P3

S1S2 m2

P4No fault-tolerance:application crashes

Deadline

Page 19: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

19 of 1419/42

P1N1

N2

TTP

P2

P3

S1S2

P4m

2

Missed

Fault-Tolerance Policy Assignment

P1P2P3

N1 N2

40 506060

8080

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

P1N1

N2

TTP

P2

P3

S1S2 m2

P4

N1

N2

P1

P3

S1S2

P4P2

P1

m1

m1TTP m2

m2

P2m

3

m3

P3

P4

Missed

P1N1

N2

TTP

P2

P3

S1S2 m2

P4No fault-tolerance:application crashes

Deadline

Page 20: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

20 of 1420/42

P1N1

N2

TTP

P2

P3

S1S2

P4m

2

Missed

Fault-Tolerance Policy Assignment

P1P2P3

N1 N2

40 506060

8080

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

P1N1

N2

TTP

P2

P3

S1S2 m2

P4

N1

N2

P1

P3

S1S2

P4P2

P1

m1

m1TTP m2

m2

P2m

3

m3

P3

P4

Missed

P1N1

N2

TTP

P2

P3

S1S2 m2

P4No fault-tolerance:application crashes

N1

N2

P1

P3

S1S2

P4P2

P1

m2

m1TTP

MetOptimization

of fault-tolerancepolicy assignment

Deadline

Page 21: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

21 of 1421/42

Tabu-Search: Policy Assignment & Mapping

P1P2P3

N1 N2

40 506060

7575

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1 Current

solution

Designtransformations

Page 22: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

22 of 1422/42

Tabu-Search: Policy Assignment & Mapping

P1P2P3

N1 N2

40 506060

7575

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1 Current

solution

Designtransformations

N1

N2

TTP

P1 P3

S1S2

P4P2

m1

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Tabu move &worse than best-so-far

S1

Page 23: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

23 of 1423/42

Tabu-Search: Policy Assignment & Mapping

P1P2P3

N1 N2

40 506060

7575

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1 Current

solution

Designtransformations

N1

N2

TTP

P1 P3

S1S2

P4P2

m1

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Tabu move &worse than best-so-far

S1

N1

N2

P1

P3

S1S2

P4P2

P1

m2

m1TTP

1200Wait0012TabuP4P3P2P1

1200Wait0012TabuP4P3P2P1

Tabu move &better than best-so-far

Page 24: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

24 of 1424/42

Tabu-Search: Policy Assignment & Mapping

P1P2P3

N1 N2

40 506060

7575

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1 Current

solution

Designtransformations

N1

N2

TTP

P1 P3

S1S2

P4P2

m1

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Tabu move &worse than best-so-far

S1

N1

N2

P1

P3

S1S2

P4P2

P1

m2

m1TTP

1200Wait0012TabuP4P3P2P1

1200Wait0012TabuP4P3P2P1

Tabu move &better than best-so-far

N1

N2

TTP

P1 P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Non-tabu &worse than best-so-far

Page 25: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

25 of 1425/42

Tabu-Search: Policy Assignment & Mapping

P1P2P3

N1 N2

40 506060

7575

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1 Current

solution

Designtransformations

N1

N2

TTP

P1 P3

S1S2

P4P2

m1

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Tabu move &worse than best-so-far

S1

N1

N2

P1

P3

S1S2

P4P2

P1

m2

m1TTP

1200Wait0012TabuP4P3P2P1

1200Wait0012TabuP4P3P2P1

Tabu move &better than best-so-far

N1

N2

TTP

P1 P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Non-tabu &worse than best-so-far

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2 P3

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Non-tabu &worse than best-so-far

Page 26: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

26 of 1426/42

Tabu-Search: Policy Assignment & Mapping

P1P2P3

N1 N2

40 506060

7575

P4 40 50

1

N1 N2P1

P4P2

P3

m1

m2

m3

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1 Current

solution

Designtransformations

N1

N2

TTP

P1 P3

S1S2

P4P2

m1

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Tabu move &worse than best-so-far

S1

N1

N2

P1

P3

S1S2

P4P2

P1

m2

m1TTP

1200Wait0012TabuP4P3P2P1

1200Wait0012TabuP4P3P2P1

Tabu move &better than best-so-far

N1

N2

TTP

P1 P3

S1S2 S2

P4

m2

P2

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Non-tabu &worse than best-so-far

N1

N2

TTP

P1

P3

S1S2 S2

P4

m2

P2 P3

1101Wait0021TabuP4P3P2P1

1101Wait0021TabuP4P3P2P1

Non-tabu &worse than best-so-far

N1

N2

P1

P3

S1S2

P4P2

P1

m2

m1TTP

1200Wait0012TabuP4P3P2P1

1200Wait0012TabuP4P3P2P1 Current

solution

Designtransformations

Page 27: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

27 of 1427/42

Problem #2: Voltage Scaling

"GSM Phone:"Search"Radio link control"Talking

"MP3 Player

"Digital Camera:"Take photo"Restore photo

Timing constraints

0

10

20

30

40

50

60

70

1997 1999 2002 2005 2008 2011

Battery powerChip power

Power constraints

Page 28: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

28 of 1428/42

Problem #2: Voltage Scaling

deadlinet

P

τ1 τ2 τ3

Energy/speed trade-offs:varying the voltagesVbs

CPUVdd

f1 f2 f3

Different voltages:different frequencies

Mapping and scheduling: given (fastest freq.)

Power

deadlinetτ1 τ2 τ3

Slack

Page 29: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

29 of 1429/42

τ0 τ2 τ3

τ5

τ4

τ1CPU1

CPU2

CPU3

BusVdd

VbsVddVbs

VddVbs

Problem #2.1: Continuous Voltage Scaling

#Given" Application: set of interacting processes" Platform: set of nodes, each having

supply voltage (Vdd) and body bias voltage (Vbs) inputs" Mapping and schedule table (including timing constraints)

P

deadlinetτ1 τ2 τ3

Slack

Architecture and mapping Schedule table / processor

Page 30: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

30 of 1430/42

Problem #2.1: Continuous Voltage Scaling

Determine" Voltage levels Vdd and Vbs for each process

" Such that system energy is minimized and" Deadlines are satisfied

deadlinet

P

τ1 τ2 τ3

P

deadlinetτ1 τ2 τ3

Slack

Output

#InputHeight:

voltage level

Area:energy

Page 31: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

31 of 1431/42

Problem #2.1: Continuous Voltage Scaling

Determine" Voltage levels Vdd and Vbs for each process

" Such that system energy is minimized and" Deadlines are satisfied

deadlinet

P

τ1 τ2 τ3

P

deadlinetτ1 τ2 τ3

Slack

Output

#InputHeight:

voltage level

Area:energy

! Assessment" Convex nonlinear problem

" Polynomial time solvable with an arbitrary good precision" A. Andrei, “Overhead-Conscious Voltage Selection for Dynamic and

Leakage Energy Reduction of Time-Constrained Systems”, technical report, Linköping University, 2004

Page 32: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

32 of 1432/42

Problem #2.1: Formulation

" Minimize energy" E[τ0] + E[τ1] + E[τ2] + E_OH[τ1-τ2]

" Such that " Tstart[τ0] + Texe[τ0] ≤ Tstart[τ1]" Tstart[τ1] + Texe[τ1] + Toh[τ1-τ2] ≤ Tstart[τ2]

" Tstart[τ2] + Texe[τ2] ≤ DL[τ2]

Energy due to processes

Overhead due to voltage changes

Precedencerelationships

Deadlines

CPU1

τ0

τ1

τ2

BUS CPU2CPU1

τ0

τ1

τ2

BUS CPU2

Page 33: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

33 of 1433/42

Problem #2.2: Discrete Voltage Scaling

" Problem formulation#Given discrete execution frequencies

Processors can operate using a frequency from a fixed discrete set Changing the frequency incurs a delay and an energy penalty

Determine the set of frequencies for each task" Such that system energy is minimized and" Deadlines are satisfied

t

P deadline

τ2 τ3τ1

f2 f2f2f3f3 f1

Discrete

Page 34: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

34 of 1434/42

#Given" 1 processor: f∈ {50, 100, 150} MHz

" 3 processes

" τ1: P={10, 20, 30} mW, dl=1ms, NC=100 cycles

" τ2: P={12, 22, 32} mW, dl=1.5ms , NC=100 cycles

" τ3: P={15, 25, 35} mW, dl=2ms , NC=100 cycles

" Schedule: execution order is τ1, τ2, τ3

Determine" For each process, number of clock cycles to be executed at each frequency

" such that the energy is minimized

),,(),,,(),,,( 33

23

13

32

22

12

31

21

11 ccccccccc

Problem #2.2: Example

Page 35: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

35 of 1435/42

Problem #2.2: Example, Cont.

!Assessment: " Strongly NP-hard problem

" The frequencies are now a set of integers; identical to:" P. De, “Complexity of the Discrete Time-Cost Tradeoff Problem for

Project Networks”, Operations Research, 45(2):302–306, March 1997.

iiii NCccc =++ 321 Each task has to execute the given number of cycles

iiii t

fc

fc

fc =++ 3

3

2

2

1

1

Task execution time

1+≤+ iii ttstart Precedence constraints

iii dltstart ≤+ Deadline constraints

∑ ⋅+⋅+⋅i

ii

ii

ii P

fcP

fcP

fc 3

3

32

2

21

1

1Minimize energy

" MILP formulation for the optimal solution

Page 36: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

36 of 1436/42

Embedded Systems Design

Mapped andscheduled model

Estimation:exec. time

System platform

System model

System-leveldesign tasks

Analysis

Softwaresynthesis

Hardware synthesis

"Communication protocols

" Communicationdelay analysis

Page 37: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

37 of 1437/42

Problem #3: FlexRay Analysis

" FlexRay communication protocol" Becoming de-facto standard in automotive electronics

" BMW, DaimlerChrysler, General Motors, Volkswagen, Bosch, Motorola, Philips

" Deterministic data transmission, fault-tolerant, high data-rate

...

Communication protocol: FlexRay

S R

Worst-casecommunication delay

" Problem#Given

" Application: set of interacting processes" Platform: set of nodes connected by FlexRay" Implementation: Mapping and scheduling

Determine" Worst-case communication delays for messages

Page 38: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

38 of 1438/42

Problem #3: FlexRay Analysis, Cont.

Static Dynamic Static Dynamic

GeneralizedTime-division

multiple access

FlexibleTime-division

multiple access

Bus cycle

m4

m5

m6m7

Arrive dynamically

Off-line: Worst-case analysis

Off-line:Schedule table

m2 m3m1

Statically assigned

Page 39: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

39 of 1439/42

Problem #3: Formulation and Example

#Given" FlexRay bus

" Length of the static phase" Length of the dynamic phase

" Dynamically arriving messages" Priorities

Determine for each message" Worst-case communication delay

Static Static StaticDynamic Dynamic Dynamic

Fixed size bin

m4

m5

m6

m7

Priority

DynamicDynamicDynamic

Analyze this!

m4 m5m6m7Static Static Static

Bin covering: two bins

Page 40: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

40 of 1440/42

Problem #3: !Assessment

" �Classic� bin covering problem#Given

" Set of bins of fixed integer size" Set of items of integer size

Determine" Maximum number of bins that can be filled with the items

! Assessment" Asymptotic fully polynomial time approximation

" FlexRay dynamic phase analysis ≠ �classic� bin covering" Bins have an upper limit: size of the dynamic phase" Assessment

" Approximation algorithm does not exist" MILP formulation feasible up to 60 messages

Wanted:better solution

Page 41: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

41 of 1441/42

Outline

" Embedded systems" Example area: automotive electronics

" Embedded systems design

" Optimization problems" Fault-tolerant mapping and scheduling" Voltage scaling" Communication delay analysis

!Assessment and message

Page 42: Embedded Systems Design: Optimization Challenges€¦ · Embedded Systems Design Model of system implementation Estimation: exec. time System platform System model System-level design

42 of 1442/42

Message

" Optimization " Key to successful embedded systems design

" Challenges" Classify the problems" Divide the problem into sub-problems" Formulate the problems" Solve the problems optimally" Fast and accurate heuristics for specific problems