Skip to content

Commit

Permalink
Fixes observed nondeterminism in synthesis
Browse files Browse the repository at this point in the history
The dff flag passed to abc appears to cause non-determinism in the generated netlist.
  • Loading branch information
QuantamHD committed Feb 11, 2022
1 parent 216554a commit 3163acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synthesis/synth.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ set liberty $::env(LIBERTY)
dfflibmap -liberty $liberty

if { [info exists ::env(CLOCK_PERIOD) ] } {
abc -liberty $liberty -dff -g aig -D $::env(CLOCK_PERIOD)
abc -liberty $liberty -g aig -D $::env(CLOCK_PERIOD)
} else {
abc -liberty $liberty -dff -g aig
abc -liberty $liberty -g aig
}

# write synthesized design
Expand Down

0 comments on commit 3163acd

Please sign in to comment.