2D Project on (1) 32-bit adder optimization and (2) translating netlist to CNF
Part 1: 32-bit adder optimization
optimized1.jsim contains the optimized 32-bit adder. It is optimized via:
- Carry-select and carry-lookahead adder architecture
- Using inverting logic to increase speed
- Use buffers to reduce load-dependent delays
- Minimize delays along critical paths
Timing: 2.23ns
Part 2: Translating netlist to CNF
This is the general flow:
- Write a python script to generate boolean expression in BC file format
$ python optimized1_bcgen.py - Convert the BC file into CNF file using bc2cnf in BCpackage-0.40
$ ./BCpackage-0.40/bc2cnf ./optimized1.bc ./optimized1.cnf - Run findsolssat to solve for unsatisfiability
$ java -jar ./findsolssat/findsolssat.jar ./optimized1.cnf
- Java
- Jsim compiler
- Tan Yi Long - Initial work - Yilong94
This project is licensed under the MIT License - see the LICENSE.md file for details