1 / 8

Hardware Acceleration of A Boolean Satisfiability Solver

Xander Chin Braiden Brousseau Bill Teng. Hardware Acceleration of A Boolean Satisfiability Solver. Motivation. SAT Solvers are core computational engine for major applications EDA: testing and verification, logic synthesis, technology mapping, …

jasia
Télécharger la présentation

Hardware Acceleration of A Boolean Satisfiability Solver

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Xander Chin BraidenBrousseau Bill Teng Hardware Acceleration of A Boolean SatisfiabilitySolver

  2. Motivation • SAT Solvers are core computational engine for major applications • EDA: testing and verification, logic synthesis, technology mapping, … • AI: knowledge base deduction, automatic theorem proving, … • Software SAT Solvers has improved a lot in the last ten years, but performance is saturating • Further speed it up through hardware acceleration!

  3. SAT in a Nutshell (a very tiny nutshell) • Given a boolean formula, find variable assignments such that the formula is true or prove that no satisfying assignment exists • Conjunctive Normal Form: e.g. φ(a,b,c) = (a+b)(a’+b+c) literal clause • NP – Complete • For n variables, there are 2n possible truth assignments to be checked

  4. Algorithmic Pruning 0 1 X1 X2 X3 X4 S U S S U U U U U U U S U U S S Resolve Conflict !

  5. Some Solver Techniques • Propagation • Literal watches – literal to clause mapping • Decision heuristics – which variable should be assigned next? • Pruning • Conflict analysis – which assignments will never work? • Non-chronological backtracking – undoing failed decisions quickly

  6. Flexibility of Software • Software can easily implement complex pruning techniques that would be extremely difficult in hardware • New pruning techniques are demonstrating only incremental gains • Some of the complex techniques must be omitted in hardware • We must still implement the core techniques

  7. Hardware Architecture • Parts of SAT are memory-bound • Random access data patterns to clauses • Hardware acceleration by streaming burst accesses to memory to maximize bandwidth and custom intermediate caching Pipeline Direction DDR Memory Bound Logic Memory Bound Logic Memory Bound Logic Custom Cache Custom Cache Custom Cache microBlaze Processor

  8. Conclusions • Trade-off between • High-level complex algorithms in software • Low-level algorithms in hardware • Critical to performance! • Novel new software algorithms could potentially outperform our hardware system • System flexibility with soft-processor • Core techniques not likely going away any time soon

More Related