Skip to content

Commit 3163acd

Browse files
committed
Fixes observed nondeterminism in synthesis
The dff flag passed to abc appears to cause non-determinism in the generated netlist.
1 parent 216554a commit 3163acd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synthesis/synth.tcl

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ set liberty $::env(LIBERTY)
3333
dfflibmap -liberty $liberty
3434

3535
if { [info exists ::env(CLOCK_PERIOD) ] } {
36-
abc -liberty $liberty -dff -g aig -D $::env(CLOCK_PERIOD)
36+
abc -liberty $liberty -g aig -D $::env(CLOCK_PERIOD)
3737
} else {
38-
abc -liberty $liberty -dff -g aig
38+
abc -liberty $liberty -g aig
3939
}
4040

4141
# write synthesized design

0 commit comments

Comments
 (0)