Logic optimization
It has been suggested that this article or section be merged with circuit minimization. (Discuss) Proposed since April 2011. |
Logic optimization, a part of logic synthesis, is the process of finding an equivalent representation of the specified logic circuit under one or more specified constraints. Generally the circuit is constrained to minimum chip area meeting a prespecified delay.
Introduction
With the advent of logic synthesis, one of the biggest challenges faced by the EDA industry was to find the best netlist representation of the given design description. While two-level logic optimization had long existed in the form of the Quine–McCluskey algorithm, later followed by the Espresso heuristic logic minimizer, the rapidly improving chip densities, and the wide adoption of HDLs for circuit description, formalized the logic optimization domain as it exists today.
Today, logic optimization is divided into various categories based on two criteria:
Based on circuit representation
- Two-level logic optimization
- Multi-level logic optimization
Based on circuit characteristics
- Sequential logic optimization
- Combinational logic optimization
While a two-level circuit representation of circuits strictly refers to the flattened view of the circuit in terms of SOPs (sum-of-products) — which is more applicable to a PLA implementation of the design[clarification needed] — a multi-level representation is a more generic view of the circuit in terms of arbitrarily connected SOPs, POSs (product-of-sums), factored form etc. Logic optimization algorithms generally work either on the structural (SOPs, factored form) or functional (BDDs, ADDs) representation of the circuit.[clarification needed]
Two-level versus multi-level representations
If we have two functions F1 and F2:
- <math>F_1 = AB + AC + AD,\,</math>
- <math>F_2 = A'B + A'C + A'E.\,</math>
The above 2-level representation takes six product terms and 24 transistors in CMOS Rep.[why?]
A functionally equivalent representation in multilevel can be:
- P = B + C.
- F1 = AP + AD.
- F2 = A'P + A'E.
While the number of levels here is 3, the total number of product terms and literals reduce[quantify] because of the sharing of the term B + C.
Similarly, we distinguish between sequential and combinational circuits, whose behavior can be described in terms of finite-state machine state tables/diagrams or by Boolean functions and relations respectively.[clarification needed]
See also
References
- Synthesis and Optimization of Digital Circuits, by Giovanni De Micheli, ISBN 0-07-016333-2.
- Pages with broken file links
- Articles to be merged from April 2011
- Articles with invalid date parameter in template
- All articles to be merged
- Wikipedia articles needing clarification from February 2010
- All articles with unsourced statements
- Articles with unsourced statements from February 2010
- Electronic engineering
- Electronic design
- Digital electronics
- Electronic design automation
- Electronics optimization
- 2Fix