in logic synthesis and
play

in Logic Synthesis and their Industrial Contributions Masahiro - PowerPoint PPT Presentation

Basic and Advanced Researches in Logic Synthesis and their Industrial Contributions Masahiro Fujita VLSI Design and Education Center University of Tokyo 2 Outline Logic synthesis flow Automatic process except for complication


  1. Basic and Advanced Researches in Logic Synthesis and their Industrial Contributions Masahiro Fujita VLSI Design and Education Center University of Tokyo

  2. 2 Outline • Logic synthesis flow – Automatic process except for complication arithmetic circuits – Two-level logic minimization • Unate recursive paradigm by case splitting – Multi-level logic optimization • How to deal with don’t cares coming from the topology – Synthesis from FSM • Various sequential optimization techniques • Partial logic synthesis – Engineering change order and logic debugging • Discussing hardware design flow – Importance on logic synthesis • Application of partial logic synthesis to automatic synthesis of parallel/distributed computing – Solved by SAT solvers with implicit and exhaustive search – Use human induction to generalized the solutions

  3. 3 Logic synthesis flow Word level: HDL description FSM, Sequential z[33] = x[32] PLUS y[32] Bit level: Logic expressions Combinatoinal + FF z[1] = x[1] EOR y[1] Works well mostly Two-level minimization For multipliers, this does not work Division Multi-level minimization Technology mapping Use only available gates/cells Final optimization Can be rule-based: a + ab => a + b

  4. 4 Logic synthesis flow HDL description z[33] = x[32] PLUS y[32] Logic expressions z[1] = x[1] EOR y[1] Two-level minimization • Works well mostly Alberto covers all of these! • For multipliers, Division this does not work Multi-level minimization Technology mapping Use only available gates/cells Final optimization Can be rule-based

  5. 5 Two level minimization • Human can do with Karnaugh map up to 4 variables • Espresso2 algorithm – Based on iteration of redundancy removal, reduce, and expand cd cd cd cd cd cd cd cd cd cd cd cd ab ab ab ab 1 1 ab 1 1 ab 1 1 1 1 1 ab 1 ab 1 ab 1 1 1 1 ab 1 ab 1 ab 1 abc + abd + abc abc + acd + bcd + abc abc + abcd + abcd + abc – How to implement these operations • Unate functions are easy to analyze • Based on unate recursive paradigm by case splitting – Logic expressions with more than 1,000 variables can be minimized

  6. 6 Multi level logic minimization • Repetition of local transformations – Global transformation is too computation intensive • How to check if each transformation is valid – Do not use don’t care: Not good in quality – Use local don’t care: Good and efficient mostly – Use global don’t care: Too much computation a a f b f c y y x b c b b c c g g b b c c • Not work well for complicated arithmetic circuits – Multipliers synthesized from truth tables can be over 100 times larger than manual designs!

  7. Apply logic minimization methods as much as possible c 4 b 1 d 5 o1 e 2 c 6 8 9 7 d o2 a 3 b f (a) c 4 b 1 d 5 o1 e 2 c 8 9 o2 a 3 b f (b)

  8. Rule based optimization Target circuit Example of optimization Rules

  9. 9 Synthesis of combinational multipliers • Area minimum implementation – Array multipliers with ripple carry adders – For 8bit by 8bit multipliers, 430 gates implementation – Exists in design libraries Logic expressions • Synthesis from truth table – 65,536 rows in truth table Two-level minimization – Generated one has 40,000 gates! – No redundancy! Division – No multi-level minimization works well – Still a research topic! Multi-level minimization – Cannot find good “intermediate logic” automatically – Practically maybe OK (use the one in the library)

  10. 10 Real synthesis Word level: HDL description FSM, Sequential z[33] = x[32] PLUS y[32] Bit level: Logic expressions Combinatoinal + FF z[1] = x[1] EOR y[1] Two-level minimization Division Multi-level minimization Technology mapping Use only available gates/cells Final optimization Can be rule-based HDL may change after this (ECO)

  11. 11 Partial logic synthesis (my research) • Find out appropriate circuits for the missing portions – Entire circuit must become logically equivalent to the specification which is given separately Missing portion can be represented as Look Up Table(LUT) Logical specification Engineering Change Order: After implementation, specification changes Logic debugging

  12. 12 LUT (Look up Table) • Any logic function with m-inputs – MUX with m-control inputs – 2 m variables for truth table values • p 0 , p 1 , …, p represent values 2 m -1 p 0 of truth tables p 1 • By changing those values, any logic function with m-input can out … MUX be represented If i 0 i 1… i = 00…0 then out = p 0 AND 2 m -1 p 2 m -2 If i 0 i 1… i = 10…0 then out = p 1 AND p 2 m -1 2 m -1 … … If i 0 i 1… i = 11…1 then out = p 2 m -1 2 m -1 i 0 i 1 I m-1 • Only one of p 0 , p 1 , …, p is 2 m -1 connected to out

  13. 13 Problem formulation • Partial synthesis problems can be formulated as: “Under appropriate programs for LUTs (existentially quantified), circuit behaves correctly for all possible input values (universally quantified)” ∃𝑌∀𝑍. 𝑔 𝑌, 𝑍 = 𝑇𝑄𝐹𝐷(𝑍) 𝑌 : configurations of LUTs, 𝑍 : inputs value of the circuit 𝑔 : output value of target circuit, 𝑇𝑄𝐹𝐷 : output value of specification

  14. 14 A buggy design for a 1-bit full adder a s b • Specification c n1 n3 c n2 o a s b BG c n1 • An example buggy design n3 c n2 o a s b n1 LUT c • Buggy design with LUT n3 c n2 o

  15. 15 Miter generation • Specification in SOP ∃X0, X1, X2, X3. ∀A, B, C. • Target in netlist with LUT Spec A, B, C = Circuit(X0, X1, X2, X3, A, B, C) • If out is always 0 (UNSAT), the target is a correct one • If SAT, there is a counter example generated by SAT solver Truth table for LUT abc sco A B D 001 10 a 010 10 0 0 X0 100 10 b Specification 0 1 X1 111 10 -11 01 c 1 0 X2 1-1 01 11- 01 1 1 X3 a b Always 0? LUT out c

  16. 16 Step 1 • In the beginning, we do not know how to program LUT • Just need a counter example, and so solve the following SAT prob. ∃X0, X1, X2, X3. ∃A, B, C. Spec A, B, C = Circuit(X0, X1, X2, X3, A, B, C) Instead of ∃X0, X1, X2, X3. ∀A, B, C. Spec A, B, C = Circuit(X0, X1, X2, X3, A, B, C) • Then get a counter example: (A,B,C)=(0,1,1) abc sco 001 10 a 010 10 100 10 b Specification 111 10 -11 01 c 1-1 01 11- 01 a b Always 0? LUT out c

  17. 17 Step 2 • Get the function for LUT (X1,X2,X3,X4) under which out is 0 when (A,B,C)=(0,1,1) – X3 must be 0 • SAT solver returns a solution example – (X0,X1,X2,X3)=(1,0,0,0) abc sco 0 0 001 10 a 010 10 1 100 10 b Specification 111 10 1 1 -11 01 c 1-1 01 11- 01 X3 0 a X3 1 b X3 1 LUT out c X3=0 0 1 1

  18. 18 Step 3 • Program the LUT with (X1,X2,X3,X4)=(1,0,0,0) • Create a miter and check the equivalence – If UNSAT, current (X1,X2,X3,X4) is a correct function for LUT • Unfortunately SAT, and returns a counter example – (A,B,C)=(0,0,1) abc sco 0 1 001 10 a 010 10 0 100 10 b Specification 111 10 1 0 -11 01 c 1-1 01 11- 01 1 0 a 0 0 b 0 1 1000 out c 1 not 0 0 0 0 0

  19. 19 Step 4 • When the inputs (A,B,C)=(0,1,1) and (A,B,C)=(0,0,1), out must be 0 – X1 must be 1 and X3 must be 0 • If SAT returns a solution: (X0,X1,X2,X3)=(0,1,1,0), finish – If SAT returns other solutions, just continue the steps abc sco 0 1 001 10 a 010 10 0 100 10 b Specification 111 10 1 0 -11 01 c 1-1 01 11- 01 X1 0 a X1 0 b X1 1 LUT out c 0 X1=0 0 0 0

  20. 20 How large circuits can be processed? Experiment • Replaced 10, 20, 50 and 100 original 2-input gates picked up randomly with • Used the original circuits as specification • Target circuit – ISCAS 85/89 benchmark – SAT solver : Pico SAT Replace the original gates with LUTs

  21. 21 Experimental results (1) • Number of iterations is surprisingly small • Number of iterations increases more rapidly with the increase of number of LUTs than size of circuits Average iterations to solve by our proposed method 140 Average number of iterations 120 100 LUT10 80 LUT20 60 LUT50 LUT100 40 20 0 0 500 1000 1500 2000 2500 3000 The number of gates

  22. 22 Experimental results (2) • For circuits with 2,000 gates and 100 LUTs it took several minutes to finish Average time to solve by our proposed method 250 Average time (sec) 200 150 LUT 10 LUT 20 100 LUT 50 50 LUT 100 0 0 500 1000 1500 2000 2500 3000 Number of original gate

  23. 23 Hardware design flow Like program (software) C based design High level synthesis Clock by clock Register Transfer Level behavior (RTL) design Logic synthesis Net list Logic circuit Placement and routing Full details of Mask pattern design

  24. 24 Hardware design flow Like program (software) C based design High level synthesis Clock by clock Register Transfer Level behavior (RTL) design Logic synthesis Net list Logic circuit Placement and routing Automated since 1980’s Full details of Mask pattern design

  25. 25 Hardware design flow Like program (software) C based design High level synthesis Clock by clock Register Transfer Level behavior (RTL) design Automated since 1990’s Logic synthesis Net list Logic circuit Placement and routing Automated since 1980’s Full details of Mask pattern design

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend