Presentation is loading. Please wait.

Presentation is loading. Please wait.

Introduction to Data Flow Graphs and their Scheduling Sources: Gang Quan.

Similar presentations


Presentation on theme: "Introduction to Data Flow Graphs and their Scheduling Sources: Gang Quan."— Presentation transcript:

1 Introduction to Data Flow Graphs and their Scheduling Sources: Gang Quan

2 Computational Models What: What: –A conceptual notion for expressing the function of a system DFG (Design Flow Graph) FSM, Petri net, Turing machine, etc. Computational Models & Languages Computational Models & Languages –Models express the behavior, languages capture models –Models are conceptual, languages are concrete What is in a computational model What is in a computational model –A set of objects –Rules –Semantics Should be “big” (powerful) enough enough to precisely express the function of the system with unambiguity, should be “small” enough to have synthesis and verification tools to support it.

3 Data Flow Graph (DFG)

4 A modem communications system – Each box is a single function or sub systems – The activity of each block in the chain depends on the input of the previous block – Data driven Each functional block may have to wait until it receives a "certain amount" of information before it begins processing Some place to output the results

5 Data Flow Graph Definition – A directed graph that shows the data dependencies between a number of functions – G = (V,E) Nodes (V): each node having input/output data ports Arces (E): connections between the output ports and input ports – Semantics Fire when input data are ready Consume data from input ports and produce data to its output ports There may be many nodes that are ready to fire at a given time

6 Data Flow Graph Construction

7 + - x / ** sqrt x x b4ca2 - / X1X1 X2X2 Multiplication Constant Square root Division Nodes of DFG can be any operators, also very complex operators

8 Data flow graph construction original code: x  a + b; y  a * c; z  x + d; x  y - d; x  x + c; a b cd +* + + y x z x - x

9 Data flow graph construction original code: x  a + b; y  a * c; z  x + d; x  y - d; x  x + c; single-assignment form: x1  a + b; y  a * c; z  x1 + d; x2  y - d; x3  x2 + c;

10 Data flow graph construction single-assignment form: x1  a + b; y  a * c; z  x1 + d; x2  y - d; x3  x2 + c; a b cd +* + + y x3 z x1 - x2

11 Design Issues for DFGs 1. Allocating operator nodes to resources (blocks, functional units) 2. Mapping to blocks 3. Schedule in time 4. Memory management 5. Construction and usage of the queues and other special memory resources useful in data flows – stacks?

12 What are the goals of these design processes? Guarantee correct behavior Utilize hardware efficiently. Obtain acceptable performance.

13 Scheduling and Allocation

14 Allocation Decide the numbers and types of different functional units –E.g. register allocation …. x <= a + b; y <= a + c; x <= x - c; …. ….x … ….y…. …. x <= a + b; y <= a + c; x <= x - c; …. ….x … ….y…. three registers

15 Mapping Distributing nodes to different functional units on which they will fire – Functional units may provide different functions Adder or ALU, MUX or buses, etc – Functional units may have different delay Ripple adder or look ahead adder – Determines area, cycle time.

16 A Mapping Example Subject to: 1. Two adders 2. Four registers 3. b and e cannot be assigned to the same register + + a b c e + d f We assume two adders and four registers and next do synthesis for this assumption. But how do we know how many to assume?

17 A Mapping Example R1: a R2: b, c, e R3: d, f + + a b c e + d f Subject to: 1. Two adders 2. Three registers 3. a and e cannot be assigned to the same register R3 Adder 1 R1R2 Adder 2 Mapping may not be unique !

18 Scheduling of DFG Schedule –Creating the sequence in which nodes fire –Determines number of clock cycles required Two simple schedules: –As-soon-as-possible (ASAP) schedule puts every operation as early in time as possible as late in schedule as possible –As-late-as-possible (ALAP) schedule puts every operation as late in schedule as possible

19 ASAP scheduling for DFG + - / * + ** t=0 t=1 t=2 t=3 t=4 +/** - * + Nodes fire whenever the input data are available. Start from t=0

20 ALAP Scheduling for DFG + - / * + ** t=0 t=1 t=2 t=3 t=4 +/ ** - * + Nodes fire when absolutely necessary. Start from the terminal values of t

21 More about ASAP and ALAP Unlimited resources –No limit for the number of registers, adders, etc Longest path through data flow determines minimum schedule length Mobility –t L – t S Difference between schedule in ALAP and schedule in ASAP. The higher it is the more solutions we can find in optimization process

22 Mobility u = t L - t S t=0 t=1 t=2 t=3 t=4 +/** - * + t=0 t=1 t=2 t=3 t=4 +/ ** - * + ASAP ALAP + / ** - * + u 0 0 0 1 0 2 0 The node mobility represents its flexibility in the fire sequence. + - / * + ** u here is the mobility list We will use this list in next scheduling method

23 Restrained Scheduling Time Time constraints –Time is given, minimize the resource Resource constraints NP problem + - / * + **

24 Time Constraints + - x / ** sqrt x x b4ca2 - / X1X1 X2X2 T 2 2 1 1 1 678 +/- *// ** sqrt 1 2 1 1 1 1 1 1 1 1 How many units of time the graph needs to complete (we assume it) This shows how many various blocks we need if 6 fires. This shows how many various blocks we need if 8 fires.

25 Constraints Resource Constraints Resource is given, minimize the long time List based scheduling priority based ready list – Maintain a priority based ready list The priority can be decided by mobility for example – Fire the nodes according to their priorities – Fire the nodes according to their priorities until all the resource are used in that stage + - / * + **

26 List Based Scheduling + - / *+ + + t=0 t=1 t=2 t=3 t=4 +/ - *+ + Such that there is one +/-, / one *// /++-*++ u 0 0 1 0 0 2 0 t=5 + priority based ready list The priority can be decided by mobility for example Fire the nodes according to their priorities Fire the nodes according to their priorities until all the resource are used in that stage

27 List Based Scheduling A general ASAP Priority based ready list + - / * + **

28 Control/Data Flow Graph (CDFG)

29 x <= a + b; if ( x > 100) y <= a * c; else y <= a + c; endif

30 Control/Data Flow Graph Definition – A directed graph that represents the control dependencies among the functions branch fall-through – G=(V,E) Nodes (V) –Encapsulated DFG –Decision Arces (E) –flow of the controls Very similar to FSMD – Operation rectangles (instructions) can be vary complicated – Diamonds for predicates can be very complicated and require many clock pulses to complete.

31 CDFG Example fun0(); if (cond1) fun1(); else fun2(); fun3(); switch(test1) { case 1: fun4(); break; case 2: fun5(); break; case 3: fun6(); break; } fun7(); fun0 cond1 fun3 fun2 fun1 fun5fun6fun4 fun7 test1 YN

32 CDFG Example fun0(); while(cond1) { fun1(); } fun2(); fun0 cond1 fun3 fun2 Y N

33 Design Issues for CDFG Code optimization –Loop optimization, dead code detection Register allocation

34 Summary Data Flow Graph Data Flow Graph (DFG) –models data dependencies. –Does not require that nodes be fired in a particular order. –Models operations in the functional model—no conditionals. –Allocation and Mapping –Scheduling – ASAP, ALAP, List-based scheduling Control/Data Flow Graph Control/Data Flow Graph –Represents control dependencies

35 To remember Now we know the most important concepts: Now we know the most important concepts: –Data Flow Graph –Data Flow Graph (DFG) –Control/Data Flow Graph –FSM table –Transition Graph –Combinational Graph (netlist) These concepts alone are sufficient to complete all projects in this class. These concepts alone are sufficient to complete all projects in this class. However we will introduce more concepts and algorithms so you will be able to find: However we will introduce more concepts and algorithms so you will be able to find: –Better solutions –In shorter time

36 Homework 3 1.Find an example of some computation that is repeated many times on the same or on different data 2.Draw DFG for this computation 3.Possibly optimize this DFG using laws of arithmetic 4.Schedule this DFG ASAP. Allocate to resources and find cost of hardware and time of processing. 5.Schedule this DFG ALAP. Allocate to resources and find cost of hardware and time of processing. 6.Schedule this DFG according any other method or heuristically using your common sense. Allocate to resources and find cost of hardware and time of processing. 7.Make a table comparing all your results – you can have more than three. 8.Select one design and give reason for this. 9.Realize this design as a complete circuit. You can use ready adders, multipliers, etc blocks from internet. 10.If you want (option) you may simulate this design with Verilog or VHDL or any graphic simulator. This is not mandatory part of the homework.

37 Review for Exams (1) 1.What is in a computational model? Give examples 2.Why computational models are important? We can describe every system as a Mealy Machine? Why other? 3.What is DFG? 4.Give few applications of DFGs robot 5.Give example of a DFG of some hypothetical computer that would be worthy to build, for instance Hough Transform processor for a robot 6.What is Allocating? 7.What is Mapping? 8.What is Scheduling? 9.Explain ASAP Scheduling for a practical DFG on example. 10.Do the same example again using ALAP scheduling. 11.Compare the ASAP and ALAP Scheduling. 12.What is Constraint Satisfaction Problem (question asked again but now you know more) 13.What is NP, NP complete and NP hard problem. Give examples. 14.Why the concept of NP problems is important?

38 Review for Exams (2) 1.What is mobility and fire sequence. Give an example. 2.Formulate the scheduling, allocation and similar problems as constraints satisfaction problems with constraints and costs as energy to be minimized. 3.Give example of List Scheduling 4.What is CDFG and what are associated synthesis and optimization problems?


Download ppt "Introduction to Data Flow Graphs and their Scheduling Sources: Gang Quan."

Similar presentations


Ads by Google