Presentation is loading. Please wait.

Presentation is loading. Please wait.

COE 561 Digital System Design & Synthesis Resource Sharing and Binding Dr. Aiman H. El-Maleh Computer Engineering Department King Fahd University of Petroleum.

Similar presentations


Presentation on theme: "COE 561 Digital System Design & Synthesis Resource Sharing and Binding Dr. Aiman H. El-Maleh Computer Engineering Department King Fahd University of Petroleum."— Presentation transcript:

1 COE 561 Digital System Design & Synthesis Resource Sharing and Binding Dr. Aiman H. El-Maleh Computer Engineering Department King Fahd University of Petroleum & Minerals [Adapted from slides of Prof. G. De Micheli: Synthesis & Optimization of Digital Circuits] Dr. Aiman H. El-Maleh Computer Engineering Department King Fahd University of Petroleum & Minerals [Adapted from slides of Prof. G. De Micheli: Synthesis & Optimization of Digital Circuits]

2 2 OutlineOutline n Sharing and Binding n Resource-dominated circuits. Flat and hierarchical graphs. n Register sharing n Multi-port memory binding n Bus sharing and binding n Non resource-dominated circuits. n Module selection. n Sharing and Binding n Resource-dominated circuits. Flat and hierarchical graphs. n Register sharing n Multi-port memory binding n Bus sharing and binding n Non resource-dominated circuits. n Module selection.

3 3 Allocation and Binding n Allocation Number of resources available. n Binding Mapping between operations and resources. n Sharing Assignment of a resource to more than one operation. n Optimum binding/sharing Minimize the resource usage. n Allocation Number of resources available. n Binding Mapping between operations and resources. n Sharing Assignment of a resource to more than one operation. n Optimum binding/sharing Minimize the resource usage.

4 4 Optimum Sharing Problem n Scheduled sequencing graphs. Operation concurrency well defined. n Consider operation types independently. Problem decomposition. Perform analysis for each resource type. n Minimize resource usage. n Scheduled sequencing graphs. Operation concurrency well defined. n Consider operation types independently. Problem decomposition. Perform analysis for each resource type. n Minimize resource usage.

5 5 Compatibility and Conflicts n Operation compatibility Same resource type. Non concurrent. n Compatibility graph Vertices: operations. Edges: compatibility relation. n Conflict graph Complement of compatibility graph. n Operation compatibility Same resource type. Non concurrent. n Compatibility graph Vertices: operations. Edges: compatibility relation. n Conflict graph Complement of compatibility graph. Multiplier ALU

6 6 Algorithmic Solution to the Optimum Binding Problem n Compatibility graph. Partition the graph into a minimum number of cliques. Find clique cover number. n Conflict graph. Color the vertices by a minimum number of colors. Find chromatic number. n NP-complete problems - Heuristic algorithms. n Compatibility graph. Partition the graph into a minimum number of cliques. Find clique cover number. n Conflict graph. Color the vertices by a minimum number of colors. Find chromatic number. n NP-complete problems - Heuristic algorithms.

7 7 ExampleExample ALU1: 1, 3, 5 ALU2: 2, 4 1 2 3 4 5 1 3 5 2 4

8 8 Perfect Graphs n Comparability graph Graph G(V, E) has an orientation (i.e. directed edges) G(V, F) with the transitive property. (v i, v j )  F  (v j, v k )  F  (v i, v k )  F. n Interval graph Vertices correspond to intervals. Edges correspond to interval intersection. Subset of chordal graphs Every loop with more than three edges has a chord (i.e. an edge joining two non-consecutive vertices in the cycle). n Efficient algorithms exist for coloring and clique partitioning of interval, chordal, and comparability graphs. n Comparability graph Graph G(V, E) has an orientation (i.e. directed edges) G(V, F) with the transitive property. (v i, v j )  F  (v j, v k )  F  (v i, v k )  F. n Interval graph Vertices correspond to intervals. Edges correspond to interval intersection. Subset of chordal graphs Every loop with more than three edges has a chord (i.e. an edge joining two non-consecutive vertices in the cycle). n Efficient algorithms exist for coloring and clique partitioning of interval, chordal, and comparability graphs.

9 9 Non-Hierarchical Sequencing Graphs n The compatibility/conflict graphs have special properties Compatibility: Comparability graph. Conflict: Interval graph. n Polynomial time solutions Golumbic's algorithm. Left-edge algorithm. n The compatibility/conflict graphs have special properties Compatibility: Comparability graph. Conflict: Interval graph. n Polynomial time solutions Golumbic's algorithm. Left-edge algorithm. Comparability Graph

10 10 ExampleExample Intervals Corresponding to Conflict Graph

11 11 Left-Edge Algorithm n Input Set of intervals with left and right edge. n Rationale Sort intervals by left edge. Assign non-overlapping intervals to first color using the sorted list. When possible intervals are exhausted increase color counter and repeat. n Input Set of intervals with left and right edge. n Rationale Sort intervals by left edge. Assign non-overlapping intervals to first color using the sorted list. When possible intervals are exhausted increase color counter and repeat.

12 12 ExampleExample

13 13 ILP Formulation of Binding n Boolean variables b ir Operation i bound to resource r. n Boolean variables x il Operation i scheduled to start at step l. n Each operation v i should be assigned to one resource n At most, one operation can be executing, among those assigned to resource r, at any time step n Boolean variables b ir Operation i bound to resource r. n Boolean variables x il Operation i scheduled to start at step l. n Each operation v i should be assigned to one resource n At most, one operation can be executing, among those assigned to resource r, at any time step

14 14 Example…Example… n Operation types: Multiplier, ALU n Unit execution delay n A feasible binding satisfies constraints n Operation types: Multiplier, ALU n Unit execution delay n A feasible binding satisfies constraints

15 15 … Example n Constants in X are 0 except x 1,1, x 2,1, x 3,2, x 4,3, x 5,4, x 6,2, x 7,3, x 8,3, x 9,4, x 10,1, x 11,2. n An implementation with a 1 =2 multipliers: n Solutions b 1,1 =1, b 2,2 =1, b 3,1 =1, b 6,2 =1, b 7,1 =1, b 8,2 =1. n Constants in X are 0 except x 1,1, x 2,1, x 3,2, x 4,3, x 5,4, x 6,2, x 7,3, x 8,3, x 9,4, x 10,1, x 11,2. n An implementation with a 1 =2 multipliers: n Solutions b 1,1 =1, b 2,2 =1, b 3,1 =1, b 6,2 =1, b 7,1 =1, b 8,2 =1.

16 16 Hierarchical Sequencing Graphs … n Hierarchical conflict/compatibility graphs. Easy to compute. Prevent sharing across hierarchy. n Flatten hierarchy. Bigger graphs. Destroy nice properties. Graphs may no longer have special properties i.e., comparability graph, interval graph. Clique partitioning and vertex coloring intractable problems. n Hierarchical conflict/compatibility graphs. Easy to compute. Prevent sharing across hierarchy. n Flatten hierarchy. Bigger graphs. Destroy nice properties. Graphs may no longer have special properties i.e., comparability graph, interval graph. Clique partitioning and vertex coloring intractable problems.

17 17 … Hierarchical Sequencing Graphs n Model calls When two link vertices corresponding to different called models are not concurrent Any operation pair of same resource type in the different called models is compatible. Concurrency of called models does not necessarily imply conflicts of operation pairs in the models. n Model calls When two link vertices corresponding to different called models are not concurrent Any operation pair of same resource type in the different called models is compatible. Concurrency of called models does not necessarily imply conflicts of operation pairs in the models.

18 18 Example: Model Calls n Model a consists of two operations: addition, followed by multiplication n Addition delay is 1, multiplication delay is 2 n Model a consists of two operations: addition, followed by multiplication n Addition delay is 1, multiplication delay is 2

19 19 Example: Branching Constructs n All operations take 2 time units n Start times: t a =1, t b =3, t c =t d =2 n All operations take 2 time units n Start times: t a =1, t b =3, t c =t d =2

20 20 Register Binding Problem n Given a schedule Lifetime intervals for variables. Lifetime overlaps. n Conflict graph (interval graph). Vertices  variables. Edges  overlaps. Interval graph. Left-edge algorithm. (Polynomial-time). n Find minimum number of registers storing all the variables. n Compatibility graph (comparability graph). n Given a schedule Lifetime intervals for variables. Lifetime overlaps. n Conflict graph (interval graph). Vertices  variables. Edges  overlaps. Interval graph. Left-edge algorithm. (Polynomial-time). n Find minimum number of registers storing all the variables. n Compatibility graph (comparability graph).

21 21 ExampleExample n Six intermediate variables that need to be stored in registers {z1, z2, z3, z4, z5, z6} n Six variables can be stored in two registers n Six intermediate variables that need to be stored in registers {z1, z2, z3, z4, z5, z6} n Six variables can be stored in two registers

22 22 Register Sharing: General Case n Iterative constructs Preserve values across iterations. Circular-arc conflict graph. Coloring is intractable. n Hierarchical graphs General conflict graphs. Coloring is intractable. n Heuristic algorithms. n Iterative constructs Preserve values across iterations. Circular-arc conflict graph. Coloring is intractable. n Hierarchical graphs General conflict graphs. Coloring is intractable. n Heuristic algorithms.

23 23 ExampleExample n 7 intermediate variables, 3 loop variables, 3 loop invariants n 5 registers suffice to store 10 intermediate loop variables n 7 intermediate variables, 3 loop variables, 3 loop invariants n 5 registers suffice to store 10 intermediate loop variables

24 24 Example: Variable-Lifetimes and Circular- Arc Conflict Graph

25 25 Multiport-Memory Binding … n Multi-port memory arrays used to store variables. n Find minimum number of ports to access the required number of variables. n Assuming variables access memory always through the same port Problem reduces to binding variables to ports. Port compatibility/conflict. Similar to resource binding. n Assuming variables can use any port Decision variable x il is TRUE when variable i is accessed at step l. Minimum number of ports n Multi-port memory arrays used to store variables. n Find minimum number of ports to access the required number of variables. n Assuming variables access memory always through the same port Problem reduces to binding variables to ports. Port compatibility/conflict. Similar to resource binding. n Assuming variables can use any port Decision variable x il is TRUE when variable i is accessed at step l. Minimum number of ports

26 26 … Multiport-Memory Binding n Find maximum number of variables to be stored through a fixed number of ports a. Boolean variables {b i, i = 1, 2, …, n var }: Variable i is stored in array. n The maximum number of variables that can be stored in a multiport-memory with a ports is obtained by: n Find maximum number of variables to be stored through a fixed number of ports a. Boolean variables {b i, i = 1, 2, …, n var }: Variable i is stored in array. n The maximum number of variables that can be stored in a multiport-memory with a ports is obtained by:

27 27 ExampleExample n One port a = 1 {b2, b4, b8} non-zero. 3 variables stored: {v2, v4, v8}. n Two ports a = 2 6 variables stored: {v2, v4, v5, v10, v12, v14} n Three ports a = 3 9 variables stored: {v1, v2, v4, v6, v8, v10, v12, v13} n One port a = 1 {b2, b4, b8} non-zero. 3 variables stored: {v2, v4, v8}. n Two ports a = 2 6 variables stored: {v2, v4, v5, v10, v12, v14} n Three ports a = 3 9 variables stored: {v1, v2, v4, v6, v8, v10, v12, v13}

28 28 Bus Sharing and Binding n Busses act as transfer resources that feed data to functional resources. n Find the minimum number of busses to accommodate all data transfers. n Find the maximum number of data transfers for a fixed number of busses. n Similar to memory binding problem. n ILP formulation or heuristic algorithms. n Busses act as transfer resources that feed data to functional resources. n Find the minimum number of busses to accommodate all data transfers. n Find the maximum number of data transfers for a fixed number of busses. n Similar to memory binding problem. n ILP formulation or heuristic algorithms.

29 29 ExampleExample n One bus 3 variables can be transferred. n Two busses All variables can be transferred. n One bus 3 variables can be transferred. n Two busses All variables can be transferred.

30 30 Sharing and Binding for General Circuits n Area and delay influenced by Steering logic, wiring, registers and control circuit. E.g. multiplexers area and propagation delays depend on number of inputs. Wire lengths can be derived from statistical models. n Binding affects the cycle-time It may invalidate a schedule. n Control unit is affected marginally by resource binding. n Area and delay influenced by Steering logic, wiring, registers and control circuit. E.g. multiplexers area and propagation delays depend on number of inputs. Wire lengths can be derived from statistical models. n Binding affects the cycle-time It may invalidate a schedule. n Control unit is affected marginally by resource binding.

31 31 Unconstrained Minimum Area Binding n Area cost function depends on several factors resource count, steering logic and wiring. n In limiting cases, resource sharing may affect adversely circuit area. n Example Circuit with n 1-bit add operations Area of 1-bit adder is area add Area of a MUX is a function of number of inputs area mux = area mux . (i-1), where area mux  is a constant Total area of a binding with a resources is a (area add + area mux )  a (area add - area mux  ) + n. area mux  Area is increasing or decreasing function of a according to relation area add > area mux . n Area cost function depends on several factors resource count, steering logic and wiring. n In limiting cases, resource sharing may affect adversely circuit area. n Example Circuit with n 1-bit add operations Area of 1-bit adder is area add Area of a MUX is a function of number of inputs area mux = area mux . (i-1), where area mux  is a constant Total area of a binding with a resources is a (area add + area mux )  a (area add - area mux  ) + n. area mux  Area is increasing or decreasing function of a according to relation area add > area mux .

32 32 Unconstrained Minimum Area Binding n Edge-weighted compatibility graph Edge weights represent level of desirability of sharing Clique covering n Edge-weighted compatibility graph Edge weights represent level of desirability of sharing Clique covering

33 33 Unconstrained Minimum Area Binding n Tseng’s algorithm considers repeatedly subgraphs induced by vertices with same weight edges. n Graphs with decreasing values of weights considered. n Unweighted clique partitioning of subgraphs. n Example Assume following edges have weight of 2 {v1, v3}, {v1, v6}, {v1, v7}, {v3, v7}, {v6, v7} Other edges have weight 1 Clique {v1, v3, v7} is first identified Clique {v2, v6, v8} is then identified n Tseng’s algorithm considers repeatedly subgraphs induced by vertices with same weight edges. n Graphs with decreasing values of weights considered. n Unweighted clique partitioning of subgraphs. n Example Assume following edges have weight of 2 {v1, v3}, {v1, v6}, {v1, v7}, {v3, v7}, {v6, v7} Other edges have weight 1 Clique {v1, v3, v7} is first identified Clique {v2, v6, v8} is then identified

34 34 Module Selection Problem … n Library of resources More than one resource per type. n Example Adder Ripple-carry adder. Carry look-ahead adder. Multiplier Fully parallel Serial-Parallel Fully serial n Resource modeling Resource subtypes with (area, delay) parameters. n Library of resources More than one resource per type. n Example Adder Ripple-carry adder. Carry look-ahead adder. Multiplier Fully parallel Serial-Parallel Fully serial n Resource modeling Resource subtypes with (area, delay) parameters.

35 35 … Module Selection Problem n ILP formulation Decision variables b jr Select resource sub-type. Determine (area, delay). n Heuristic algorithms Determine minimum latency with fastest resource subtypes. Recover area by using slower resources on non- critical paths. n ILP formulation Decision variables b jr Select resource sub-type. Determine (area, delay). n Heuristic algorithms Determine minimum latency with fastest resource subtypes. Recover area by using slower resources on non- critical paths.

36 36 ExampleExample n Multipliers with (Area, delay) = (5,1) and (2,2) n ALU with (Area, delay) = (1,1) n Latency bound of 5. n Area cost is 7+2=9 n Multipliers with (Area, delay) = (5,1) and (2,2) n ALU with (Area, delay) = (1,1) n Latency bound of 5. n Area cost is 7+2=9

37 37 ExampleExample n Latency bound of 4. Fast multipliers for {v1, v2, v3}. Slower multipliers can be used elsewhere. Less sharing. Assume v8 uses a slow multiplier: Area=12+2=14 n Minimum-area design uses fast multipliers only. Area=10+2=12 n Latency bound of 4. Fast multipliers for {v1, v2, v3}. Slower multipliers can be used elsewhere. Less sharing. Assume v8 uses a slow multiplier: Area=12+2=14 n Minimum-area design uses fast multipliers only. Area=10+2=12


Download ppt "COE 561 Digital System Design & Synthesis Resource Sharing and Binding Dr. Aiman H. El-Maleh Computer Engineering Department King Fahd University of Petroleum."

Similar presentations


Ads by Google