diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 08:46:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 08:46:24 -0800 |
commit | d6242be8021d126d7d0e6a96fc0140985fd4506f (patch) | |
tree | a976bb5ae65507f3ee30058a882a85a6f3075202 /techlibs/achronix/synth_achronix.cc | |
parent | a8f66888888e42b2cca362d208cdc780417ef33e (diff) | |
parent | 79448f9be035c88589b4e9c0de6b2bdc5acbd4df (diff) | |
download | yosys-d6242be8021d126d7d0e6a96fc0140985fd4506f.tar.gz yosys-d6242be8021d126d7d0e6a96fc0140985fd4506f.tar.bz2 yosys-d6242be8021d126d7d0e6a96fc0140985fd4506f.zip |
Merge pull request #1601 from YosysHQ/eddie/synth_retime
"abc -dff" to no longer retime by default
Diffstat (limited to 'techlibs/achronix/synth_achronix.cc')
-rwxr-xr-x | techlibs/achronix/synth_achronix.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/achronix/synth_achronix.cc b/techlibs/achronix/synth_achronix.cc index 626860d9c..1dc6bdb2f 100755 --- a/techlibs/achronix/synth_achronix.cc +++ b/techlibs/achronix/synth_achronix.cc @@ -52,7 +52,7 @@ struct SynthAchronixPass : public ScriptPass { log(" do not flatten design before synthesis\n"); log("\n"); log(" -retime\n"); - log(" run 'abc' with -dff option\n"); + log(" run 'abc' with '-dff -D 1' options\n"); log("\n"); log("\n"); log("The following commands are executed by this synthesis command:\n"); @@ -152,12 +152,12 @@ struct SynthAchronixPass : public ScriptPass { run("clean -purge"); run("setundef -undriven -zero"); if (retime || help_mode) - run("abc -markgroups -dff", "(only if -retime)"); + run("abc -markgroups -dff -D 1", "(only if -retime)"); } if (check_label("map_luts")) { - run("abc -lut 4" + string(retime ? " -dff" : "")); + run("abc -lut 4" + string(retime ? " -dff -D 1" : "")); run("clean"); } |