Die Präsentation wird geladen. Bitte warten

Die Präsentation wird geladen. Bitte warten

Fakultät für informatik informatik 12 technische universität dortmund Standard Optimization Techniques 2010/12/20 Peter Marwedel TU Dortmund, Informatik.

Ähnliche Präsentationen


Präsentation zum Thema: "Fakultät für informatik informatik 12 technische universität dortmund Standard Optimization Techniques 2010/12/20 Peter Marwedel TU Dortmund, Informatik."—  Präsentation transkript:

1 fakultät für informatik informatik 12 technische universität dortmund Standard Optimization Techniques 2010/12/20 Peter Marwedel TU Dortmund, Informatik 12 Germany Graphics: © Alexandra Nolte, Gesine Marwedel, 2003 These slides use Microsoft clip arts. Microsoft copyright restrictions apply.

2 - 2 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Structure of this course 2: Specification 3: ES-hardware 4: system software (RTOS, middleware, …) 8: Test 5: Evaluation & validation (energy, cost, performance, …) 7: Optimization 6: Application mapping Application Knowledge Design repository Design Numbers denote sequence of chapters [Appendix: Standard Optimization Techniques

3 - 3 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Integer (linear) programming models Ingredients: Cost function Constraints Involving linear expressions of integer variables from a set X Def.: The problem of minimizing (1) subject to the constraints (2) is called an integer (linear) programming (ILP) problem. If all x i are constrained to be either 0 or 1, the IP problem said to be a 0/1 integer (linear) programming problem. Cost function Constraints:

4 - 4 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Example Optimal C

5 - 5 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Remarks on integer programming Maximizing the cost function: just set C =- C Integer programming is NP-complete. Running times depend exponentially on problem size, but problems of >1000 vars solvable with good solver (depending on the size and structure of the problem) The case of x i is called linear programming (LP). Polynomial complexity, but most algorithms are exponential, in practice still faster than for ILP problems. The case of some x i and some x i is called mixed integer-linear programming. ILP/LP models good starting point for modeling, even if heuristics are used in the end. Solvers: lp_solve (public), CPLEX (commercial), …

6 - 6 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Simulated Annealing General method for solving combinatorial optimization problems. Based the model of slowly cooling crystal liquids. Some configuration is subject to changes. Special property of Simulated annealing: Changes leading to a poorer configuration (with respect to some cost function) are accepted with a certain probability. This probability is controlled by a temperature parameter: the probability is smaller for smaller temperatures.

7 - 7 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Simulated Annealing Algorithm procedure SimulatedAnnealing; var i, T: integer; begin i := 0; T := MaxT; configuration:= ; while not terminate(i, T) do begin while InnerLoop do begin NewConfig := variation(configuration); delta := evaluation(NewConfig,configuration); if delta < 0 then configuration := NewConfig; else if SmallEnough(delta, T, random(0,1)) then configuration := Newconfiguration; end; T:= NewT(i,T); i:=i+1; end; end;

8 - 8 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Explanation Initially, some random initial configuration is created. Current temperature is set to a large value. Outer loop: Temperature is reduced for each iteration Terminated if (temperature lower limit) or (number of iterations upper limit). Inner loop: For each iteration: New configuration generated from current configuration Accepted if (new cost cost of current configuration) Accepted with temperature-dependent probability if (cost of new config. > cost of current configuration).

9 - 9 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Behavior for actual functions 130 steps [people.equars.com/~marco/poli/phd/node57.html] 200 steps http://foghorn.cadlab.lafayette.edu/cadapplets/fp/fpIntro.html

10 - 10 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Performance This class of algorithms has been shown to outperform others in certain cases [Wegener, 2005]. Demonstrated its excellent results in the TimberWolf layout generation package [Sechen] Many other applications …

11 - 11 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Evolutionary Algorithms (1) Evolutionary Algorithms are based on the collective learning process within a population of individuals, each of which represents a search point in the space of potential solutions to a given problem. The population is arbitrarily initialized, and it evolves towards better and better regions of the search space by means of randomized processes of selection (which is deterministic in some algorithms), mutation, and recombination (which is completely omitted in some algorithmic realizations). [Bäck, Schwefel, 1993]

12 - 12 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Evolutionary Algorithms (2) The environment (given aim of the search) delivers a quality information (fitness value) of the search points, and the selection process favours those individuals of higher fitness to reproduce more often than worse individuals. The recombination mechanism allows the mixing of parental information while passing it to their descendants, and mutation introduces innovation into the population [Bäck, Schwefel, 1993]

13 - 13 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Evolutionary Algorithms Principles of Evolution Selection Cross-over Mutation © Thiele

14 - 14 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 An Evolutionary Algorithm in Action max. y 2 min. y 1 hypothetical trade-off front © Thiele

15 - 15 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010

16 - 16 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 A Generic Multiobjective EA archive population new populationnew archive evaluate sample vary update truncate © Thiele

17 - 17 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010

18 - 18 - technische universität dortmund fakultät für informatik p. marwedel, informatik 12, 2010 Summary Integer (linear) programming Integer programming is NP-complete Linear programming is faster Good starting point even if solutions are generated with different techniques Simulated annealing Modeled after cooling of liquids Overcomes local minima Evolutionary algorithms Maintain set of solutions Include selection, mutation and recombination


Herunterladen ppt "Fakultät für informatik informatik 12 technische universität dortmund Standard Optimization Techniques 2010/12/20 Peter Marwedel TU Dortmund, Informatik."

Ähnliche Präsentationen


Google-Anzeigen